/* =========================================================
   FONT FACES — Local Fonts
   ========================================================= */
@font-face {
  font-family: "Bellisya";
  src: url("../fonts/Bellisya-p79nv.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Skia";
  src: url("../fonts/ufonts.com_skia.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

/* =========================================================
   DESIGN TOKENS
   ========================================================= */
:root {
  --brand-primary: #9E1F63;
  --brand-secondary: #AD824E;
  --brand-highlight: #E6C761;
  --brand-highlightM: #C14C89;
  --gold-deep: #8f6a3f;
  --page-bg: #0b1220;
  --surface: #11182A;
  --text: #ECECF2;
  --muted: #f3f3f3;
  --container: min(1200px, 92vw);
  --header-h: 76px;
}

/* =========================================================
   BASE STYLES
   ========================================================= */
* {
    max-width: 100%;
    box-sizing: border-box;
}

html, body {
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background: var(--page-bg);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* =========================================================
   BUBBLES
   ========================================================= */
#bubbles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}
.bubble {
  fill: #E6C761;
  opacity: 0.35;
  filter: brightness(0.85);
}

/* =========================================================
   WAVES
   ========================================================= */
.wave-gold, .wave-magenta {
  position: absolute;
  width: 100%;
  left: 0;
  line-height: 0;
  overflow: hidden;
  z-index: 5;
}
.wave-gold {
  top: -1px;
}
.wave-magenta {
  bottom: -1px;
  transform: scaleY(-1);
}

.wave-gold svg, .wave-magenta svg {
  display: block;
  width: 101%;
  height: 165px;
  background: transparent;
  pointer-events: none;
}
.wave-gold svg path { fill: #c09c66; }
.wave-magenta svg path { fill: #9e1f63; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 95px;
  height: 95px;
  min-height: 70px;
  background: var(--brand-secondary);
  color: black;
  font-weight: 700;
  padding: 0;
  border-radius: 50%;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease;
  z-index: 2;
}
.btn-gold:hover {
  background: #c9985f;
  transform: scale(1.04);
}
.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 85px;
  height: 85px;
  min-height: 70px;
  margin-top: 1.4rem;
  margin-bottom: 0.5rem;
  padding: 0;
  border: 2px solid #9e1f63;
  border-radius: 50%;
  color: #9e1f63;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  transition: all 0.3s ease;
}
.btn-outline-gold:hover {
  background-color: #9e1f63;
  color: #fff;
  transform: translateY(-2px);
}
.btn-magenta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 95px;
  height: 95px;
  background: var(--brand-primary);
  color: var(--muted);
  font-weight: 700;
  padding: 0;
  border-radius: 50%;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease;
  z-index: 2;
}
.btn-magenta:hover {
  background: #c14c89;
  transform: scale(1.04);
}

/* =========================================================
   EXTRAS
   ========================================================= */
.fancy-letter {
  font-family: "Bellisya", cursive;
  font-weight: 700;
  color: inherit;
  font-size: 1.05em;
  vertical-align: baseline;
  letter-spacing: -0.03em;
}

.fullLogo img {
  margin-top: 1.25rem;
  width: 240px;
  opacity: 0.8;
}

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero {
  position: relative;
  background-image: var(--hero-src);
  background-size: cover;
  background-position: center 45%;
  min-height: min(600px, 40vh);
  overflow: visible;
  padding-bottom: 140px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}
.hero-content {
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  padding-top: calc(var(--header-h) + 12vh);
  isolation: isolate;
}
.hero-text {
  position: relative;
  text-align: center;
  z-index: 2;
  padding: 0rem 1rem;
  transform: translateY(-10%);
}
.hero-text h2 {
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  margin-bottom: 4rem;
  transform: translateY(1rem);
  font-family: "Bellisya", cursive;
  color: var(--brand-secondary);
  font-weight: 400;
}
.hero-text h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.05;
  margin: -2.5rem 0;
  display: inline-block;
  color: var(--brand-primary);
}
.hero-text h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  margin: 2rem 2rem;
  font-family: "Bellisya", cursive;
  color: var(--brand-secondary);
  line-height: 1.4;
}
.hero-text p {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.3;
  margin-top: -2rem;
  font-weight: 700;
  color: var(--brand-primary);
  justify-self: center;
}

/* =========================================================
   HEADER + NAVIGATION
   ========================================================= */
.gold-band {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(
    180deg,
    rgba(158, 31, 99, 1) 0%,
    rgba(158, 31, 99, 0.95) 30%,
    rgba(158, 31, 99, 0.85) 60%,
    rgba(158, 31, 99, 0.0) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  height: var(--header-h);
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-inner {
  position: relative;
  z-index: 16;
  width: 100%;
  max-width: var(--container);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 clamp(20px, 4vw, 60px);
}

.brand-logo {
  width: clamp(40px, 3.4vw, 48px);
  height: auto;
}

.site-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: clamp(22px, 4vw, 60px);
  margin: 0;
  padding: 0;
}

/* ✅ HEADER LINKS — magenta hover/active, no underline */
.nav-list a {
  color: var(--muted);
  text-decoration: none;
  font-size: clamp(16px, 1.6vw, 26px);
  font-weight: 600;
  transition: color 0.25s ease;
}
.nav-list a.is-active {
  color: var(--brand-secondary);
  text-decoration: none;
}
.nav-list a:hover {
  color: var(--brand-highlight);
  text-decoration: none;
}

.nav-contact {
  font-size: clamp(16px, 1.6vw, 26px);
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
}
.nav-contact:hover {
  color: var(--brand-highlight);
  text-decoration: none;
}
.nav-contact.is-active {
  color: var(--brand-secondary);
  text-decoration: none;
}

/* =========================================================
   HAMBURGER MENU (mobile)
   ========================================================= */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 22px;
  cursor: pointer;
  z-index: 18;
  position: fixed;
  top: 18px;
  right: 20px;
}
.hamburger span {
  background: #fff;
  height: 3px;
  width: 100%;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -7px);
}

/* ✅ MOBILE NAV: shorter, flush, fixed top */
@media (max-width: 860px) {
  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(158,31,99,0.9);
    flex-direction: column;
    align-items: center;
    padding: 10px 0 16px;
    transform: translateY(-200%);
    transition: transform 0.3s ease;
    z-index: 14;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  }
  .site-nav.active {
    transform: translateY(0);
  }
  .nav-list {
    flex-direction: column;
    gap: 10px;
  }
  .nav-list a {
    font-size: 1.1rem;
  color: var(--muted);
  }
  .nav-list a:hover {
    color: var(--brand-highlight);
  }
  .nav-contact {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}

/* When hamburger menu active / smaller screens */
@media (max-width: 860px) {
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: block;
  }

  /* Center the mobile nav layout */
  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(158, 31, 99, 0.95);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    transform: translateY(-200%);
    transition: transform 0.3s ease;
    z-index: 14;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  }

  .site-nav.active {
    transform: translateY(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1.5rem;
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .nav-list li {
    list-style: none;
  }

  .nav-list a {
    font-family: "Montserrat", sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .nav-list a:hover,
  .nav-list a.is-active {
    color: var(--brand-highlight);
  }

  /* Hide the top-right Contact button on mobile */
  .nav-contact {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* Hide/show nav elements by screen size */
.desktop-only {
  display: inline-block;
}

.mobile-only {
  display: none;
}

@media (max-width: 860px) {
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: block;
  }
}

   /* =========================================================
   FOOTER — Magenta Fade to Transparent (Centered Nav Fix)
   ========================================================= */
.site-footer {
  position: relative;
  background: var(--brand-primary);
  color: var(--muted);
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  padding: 10px 0 20px;
  z-index: 20;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(
    0deg,
    rgba(158, 31, 99, 1) 0%,
    rgba(158, 31, 99, 0.55) 50%,
    rgba(158, 31, 99, 0.25) 75%,
    rgba(158, 31, 99, 0.0) 100%
  );
}

/* =========================================================
   FOOTER INNER — TRUE CENTERED NAVIGATION
   ========================================================= */
.footer-inner {
  position: relative;
  z-index: 22;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center; /* Centers navigation block */
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* =========================================================
   LEFT — CONTACT DETAILS
   ========================================================= */
.footer-contact {
  position: absolute;
  left: 0;
  text-align: left;
  font-size: 0.75rem;
}

.footer-contact a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
  display: block;
  transition: color 0.25s ease;
}

.footer-contact a:hover {
  color: var(--brand-highlight);
}

/* =========================================================
   CENTER — NAVIGATION LINKS
   ========================================================= */
.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-align: center;
}

@media (max-width: 860px) {
  .footer-nav {
    margin-left: 12rem;
  }
}

.footer-nav a {
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-nav a.is-active {
  color: var(--brand-secondary);
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--brand-highlight);
  text-decoration: none;
}

/* =========================================================
   RIGHT — SOCIAL ICONS + LOGO
   ========================================================= */
.footer-social {
  position: absolute;
  right: 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-icon {
  font-size: 1.4rem;
  color: var(--muted);
  font-weight: bold;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-icon:hover {
  color: var(--brand-highlight);
}

.footer-logo {
  width: 38px;
  height: auto;
  display: block;
  opacity: 0.9;
}


@media (max-width: 860px) {
  .footer-nav, .footer-social, .footer-icon {
    display: none;
  }
}