/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Theme variables */
:root {
    --primary: #e58096;
    --secondary: #f7e6eb;
    --dark: #333;
    --light: #ffffff;

    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Mulish', sans-serif;

    --page-bg: #f7f5f2;
    --surface: #ffffff;
    --surface-soft: #f1ede8;
    --text: #1d1f2a;
    --muted: #6e6970;
    --accent: #d97892;
    --accent-soft: #f6e4ea;
    --footer-bg: #020820;
    --footer-muted: #adb5d8;
    --border: #e6e0da;
    --shadow-soft: 0 18px 40px rgba(12, 15, 33, 0.08);
    --container: min(1180px, 92vw);
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    color: var(--dark);
    background: var(--light);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* =================
    Navbar
================== */

.site-header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.transparent {
    background: transparent;
}

.site-header.scrolled {
    position: fixed;
    background: var(--light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);

}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.nav-links a {
    margin-left: 0;
    text-decoration: none;
    color: #fff;
    /* default on hero */
    font-size: 1.25rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: transparent;
    color: #fff;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-direction: column;
    cursor: pointer;
    padding: 0;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: currentColor;
    display: block;
    transition: transform 0.25s ease, opacity 0.2s ease;
}

/* Change link color after scroll */
.site-header.scrolled .nav-links a {
    color: var(--dark);
}

.site-header.scrolled .nav-links a:hover {
    color: var(--primary);
}

.site-header.scrolled .logo {
    color: #333;
}

.site-header.scrolled .nav-toggle {
    color: var(--dark);
    border-color: rgba(0, 0, 0, 0.18);
}

.site-header.is-open .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.site-header.is-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

.site-header.is-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.logo {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: bolder;
    color: #fff;
}

.nav a {
    margin-left: 0;
    text-decoration: none;
    color: #fff;
    font-family: var(--font-heading);
}

.nav a:hover {
    color: var(--primary);
}

.nav-links a.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
}

.site-header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.1rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }
}

@media(max-width:768px) {
    .nav {
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.8rem;
        padding: 0.6rem 0;
    }

    .nav-links {
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        padding: 0.4rem 0 0.9rem;
    }

    .nav-links a {
        font-size: 1.05rem;
    }

    .nav-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .site-header.is-open .nav-links {
        display: flex;
    }

    .site-header.is-open {
        background: var(--light);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    }

    .site-header.is-open .nav-links a {
        color: var(--dark);
    }

    .site-header.is-open .nav-toggle {
        color: var(--dark);
        border-color: rgba(0, 0, 0, 0.18);
    }

    .hero h1 {
        font-size: 2rem;
    }
}


/* ===== FOOTER ===== */

.site-footer {
  background: #111;
  color: #ccc;
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.footer-brand img {
  height: 7rem;
  margin-bottom: 0rem;
}

.footer-brand p {
  font-size: 0.85rem;
  color: #aaa;
  max-width: 260px;
  line-height: 1.5;
}

.footer-col h4 {
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: #ccc;
  text-decoration: none;
  margin-bottom: 0.6rem;
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-col p {
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
  color: #ccc;
}

.footer-bottom {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: #777;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand p {
    margin: 0 auto;
  }
}

