/* =========================
   FONT IMPORTS
========================= */
@import url("https://fonts.googleapis.com/css2?family=Rufina:wght@400;700&family=Mona+Sans:wght@300;400;500;600;700&display=swap");

/* =========================
   ROOT VARIABLES
========================= */
:root {
  --primary-bg: #521807;
  --accent-bg: #6a1f0f;
  --btn-bg: #c24a1a;
  --text-light: #ffffff;
  --text-dark: #1d0f02;
}

/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Mona Sans", system-ui, sans-serif;
  background: #fff;
  color: var(--text-dark);
  overflow-x: hidden;
}

/* =========================
   NAVBAR
========================= */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--primary-bg);
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 700;
  font-size: 22px;
  color: #fff;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}

/* =========================
   HERO SECTION
========================= */
.hero {
  position: relative;
  background-color: var(--primary-bg);
  min-height: 100vh;
  padding-top: 120px;
  overflow: hidden;
}

.hero-inner {
  max-width: 1200px;
  margin: auto;
  padding: 40px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

/* =========================
   HERO TEXT
========================= */
.hero h1 {
  font-family: "Rufina", serif;
  font-weight: 700;
  font-size: clamp(36px, 6vw, 85px);
  line-height: 1em;
  color: #fff;
}

.hero h1 span {
  display: block;
  border-bottom: 4px solid #f3c76a;
  width: fit-content;
  padding-bottom: 8px;
}

.hero p {
  margin-top: 20px;
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  max-width: 480px;
}

/* =========================
   CTA BUTTON
========================= */
.hero-btn {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--btn-bg);
  color: #fff;
  padding: 14px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

/* =========================
   BACKGROUND CURVE IMAGE
========================= */
.hero-bg-img {
  position: absolute;
  right: -120px;
  bottom: -40px;
  width: 55%;
  height: auto;
  z-index: 0;
}

.hero-inner * {
  position: relative;
  z-index: 2;
}

/* =========================
   RESPONSIVE NAVBAR
========================= */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 64px;
    right: 0;
    background: var(--primary-bg);
    width: 100%;
    flex-direction: column;
    padding: 20px;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }
}

/* =========================
   RESPONSIVE HERO
========================= */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero h1 span {
    margin: auto;
  }

  .hero-bg-img {
    position: relative;
    width: 100%;
    right: 0;
    bottom: 0;
    margin-top: 30px;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 480px) {
  .hero {
    padding-top: 100px;
  }

  .hero p {
    font-size: 14px;
  }

  .hero-btn {
    justify-content: center;
  }
}
