/* ============================================================
   GOOGLE FONTS
============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');


/* ============================================================
   RESET + BASE
============================================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden !important;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif !important;
  background: radial-gradient(circle at top, #141b35 0%, #050816 55%);
  color: var(--text-main);
  line-height: 1.6;
}


/* ============================================================
   VARIABLES
============================================================ */
:root {
  --bg-dark: #050816;
  --bg-section: #0b1020;

  --accent: #f0b76b;
  --accent-soft: rgba(240, 183, 107, 0.14);

  --text-main: #f7f7f7;
  --text-muted: #a7afc7;

  --border-soft: rgba(255, 255, 255, 0.08);
  --shadow-soft: 0 18px 45px rgba(0,0,0,0.55);

  --nav-height: 72px;
}


/* ============================================================
   TYPOGRAPHY
============================================================ */
h1, h2, h3, h4 {
  font-family: "Playfair Display", serif !important;
  font-weight: 600;
}

.brand-name {
  font-family: "Playfair Display", serif !important;
}

p, li, a, span, small {
  font-family: "Poppins", sans-serif;
}


/* ============================================================
   CONTAINER
============================================================ */
.container {
  width: min(1120px, 92vw);
  margin: auto;
}


/* ============================================================
   HEADER
============================================================ */
header {
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
  background: rgba(5, 8, 22, 0.55);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: center;
}

.nav {
  width: min(1200px, 94vw);
  height: var(--nav-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 16px;
}


/* ============================================================
   BRAND
============================================================ */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.brand-logo img {
  height: 42px;
}

.brand-name {
  font-size: 20px;
  font-weight: 600;
  color: white;
  line-height: 1.05;
}

.brand-sub {
  font-size: 10px;
  letter-spacing: 2px;
  opacity: 0.75;
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}


/* ============================================================
   NAV LINKS (DESKTOP)
============================================================ */
.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  padding-bottom: 3px;
  transition: 0.25s ease;
}

.nav-links a:hover {
  color: #fff;
}


/* ============================================================
   DESKTOP CTA
============================================================ */
.nav-cta {
  display: flex;
  gap: 14px;
}

.nav-cta .btn-ghost {
  border: 1px solid rgba(255,255,255,0.25);
  padding: 10px 20px;
  border-radius: 50px;
  color: var(--text-muted);
  font-size: 0.9rem;
}


/* ============================================================
   MOBILE MENU TOGGLE
============================================================ */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
}


/* ============================================================
   BUTTONS
============================================================ */
.btn {
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 0.9rem;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: radial-gradient(circle at 10% 20%, #ffe6c0 0, #f0b76b 35%, #b9782f 100%);
  color: #1c1408;
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--text-muted);
}


/* ============================================================
   HERO
============================================================ */
.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  margin-bottom: 14px;
}

.hero-highlight {
  background: linear-gradient(90deg, #ffe5ba, #f0b76b, #ffdf9c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Fix CTA buttons overflowing horizontally */
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
  justify-content: flex-start;
}

.hero-cta .btn {
  flex: 1 1 auto;
  text-align: center;
  min-width: 0;
}


/* ============================================================
   FOOTER
============================================================ */
.disclaimer {
  background: #050816;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 32px 0 22px;
  text-align: center;
}

.footer-bottom {
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}


/* ============================================================
   MOBILE RESPONSIVE FIXES
============================================================ */
@media (max-width: 1024px) {

  :root {
    --nav-height: 58px;
  }

  .brand-logo img {
    height: 32px;
  }

  .brand-name {
    font-size: 16px;
  }

  .brand-sub {
    font-size: 8px;
    margin-top: 3px;
    letter-spacing: 1px;
  }

  .nav-links,
  .nav-cta {
    display: none !important;
  }

  .nav-toggle {
    display: flex !important;
  }

  /* Prevent any content from overflowing */
  .hero-grid,
  .hero-cta,
  .container {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  /* Reduce CTA button size to always fit horizontally */
  .hero-cta .btn {
    padding: 10px 14px !important;
    font-size: 0.82rem !important;
  }
}

/* EVEN SMALLER DEVICES */
@media (max-width: 380px) {
  .hero-cta {
    gap: 8px;
  }

  .hero-cta .btn {
    padding: 8px 10px !important;
    font-size: 0.78rem !important;
  }

  .brand-name {
    font-size: 15px !important;
  }

  .brand-sub {
    font-size: 7px !important;
  }
}




/* ============================================================
   MOBILE SAFE MARGINS — PREMIUM LOOK WITHOUT BREAKING HAMBURGER
============================================================ */

@media (max-width: 768px) {

  /* Keep full-width behaviour for header and mobile menu */
  header,
  .nav,
  .mobile-menu,
  .mobile-nav-links {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Apply premium safe margins ONLY to real page content */
  main,
  section:not(.mobile-menu),
  .hero,
  .container:not(.nav):not(.mobile-menu):not(.mobile-nav-links) {
    padding-left: 6px !important;
    padding-right: 6px !important;
  }

  /* Make sure containers never overflow */
  .container {
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  /* Never overflow media */
  img, video, svg {
    max-width: 100%;
    height: auto;
  }
}


/* ============================================================
   MOBILE HEADER SAFE PADDING (BRAND + HAMBURGER INSIDE)
============================================================ */
@media (max-width: 768px) {

  header .nav {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  /* Ensure logo never touches the edge */
  .brand-logo img {
    margin-left: 4px !important;
  }

  /* Ensure hamburger stays inside comfortably */
  .nav-toggle {
    margin-right: 4px !important;
  }
}
