:root {
  --bg: #050505;
  --burgundy: #4A0000;
  --deep: #7A0000;
  --gold: #F5B400;
  --gold-light: #FFD86B;
  --gold-dark: #B38728;
  --text: #F7F2E7;
  --muted: rgba(247, 242, 231, .75);
  --card: rgba(0, 0, 0, .35);
  --stroke: rgba(245, 180, 0, .25);
}

* {
  box-sizing: border-box
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  width: 100%;
  overflow-x: hidden;
}

a {
  color: inherit;
  transition: 0.3s;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(0, 0, 0, .85), rgba(0, 0, 0, .65));
  border-bottom: 1px solid rgba(245, 180, 0, .3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 800;
  letter-spacing: .5px
}

.brand .logo-box {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  /* Gold circle */
  border: 2px solid #fff;
  display: grid;
  place-items: center;
  font-size: 24px;
  box-shadow: 0 0 10px var(--gold);
}

.brand small {
  display: block;
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: .5px;
  margin-top: 2px;
  text-transform: uppercase;
  font-size: 0.7em;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  color: var(--text);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links a {
  text-decoration: none;
  padding: 10px 8px;
  border-radius: 10px
}

.nav-links a:hover {
  color: var(--gold);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-primary {
  color: #000;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold-dark));
  background-size: 200% auto;
  border: 1px solid var(--gold-light);
  box-shadow: 0 0 15px rgba(245, 180, 0, 0.4);
}

.btn-primary:hover {
  background-position: right center;
  box-shadow: 0 0 25px rgba(245, 180, 0, 0.7);
  transform: scale(1.05);
}

.btn-outline {
  color: var(--gold);
  background: rgba(0, 0, 0, .6);
  border: 1px solid var(--gold);
}

.btn-outline:hover {
  background: rgba(245, 180, 0, 0.1);
  box-shadow: 0 0 15px rgba(245, 180, 0, 0.3);
}

.text-gradient-gold {
  background: linear-gradient(180deg, #fff9e6 0%, #fff9e6 25%, #f9d976 50%, #b38728 75%, #806000 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.8));
  display: inline-block;
}



.btn-gold-solid:hover {
  filter: brightness(1.1);
  transform: scale(1.02);
}

.btn-gold-outline {
  background: transparent;
  border: 2px solid #e6b422;
  color: #e6b422;
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.btn-gold-outline:hover {
  background: rgba(230, 180, 34, 0.1);
  box-shadow: 0 0 20px rgba(230, 180, 34, 0.4);
}

.text-link-gold {
  color: var(--gold);
  text-decoration: none;
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.1rem;
  font-weight: 700;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 2px;
}

.text-link-gold:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.text-link-gold:hover {
  color: var(--gold-light);
  opacity: 1;
}

.text-link-gold:hover:after {
  transform: scaleX(1);
}

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  background: #000 url("assets/image1.jpeg") center center / 95% no-repeat;
  padding-bottom: 120px;
}

.hero-spacer {
  margin-top: 440px;
}

/* Gold Glow Overlay */
.hero:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(180deg, rgba(245, 180, 0, 0.15), transparent);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  padding: 60px 0;
}

/* Transparent overlay buttons on hero image (Instagram, Book Now, WhatsApp) */
.hero-cta-overlays {
  position: absolute;
  bottom: 18%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  z-index: 10;
  width: 100%;
  max-width: 480px;
}

.hero-cta-overlay {
  display: block;
  background: transparent;
  border: none;
  cursor: pointer;
  text-indent: -9999px;
  overflow: hidden;
}

.hero-cta-instagram {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.hero-cta-book {
  width: 260px;
  height: 52px;
  flex: 0 0 260px;
}

.hero-cta-whatsapp {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.h1 {
  font-family: Lexend, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: linear-gradient(180deg, #fff9e6 0%, #f9d976 25%, #f5b400 50%, #b38728 75%, #806000 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.8));
}

.media-heading {
  font-family: "Oswald", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(1.6rem, 2.6vw, 3.2rem);
}

/* Shared typography for the 4 gold media texts (SEE THE ENERGY, VIDEO,
   TESTIMONIALS, COMING SOON) so they all look consistent. */
.media-gold-text {
  font-family: "Lexend", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.01em;
  /* Vertical gradient: light -> dark -> light */
  background: linear-gradient(230deg, #bdb39b 0%, #dea132 55%, #d9c086 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 20px;

}

/* Slightly thinner style just for "COMING SOON" */
.media-gold-thin {
  font-weight: 500;
  letter-spacing: 0.12em;
}

/* Form field labels (Name, Phone, etc.) */
.form-label {
  font-family: "Lexend", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  letter-spacing: 0.08em;
  /* Solid label color */
  color: #e8c78e;
}

.form-label::after {
  content: ":";
  margin-left: 2px;
}

.section {
  padding: 80px 0;
  background: #050505;
}

/* Media (second image) section with overlap */
.media-section {
  position: relative;
  z-index: 2;
  /* Pull the second section up so it slightly overlaps image 1 */
  margin-top: -40px;
}

/* Draw the actual lines directly on the image wrapper so they don't get
   affected by zoom/overlap quirks */
.media-bg-wrapper {
  border-top: 3px solid #c0a584;
  border-bottom: 3px solid #c0a584;
}

.section.alt {
  background: #0a0a0a;
}

.section-title {
  font-family: Oswald, Montserrat, sans-serif;
  font-size: 2.5rem;
  margin: 0 0 10px;
  text-transform: uppercase;
  background: -webkit-linear-gradient(#fff, #ccc);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* No media queries here to maintain desktop view */

/* Inputs */
input,
select,
textarea {
  transition: all 0.3s ease;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold-light) !important;
  box-shadow: 0 0 15px rgba(245, 180, 0, 0.3);
  background: rgba(255, 255, 255, 0.05) !important;
}

::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.6;
}

/* Footer & Other Utilities */
.badge {
  color: var(--muted);
  font-weight: 700
}

footer {
  padding: 40px 0;
  border-top: 1px solid rgba(245, 180, 0, .2);
  background: #020202;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center
}

/* Animations */
@keyframes glow {
  0% {
    box-shadow: 0 0 5px rgba(245, 180, 0, 0.2);
  }

  50% {
    box-shadow: 0 0 20px rgba(245, 180, 0, 0.6);
  }

  100% {
    box-shadow: 0 0 5px rgba(245, 180, 0, 0.2);
  }
}

.contact-frame,
.video-frame,
.testimonials-frame {
  animation: glow 4s infinite ease-in-out;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .hero {
    background-size: 100% 100%;
  }

  .hero-spacer {
    margin-top: 50vw;
  }

}