/*
Theme Name: Marzy
Theme URI: https://marzy.com/
Author: ietsnut
Author URI: https://ietsnut.com/
Description: Marzy
Version: 1.0
Text Domain: marzy
*/

@font-face {
  font-family: 'Alliance No.1';
  src: url('AllianceNo1-Medium.woff2') format('woff2'),
       url('AllianceNo1-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Alliance No.2';
  src: url('AllianceNo2-Regular.woff2') format('woff2'),
       url('AllianceNo2-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Reset & theme tokens */
* {
 box-sizing: border-box; margin: 0; padding: 0; 
}

:root {
  --bg: #FBF5E7;
  --fg: #202020;
  --brand: #F55D46;
  --radius: 20px;
}

::selection {
  color: var(--bg);
  background-color: var(--brand);
}

*, html {
    scroll-behavior: smooth !important;
    scroll-padding-top: 50px !important;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Alliance No.2', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

a {
  word-break: break-word;
  color: var(--brand);
}

.symbol {
  width: 10rem;
  height: auto;
}

.container {
  max-width: 1200px;
  margin-inline: auto;
    display: grid;
  padding: clamp(1.5rem, 2.5vw, 2.5rem);
  grid-template-rows: auto 1fr auto;
  gap: clamp(0.75rem, 1.2vw, 1.25rem);
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo { height: clamp(32px, 6vh, 60px); max-width: 50vw; display: block; }
.logo img { height: 100%; width: auto; display: block; }

nav ul { list-style: none; display: flex; gap: clamp(1rem, 2vw, 2rem); flex-wrap: wrap; }
nav a { color: var(--fg); text-decoration: none; transition: color .25s ease; }
nav a:hover { color: var(--brand); }

h1 {
  font-family: 'Alliance No.1', sans-serif;
  font-weight: 500;
  line-height: 1.15;
  font-size: clamp(2rem, 5vw, 3.25rem);
  margin-bottom: clamp(0.9rem, 2.5vh, 1.8rem);
}

.subtitle {
  opacity: .85;
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  line-height: 1.5;
  max-width: 52ch;
  margin-bottom: clamp(1rem, 2.2vh, 1.5rem);
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-block: clamp(0.5rem, 1.2vh, 1rem);
}

.social-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  padding-bottom: 20px;
}

.social-links a {
  color: var(--fg);
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-links a:hover {
  opacity: 1;
  color: var(--brand);
}

.social-links img {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.footer-links a {
  color: var(--fg);
  text-decoration: none;
  font-size: 0.9rem;
  opacity: .75;
  transition: opacity .25s ease;
}

.footer-links img:hover { fill: var(--fg); }

@media (max-width: 768px) {
  nav ul { gap: 1rem; }
}

main { padding-block: clamp(1rem, 2vh, 2rem); }