@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  --bg-dark: #050505;
  --bg-card: #0A0A0A;
  --text-main: #FFFFFF;
  --text-muted: #A1A1AA;
  --gold-primary: #D4AF37;
  --gold-light: #F2D24B;
  --gold-dark: #B4941F;
  --accent-red: #C21F30;

  --glass-border: 1px solid rgba(255, 255, 255, 0.08);
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.36);

  --font-sans: 'Outfit', sans-serif;
  --font-serif: 'Playfair Display', serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Lenis Recommended CSS */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
}

.h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  /* Reduced from 5.5rem */
  letter-spacing: -0.02em;
  background: linear-gradient(to right, #fff, #ccc);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
}

/* ... existing code ... */

.btn {
  padding: 12px 24px;
  /* Reduced from 16px 32px */
  font-size: 0.9rem;
  /* Slightly smaller text */
  /* ... */
}

/* ... existing code ... */

.hero-video {
  /* ... */
  opacity: 0.6;
  /* Increased visibility from 0.4 */
  z-index: -1;
}

.sec-heading {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.sec-heading::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--gold-primary);
}

.lead {
  font-size: 1.25rem;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 800px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glow {
  0% {
    box-shadow: 0 0 5px var(--gold-primary);
  }

  50% {
    box-shadow: 0 0 20px var(--gold-primary);
  }

  100% {
    box-shadow: 0 0 5px var(--gold-primary);
  }
}

/* Header & Nav */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}

.header.scrolled {
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(12px);
  padding: 15px 0;
  border-bottom: var(--glass-border);
}

.navbar-brand {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff !important;
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand .dot {
  width: 8px;
  height: 8px;
  background: var(--gold-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold-primary);
}

.nav-link {
  color: var(--text-muted) !important;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-primary) !important;
}

/* Buttons */
.btn {
  padding: 12px 24px;
  /* Reduced padding */
  border-radius: 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  /* Reduced font size */
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gold-primary);
  background: transparent;
  color: var(--gold-primary);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold-primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: -1;
}

.btn:hover {
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -10px rgba(212, 175, 55, 0.3);
}

.btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn .spark {
  display: none;
}

.btn.ghost {
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.btn.ghost:hover {
  border-color: #fff;
  background: #fff;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  /* Increased visibility */
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, var(--bg-dark) 90%);
  z-index: 0;
}

.hero .bgCanvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 10;
}

.kicker {
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  display: block;
}

.hero-cta {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* Hero Inner Layout */
.hero .inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
  max-width: 900px;
}

/* Sections */
.section {
  padding: 120px 0;
  position: relative;
}

/* Split Visuals & Tiles (Intro Section) */
.section-split {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.split-visual .tile {
  max-width: 500px;
  /* Constrained size as requested */
  margin: 0 auto;
}

.tile {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.tile img {
  width: 100%;
  display: block;
  transition: transform 0.7s ease;
}

.tile:hover img {
  transform: scale(1.08);
}

.mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(5, 5, 5, 0.8));
}

/* About Section */
.section-about {
  background: #fff;
  color: #111;
  padding: 100px 0;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 40px;
}

.pill {
  border: 1px solid #eee;
  padding: 15px 20px;
  border-radius: 0;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  background: #f9f9f9;
}

.pill:hover {
  background: #111;
  color: #fff;
  transform: translateY(-5px);
  border-color: #111;
}

/* Ignite Section */
.section-ignite {
  background: #0A0A0A;
  color: #fff;
  position: relative;
  padding: 120px 0;
}

.ignite-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ignite-visual {
  position: relative;
}

.ignite-visual img {
  width: 100%;
  border-radius: 2px;
  filter: grayscale(20%);
  transition: filter 0.5s ease;
}

.ignite-visual:hover img {
  filter: grayscale(0%);
}

.ignite-highlight {
  background: var(--glass-bg);
  border: var(--glass-border);
  padding: 25px;
  border-radius: 4px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.ignite-highlight:hover {
  transform: translateX(10px);
  border-color: var(--gold-primary);
}

.ignite-stat {
  color: var(--gold-primary);
  font-size: 2rem;
  font-family: var(--font-serif);
  display: block;
  margin-bottom: 5px;
}

/* Events Section */
.event-card {
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.8), rgba(10, 10, 10, 0.95));
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 24px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.event-card h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold-light);
  margin-bottom: 15px;
}

.event-card p {
  color: #ccc;
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.event-card img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Reviews */
.section-reviews {
  background: #FFFFFF;
  color: #000000;
  border: none;
  box-shadow: none;
  padding: 120px 0 150px 0;
  margin-bottom: 100px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  text-align: center;
}

.section-reviews .sec-heading {
  color: #000000;
}

.section-reviews .sec-heading::after {
  background: var(--gold-primary);
  left: 50%;
  transform: translateX(-50%);
}

.section-reviews .carousel {
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
}

.section-reviews .carousel-indicators {
  bottom: -10px;
}

.section-reviews .carousel-indicators button {
  background-color: #ccc;
  border: none;
}

.section-reviews .carousel-indicators button.active {
  background-color: var(--gold-primary);
}

.section-reviews .carousel-control-prev-icon,
.section-reviews .carousel-control-next-icon {
  filter: invert(1) grayscale(100);
}

.review-card {
  text-align: center;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 60px 5%;
  border: none;
  background: transparent;
  box-shadow: none;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.review-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  margin: 0 auto 20px auto;
  line-height: 1.4;
  color: #000000;
  max-width: 1200px;
}

.reviewer-name {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  color: #333333;
}

.review-stars {
  color: var(--gold-primary);
  letter-spacing: 5px;
  margin-bottom: 15px;
  font-size: 0.8rem;
}

/* Final CTA - Restored with Gradient */
.final-cta {
  padding: 120px 0;
  background: radial-gradient(600px 300px at 20% 0%, rgba(194, 31, 48, .35), transparent 60%), radial-gradient(800px 400px at 80% 100%, rgba(242, 210, 75, .3), transparent 60%), #0a0a0c;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-top: none;
  margin-top: 0;
  clear: both;
}

/* Cleaner, no blur overlay needed with this nice gradient */
.final-cta::before {
  display: none;
}

.final-cta h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 20px;
  color: #fff;
}

.final-cta p {
  font-size: 1.4rem;
  color: #aaa;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
footer {
  background: #000;
  border-top: 1px solid #222;
  padding: 50px 0;
  color: #666;
  text-align: center;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 991px) {
  .header {
    padding: 15px 0;
  }

  .header.scrolled {
    padding: 10px 0;
  }

  .navbar-brand {
    font-size: 1.25rem;
  }

  .navbar-collapse {
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(20px);
    padding: 20px;
    margin-top: 15px;
    border-radius: 8px;
    border: var(--glass-border);
  }

  .navbar-nav {
    gap: 0 !important;
  }

  .navbar-nav .nav-link {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .navbar-nav .nav-item:last-child .btn {
    margin-top: 15px;
    width: 100%;
    text-align: center;
  }

  .ignite-layout {
    grid-template-columns: 1fr;
  }

  .h1 {
    font-size: 3.5rem;
  }

  .event-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .event-card img {
    margin-top: 20px;
    max-width: 100%;
  }

  .section {
    padding: 80px 0;
  }

  .sec-heading {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .final-cta {
    padding: 80px 0;
  }

  .review-text {
    font-size: 1.25rem;
  }
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
  .hero {
    min-height: 85vh;
    padding-top: 80px;
  }

  .hero .inner {
    padding: 0 15px;
  }

  .h1 {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
    margin-bottom: 1rem;
  }

  .kicker {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
  }

  .hero-cta {
    flex-direction: column;
    gap: 12px;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .section {
    padding: 60px 0;
  }

  .section-about {
    padding: 60px 0;
  }

  .sec-heading {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  .lead {
    font-size: 1rem;
  }

  .focus-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .pill {
    padding: 12px 15px;
    font-size: 0.85rem;
  }

  .ignite-layout {
    gap: 30px;
  }

  .ignite-stat {
    font-size: 1.5rem;
  }

  .ignite-highlight {
    padding: 20px;
  }

  .event-card {
    padding: 25px;
    border-radius: 16px;
  }

  .event-card h3 {
    font-size: 1.5rem !important;
  }

  .event-card p {
    font-size: 0.95rem !important;
  }

  .review-card {
    padding: 20px;
  }

  .review-text {
    font-size: 1.1rem;
  }

  .final-cta {
    padding: 60px 0;
  }

  .final-cta h2 {
    font-size: 1.75rem;
  }

  .final-cta p {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.8rem;
  }

  footer {
    padding: 30px 15px;
    font-size: 0.8rem;
  }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
  .navbar-brand {
    font-size: 1rem;
  }

  .brand .dot {
    width: 6px;
    height: 6px;
  }

  .h1 {
    font-size: 1.5rem;
  }

  .kicker {
    font-size: 0.7rem;
  }

  .section {
    padding: 50px 0;
  }

  .sec-heading {
    font-size: 1.5rem;
  }

  .lead {
    font-size: 0.9rem;
  }

  .ignite-stat {
    font-size: 1.3rem;
  }

  .review-text {
    font-size: 1rem;
  }

  .final-cta h2 {
    font-size: 1.5rem;
  }
}

/* Landscape orientation on mobile */
@media (max-width: 767px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
    padding: 100px 0 60px;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .tile:hover img {
    transform: none;
  }

  .pill:hover {
    transform: none;
    background: #f9f9f9;
    color: inherit;
    border-color: #eee;
  }

  .ignite-highlight:hover {
    transform: none;
  }

  .btn:hover {
    transform: none;
    box-shadow: none;
  }

  .btn:hover::before {
    transform: scaleX(0);
  }

  .btn.ghost:hover {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.2);
  }
}

/* Floating Action Buttons */
.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.floating-btn:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.floating-btn.whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

.floating-btn.whatsapp:hover {
  background: linear-gradient(135deg, #128C7E, #075E54);
  color: #fff;
}

.floating-btn.call {
  background: linear-gradient(135deg, var(--gold-primary), #B4941F);
}

.floating-btn.call:hover {
  background: linear-gradient(135deg, #B4941F, #8B7016);
  color: #fff;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.floating-btn.whatsapp {
  animation: pulse 2s infinite;
}

@media (max-width: 767px) {
  .floating-buttons {
    bottom: 20px;
    right: 20px;
    gap: 12px;
  }

  .floating-btn {
    width: 55px;
    height: 55px;
  }

  .floating-btn svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .floating-btn {
    width: 50px;
    height: 50px;
  }
}

@media (hover: none) and (pointer: coarse) {
  .floating-btn:hover {
    transform: none;
  }
}