/* 
  HEROHEALTH WELLNESS CLUB — Global Design System v5.0 (RESTORED)
  Architected for: Performance, High-Contrast Visibility, and Mobile Fluidity.
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Brand Constants */
  --primary: #045d44;
  --primary-light: #06805c;
  --primary-dark: #024130;
  --accent: #c98e4e;
  --accent-light: #dfb382;
  --accent-dark: #a1703d;
  --sage-cream: #f4f7f6;
  --soft-creme: #fdfaf5;
  --text-main: #1a2a24;
  --text-sub: #546a62;
  --text-muted: #64748b;
  --white: #ffffff;

  /* UX Tokens */
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 25px 50px rgba(0, 0, 0, 0.12);
  --shadow-lux: 0 30px 60px rgba(2, 65, 48, 0.15);
  --bezier: cubic-bezier(0.165, 0.84, 0.44, 1);
  --transition: all 0.4s var(--bezier);
  --radius-sm: 0.5rem;
  --radius: 1.2rem;
  --radius-lg: 2.2rem;
}

/* ===== CORE RESETS ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-main);
  background: var(--soft-creme);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  line-height: 1.25;
  color: var(--primary-dark);
}

a {
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
}

/* ===== NAVIGATION ARCHITECTURE ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 5%;
  z-index: 5000;
  transition: all 0.5s var(--bezier);
}

.navbar .nav-container {
  max-width: 1350px;
  margin: 0 auto;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  background: #ffffff !important;
  backdrop-filter: blur(20px);
  padding: 0.8rem 2.8rem;
  border-radius: 100px;
  border: 1px solid rgba(212, 165, 116, 0.35);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  position: relative;
}

.navbar.scrolled .nav-container {
  padding: 0.6rem 2.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Logo & Desktop links */
.logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--primary-dark) !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.8rem !important;
}

.logo img {
  height: 42px;
}

.logo span {
  color: var(--accent);
}

.logo-text {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  align-items: center;
}

.nav-links li a {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-main) !important;
  position: relative;
  opacity: 0.85;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--primary) !important;
  opacity: 1;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 2.5px;
  background: var(--accent);
  transition: width 0.3s ease;
  transform: translateX(-50%);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 22px;
}

/* Hamburger Icon */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--primary-dark);
  border-radius: 4px;
  transition: 0.3s;
}

/* ===== HERO SECTIONS ===== */
.hero,
.page-hero,
.bmi-page-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 2rem;
}

.hero-bg,
.hero-bg img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(2, 65, 48, 0.88), rgba(2, 65, 48, 0.6));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1050px;
  text-align: center;
  color: #fff;
}

.hero h1 {
  font-size: clamp(2.8rem, 8vw, 6rem);
  margin-bottom: 2rem;
  color: #fff;
}

/* Hero Badge pill */
.hero-badge {
  display: inline-block;
  background: rgba(201, 142, 78, 0.25);
  border: 1px solid rgba(201, 142, 78, 0.5);
  color: var(--accent-light);
  padding: 0.6rem 2rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

/* Hero CTA Buttons row */
.hero-btns {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}

/* Nav gold CTA button */
.btn-nav-gold {
  background: var(--accent);
  color: #fff !important;
  padding: 0.75rem 2rem;
  border-radius: 100px;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-nav-gold:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(201, 142, 78, 0.35);
}

/* Nav CTA container */
.nav-cta {
  display: flex;
  align-items: center;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-indicator .mouse {
  width: 24px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator .mouse::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  animation: scrollDot 1.5s ease-in-out infinite;
}

@keyframes scrollDot {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(12px);
  }
}

/* Global highlight span */
.highlight {
  color: var(--accent) !important;
  font-style: italic;
}

.hero .highlight {
  color: var(--accent-light) !important;
  font-style: italic;
}

/* ===== STATS SECTION ===== */
.stats-section {
  background: var(--primary-dark);
  padding: 6rem 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.stat-item h2 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--accent-light);
  font-family: 'Outfit', sans-serif;
  line-height: 1;
  margin-bottom: 0.8rem;
}

.stat-item p {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

/* Feature icon & link */
.feature-icon {
  font-size: 4rem;
  margin-bottom: 2rem;
  display: block;
  line-height: 1;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-light);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
  margin-top: 1.5rem;
  text-transform: uppercase;
  transition: gap 0.3s ease;
}

.feature-link:hover {
  gap: 1rem;
  color: #fff;
}

/* ===== HERO-STATS (old legacy) ===== */
.hero-stats {
  display: flex;
  gap: 4rem;
  justify-content: center;
  margin-top: 5rem;
}

.stat-number {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--accent-light);
  font-family: 'Outfit', sans-serif;
}

.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  opacity: 0.8;
}

/* ===== SECTION ARCHITECTURE ===== */
.section {
  padding: 9rem 2rem;
}

.section-alt {
  background: var(--sage-cream);
}

.section-header {
  text-align: center;
  margin-bottom: 6rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 1.2rem;
  display: block;
}

.section-header h2 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin-bottom: 1.5rem;
}

/* ===== THE DISCOVERABLE GRIDS (FEATURES SECTION) ===== */
.features-section {
  background: var(--primary-dark) !important;
  color: #fff;
}

/* Force all text white inside features-section */
.features-section .section-header,
.features-section .section-header h2,
.features-section .section-header p,
.features-section .section-label {
  color: #fff !important;
}

.features-section .section-label {
  color: var(--accent-light) !important;
  opacity: 0.9;
}

.features-section .feature-card h3,
.features-section .feature-card p {
  color: #fff !important;
}

.features-section .feature-card p {
  opacity: 0.85;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  max-width: 1350px;
  margin: 0 auto;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  padding: 4rem 3rem;
  border-radius: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-12px);
  border-color: var(--accent-light);
  background: rgba(255, 255, 255, 0.08);
}

.feature-card .icon {
  font-size: 4rem;
  display: block;
  margin-bottom: 2rem;
}

.feature-card h3 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* ===== SERVICES & PROGRAMS ===== */
.services-grid,
.wellness-programs-grid,
.pricing-grid,
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
}

.service-card,
.program-card,
.pricing-card {
  background: #fff;
  border-radius: 2.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-lux);
}

.card-image {
  height: 280px;
  position: relative;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 1s;
}

.service-card:hover img {
  transform: scale(1.15);
}

.card-body {
  padding: 3.5rem;
  text-align: center;
  flex-grow: 1;
}

.card-body h3 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
}

.card-body p {
  color: var(--text-sub);
  margin-bottom: 2.5rem;
}

/* ===== TESTIMONIALS FIX (SCREENSHOT FIX) ===== */
.testimonial-card {
  background: #fff;
  padding: 4.5rem;
  border-radius: 2.5rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  text-align: left;
}

.testimonial-card .stars {
  color: #fbbf24;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.testimonial-card blockquote {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--primary-dark);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.author {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.author-avatar {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
}

.author-name {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--primary-dark);
}

.author-role {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ===== PRICING MODULE ===== */
.pricing-card {
  padding: 5rem 3.5rem;
  text-align: center;
}

.pricing-card.featured {
  background: var(--primary-dark);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
  border: 2px solid var(--accent);
}

.pricing-card.featured h2,
.pricing-card.featured h3 {
  color: #fff;
}

.plan-price {
  font-size: 4.5rem;
  font-weight: 900;
  margin: 2rem 0;
  font-family: 'Outfit', sans-serif;
}

/* ===== BUTTONS Contrast Fix ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 3rem;
  border-radius: 100px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 30px rgba(201, 142, 78, 0.3);
}

.btn-green {
  background: var(--primary);
  color: #fff !important;
  box-shadow: 0 10px 30px rgba(4, 93, 68, 0.3);
}

.btn-green:hover {
  background: var(--primary-dark);
  transform: translateY(-5px);
}

.btn-outline {
  border: 2.5px solid var(--accent);
  color: var(--accent);
}

/* ===== FOOTER ARCHITECTURE (IMAGE 2 FIX) ===== */
.footer {
  background: var(--primary-dark);
  color: #fff;
  padding: 12rem 2rem 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto 5rem;
}

.footer .logo {
  color: #fff !important;
  font-size: 2.4rem;
  margin-bottom: 2rem;
}

.footer p {
  opacity: 0.8;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.footer h4 {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 800;
  margin-bottom: 2.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin: 1.2rem 0;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--accent-light);
  padding-left: 10px;
}

.footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-newsletter input {
  padding: 1.2rem 2rem;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-family: inherit;
}

.footer-newsletter button {
  width: 100%;
  margin-top: 0.5rem;
}

/* ===== HEROHEALTHCLUB — LUXURY WELLNESS DESIGN SYSTEM ===== */
.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 1200px) {
  .community-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.delete-post-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 5;
  border: none;
}

.delete-post-btn:hover {
  background: #ef4444;
  color: #fff;
  transform: scale(1.1);
}

.pagination-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 5rem;
  width: 100%;
}

.page-btn {
  padding: 0.8rem 1.8rem;
  background: #fff;
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 100px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-btn:hover:not(:disabled) {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 20px rgba(201, 142, 78, 0.2);
}

.page-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  border-color: #ddd;
  color: #999;
}

.page-info {
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 1.1rem;
}

.post-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.post-header h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0;
  color: var(--primary-dark);
  line-height: 1.2;
}

.post-meta span {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.community-card {
  position: relative;
  background: var(--white);
  padding: 2.5rem;
  border-radius: 2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
}

.community-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 142, 78, 0.3);
}

.post-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.post-meta h4 {
  font-size: 1.25rem;
  margin-bottom: 0.2rem;
}

.post-meta span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.post-body p {
  font-size: 1.15rem;
  color: var(--text-sub);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* 16:9 Video Container - Modern aspect-ratio approach */
.post-video-container {
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  margin: 1.5rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  background: #000;
}

.post-video-container iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: none;
}

/* ===== YouTube Thumbnail Preview Card ===== */
.yt-thumb-link {
  display: block;
  text-decoration: none;
  margin: 1.5rem 0;
}

.yt-thumb-wrap {
  position: relative;
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  background: #000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.yt-thumb-wrap:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.yt-thumb-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  opacity: 0.85;
  transition: opacity 0.3s;
}

.yt-thumb-wrap:hover .yt-thumb-img {
  opacity: 0.7;
}

.yt-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
  transition: transform 0.3s ease;
}

.yt-thumb-wrap:hover .yt-play-btn {
  transform: translate(-50%, -50%) scale(1.15);
}

.yt-watch-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  color: #fff;
  text-align: center;
  padding: 1.5rem 1rem 1rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.post-footer {
  display: flex;
  gap: 2rem;
  border-top: 1px solid #f2f2f2;
  padding-top: 1.5rem;
}

.post-footer button {
  background: none;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-sub);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: 0.2s;
}

.post-footer button:hover {
  color: var(--primary);
}

.like-btn i,
.share-btn i {
  font-size: 1.2rem;
  transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.like-btn:hover i {
  transform: scale(1.2);
  color: #ef4444;
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  width: 75px;
  height: 75px;
  background: #25d366;
  color: #fff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
  z-index: 4500;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-10px);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top-btn {
  position: fixed;
  bottom: 3.4rem;
  right: 8.5rem;
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: #fff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
  z-index: 4500;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  border: none;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn:hover {
  background: var(--accent);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 640px) {
  .whatsapp-float {
    width: 60px;
    height: 60px;
    font-size: 2.2rem;
    bottom: 2rem;
    right: 1.5rem;
  }

  .scroll-top-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    bottom: 2.3rem;
    right: 6rem;
  }
}

/* ===== RESPONSIVE OVERHAUL ===== */
@media (max-width: 968px) {
  .hamburger {
    display: flex !important;
    margin-left: auto;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 340px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 10rem 4rem;
    box-shadow: -15px 0 50px rgba(0, 0, 0, 0.15);
    transition: 0.8s var(--bezier);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-cta {
    display: none;
  }

  .hero h1 {
    font-size: 3.5rem;
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .section {
    padding: 5rem 1.5rem;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .nav-container {
    padding: 0.8rem 1.5rem !important;
  }

  .hero-content h1 {
    font-size: clamp(2.5rem, 10vw, 3.5rem) !important;
  }
}

@media (max-width: 640px) {
  .community-card {
    padding: 2.5rem 1.5rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    letter-spacing: 2px;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .section {
    padding: 7rem 1.5rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 4rem;
  }

  .card-body,
  .testimonial-card {
    padding: 2.5rem;
  }
}

/* Animations Triggered by Scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 8rem 2rem;
  text-align: center;
  color: #fff;
}

.cta-banner h2 {
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
}

.cta-banner p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 3rem;
  opacity: 0.9;
}

.btn-luxury {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.4rem 3.5rem;
  border-radius: 100px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1rem;
  background: var(--accent);
  color: #fff !important;
  box-shadow: 0 15px 35px rgba(201, 142, 78, 0.4);
  transition: var(--transition);
}

.btn-luxury:hover {
  transform: translateY(-8px);
  background: #b57a3e;
  box-shadow: 0 20px 45px rgba(201, 142, 78, 0.5);
}

/* ===== FOOTER BOTTOM && SOCIAL ===== */
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.2rem;
  text-decoration: none;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
}

.footer-bottom p {
  margin-bottom: 0 !important;
  font-size: 0.95rem;
  opacity: 0.7;
}

/* ===== AUTH MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--white);
  width: 90%;
  max-width: 480px;
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  position: relative;
  box-shadow: var(--shadow-lux);
  transform: translateY(30px) scale(0.95);
  transition: all 0.5s var(--bezier);
}

.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--sage-cream);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.5rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--accent);
  color: #fff;
  transform: rotate(90deg);
}

.modal h3 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  text-align: center;
  font-family: 'Playfair Display', serif;
}

.modal-subtitle {
  text-align: center;
  color: var(--text-sub);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

.auth-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  background: var(--sage-cream);
  padding: 0.5rem;
  border-radius: 100px;
}

.auth-tabs button {
  flex: 1;
  padding: 1rem;
  border-radius: 100px;
  font-weight: 700;
  color: var(--text-sub);
  background: transparent;
  transition: var(--transition);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.auth-tabs button.active {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1.2rem 1.5rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--sage-cream);
  font-family: inherit;
  font-size: 1.05rem;
  transition: var(--transition);
  color: var(--text-main);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  outline: none;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(201, 142, 78, 0.15);
}

/* ===== ADMIN DASHBOARD ===== */
.admin-container {
  max-width: 1200px;
  margin: 120px auto 60px;
  padding: 3rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.admin-header {
  margin-bottom: 3rem;
  border-bottom: 2px solid var(--soft-creme);
  padding-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-form-group {
  margin-bottom: 2rem;
}

.admin-form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--primary-dark);
}

.admin-form-group input,
.admin-form-group textarea,
.admin-form-group select {
  width: 100%;
  padding: 1.2rem;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  font-family: inherit;
  transition: var(--transition);
}

.admin-form-group input:focus {
  border-color: var(--primary);
  outline: none;
}

/* ===== EVENTS SECTION ===== */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.event-card {
  background: var(--white);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
}

.event-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.event-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.event-card:hover img {
  transform: scale(1.05);
}

.event-content {
  padding: 2.5rem;
}

.event-date {
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.8rem;
}

.event-title {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

/* Post Video Container improvements */
.post-video-container {
  border-radius: 1rem;
  overflow: hidden;
  margin-top: 1.5rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  background: #000;
}

/* ===== REVIEW BUTTON ===== */
.btn-google-review {
  display: inline-flex !important;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: #4285F4;
  border: 1px solid #dee2e6 !important;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  transition: var(--transition);
}

.btn-google-review:hover {
  background: #f8f9fa;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

/* Social Icon Hover Adjustments */
.footer-social a {
  display: inline-flex;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  margin-right: 1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  transform: translateY(-5px);
  color: #fff !important;
}
/* ===== AUTO-SLIDING BANNER ===== */
.home-slider-section { padding: 4rem 0; background: var(--soft-creme); overflow: hidden; }
.home-slider-container { width: 100%; overflow: hidden; position: relative; display: flex; }
.home-slider-track { display: flex; animation: scrollInfinite 40s linear infinite; gap: 20px; }
.home-slider-track:hover { animation-play-state: paused; }
.home-slide { width: 280px; height: 180px; flex-shrink: 0; border-radius: 1.5rem; overflow: hidden; box-shadow: var(--shadow-sm); cursor: pointer; transition: transform 0.3s var(--bezier); }
.home-slide:hover { transform: scale(1.05); box-shadow: var(--shadow-md); }
.home-slide img { width: 100%; height: 100%; object-fit: cover; }
@keyframes scrollInfinite { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@media (max-width: 768px) { .home-slide { width: 200px; height: 130px; } }

