/* ISGroove - Pixel Perfect Design System (Replicating https://groove-art-vault.lovable.app/) */

@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
@import url("toast-modal.css");

@font-face {
  font-family: 'Mogula';
  src: url('../fonts/mogula.woff') format('woff'),
       url('../fonts/mogula.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
:root {
  /* Exact Color Palette from Mockup */
  --groove-terracotta: #cc7333;
  --groove-terracotta-light: #db8e57;
  --groove-olive: #50532d;
  --groove-cream: #f1ede4;
  --groove-cream-alt: #f6f4ee;
  --groove-cream-dark: #e2dccf;
  --groove-beige-deep: #e2dccf;
  --groove-brown: #332d29;
  --groove-dark-brown: #24211e;
  --text-lead: #7a7052;
  --text-body: #322c1b;
  --white: #ffffff;

  /* Layout Tokens */
  --border-radius: 12px;
  --border-radius-lg: 16px;
  --transition: all 0.15s ease-in-out;
  --container-width: 1280px;
}

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

img.logo-footer2 {
    width: 50%;
    background-color: #d1cfca;
        border-radius: 10px;
    padding: 3%;
}

body {
  font-family: "Mogula", sans-serif;
  background-color: var(--groove-cream);
  color: var(--text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

p, .form-input, .form-label, .btn {
  font-family: "DM Sans", sans-serif;
}

h1,
h2,
h3,
.bebas {
  font-family: "Mogula", sans-serif;
  font-weight: 400;
  line-height: 1;
  text-transform: lowercase;
}

/* Admin Specific Overrides */
body.admin-body {
    font-family: 'DM Sans', sans-serif !important;
}
body.admin-body h1, 
body.admin-body h2, 
body.admin-body h3, 
body.admin-body .bebas {
    font-family: 'DM Sans', sans-serif !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px;
}

.grid {
  display: grid;
}

/* Graphic Patterns */
.dot-pattern {
  position: relative;
}

.dot-pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 2px 2px,
    #322c1b 1px,
    transparent 0
  );
  background-size: 20px 20px;
  opacity: 0.05;
  pointer-events: none;
}

.dot-pattern-large {
  position: relative;
}

.dot-pattern-large::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234A5D23' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 60px 60px;
  pointer-events: none;
}

/* Header & Glassmorphism */
header {
  background: rgba(246, 244, 238, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: "Mogula", sans-serif;
  font-size: 42px;
  color: var(--groove-olive);
  display: flex;
  align-items: center;
  gap: 4px;
}

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

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

.nav-links a {
  color: var(--text-body);
  opacity: 0.8;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.5px;
  transition: var(--transition);
  font-family: "DM Sans", sans-serif;
}

.auth-actions a {
  font-family: "DM Sans", sans-serif;
}

.nav-links a:hover {
  color: var(--groove-terracotta);
  opacity: 1;
}

/* Dropdown Menu */
.nav-item-dropdown {
  position: relative;
  padding-bottom: 20px; /* Bridge to prevent menu closing */
  margin-bottom: -20px; /* Compensate for padding */
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
  border: 1px solid rgba(0,0,0,0.05);
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  width: 100%;
  white-space: nowrap;
  font-size: 15px;
  color: var(--text-body);
  transition: all 0.2s ease;
}

.dropdown-menu a:hover {
  background-color: var(--groove-cream-alt);
  color: var(--groove-terracotta);
}

.bg-background {
  background-color: var(--white);
}
.bg-groove-cream-dark {
  background-color: var(--groove-cream-dark);
}
.border-border {
  border-color: rgba(0, 0, 0, 0.08);
}
.text-muted-foreground {
  color: var(--text-lead);
}
.font-medium {
  font-weight: 500;
}

.groove-card {
  background: #ebe5d8;
  border-radius: 40px;
  padding: 10px !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
   padding-top: 150px !important;
   text-align: justify !important;
}

@media (max-width: 768px) {

  img.logo-footer2 {
    width: 100%;
    background-color: #d1cfca;
        border-radius: 10px;
    padding: 3%;
}
  .groove-card {
    padding: 15px 10px; /* Further reduction to 10px lateral */
    border-radius: 15px;
  }
}

.form-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-body);
  margin-bottom: 12px;
}

.form-input {
  width: 100%;
  height: 58px;
  background-color: #f6f4ee;
  border: 2px solid #d6cfc2;
  border-radius: 16px;
  padding: 0 20px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text-body);
  transition: all 0.2s ease;
  outline: none;
}

.form-input:focus {
  border-color: var(--groove-terracotta);
  background-color: var(--white);
}

.form-textarea {
  height: auto;
  padding: 20px;
  min-height: 120px;
  resize: none;
}

.space-y-6 {
  margin-top: 32px;
}
.space-y-2 {
  margin-bottom: 24px;
}

.grid-cols-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 768px) {
  .grid-cols-3 {
    grid-template-columns: 1fr;
  }
}

/* Buttons */
.btn {
  padding: 12px 28px;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  border: none;
  text-transform: none;
  font-family: system-ui, -apple-system, sans-serif;
}

.btn-primary {
  background-color: var(--groove-terracotta);
  color: var(--white);
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(204, 115, 51, 0.3);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--groove-terracotta);
  color: var(--groove-terracotta);
}

.btn-outline:hover {
  background-color: var(--groove-terracotta);
  color: var(--white);
  transform: scale(1.05);
}

.btn-white {
  background-color: var(--white);
  color: var(--groove-olive);
  border: 2px solid var(--white);
}

.btn-white:hover {
  background-color: transparent;
  color: var(--white);
  transform: scale(1.05);
}

/* Animations */
@keyframes vinyl-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate-slide-up {
  animation: slide-up 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  opacity: 0;
}
.animate-fade-in {
  animation: fade-in 1s ease-out forwards;
  opacity: 0;
}
.animate-float {
  animation: float 6s ease-in-out infinite;
}
.vinyl-spin-slow {
  animation: vinyl-spin 12s linear infinite;
}

.delay-200 {
  animation-delay: 0.2s;
}
.delay-400 {
  animation-delay: 0.4s;
}
.delay-600 {
  animation-delay: 0.6s;
}

/* Decorative Elements */
.vinyl-disc {
  position: absolute;
  border-radius: 50%;
  background: #322c1b;
  border: 8px solid var(--groove-olive);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.vinyl-disc::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(80, 83, 45, 0.6),
    rgba(50, 44, 27, 0.6)
  );
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.vinyl-center {
  width: 33%;
  height: 33%;
  background: var(--groove-terracotta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.vinyl-center::after {
  content: "";
  width: 50%;
  height: 50%;
  background: var(--groove-cream);
  border-radius: 50%;
}

.vinyl-lines {
  position: absolute;
  inset: 15%;
  border-radius: 50%;
  border: 1px solid rgba(80, 83, 45, 0.2);
}

.vinyl-lines-md {
  inset: 25%;
}
.vinyl-lines-sm {
  inset: 35%;
}

/* Sections */
section {
  padding: 10px 0;
}

.section-alt {
  background-color: var(--groove-cream-alt);
}
.section-deep {
  background-color: var(--groove-beige-deep);
}

.section-tag {
  color: var(--groove-terracotta);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 20px;
  display: block;
}

.section-title {
  font-size: 72px;
  margin-bottom: 60px;
  color: var(--groove-olive);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--groove-cream);
}

.hero h1 {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.hero p {
  font-size: 24px;
  color: var(--text-lead);
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Stats Bar */
.stats-bar {
  background: var(--white);
  padding: 60px 0;
  margin-top: -80px;
  border-radius: 24px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 10;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-item h4 {
  font-size: 64px;
  color: var(--groove-terracotta);
  margin-bottom: 10px;
}

/* DNA Cards */
.dna-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.dna-card {
  background: linear-gradient(145deg, #f0ece6 0%, #e2dccf 100%);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.dna-card:hover {
  transform: translateY(-10px);
  border-color: var(--groove-terracotta);
}

.dna-card .icon-wrapper {
  margin-bottom: 24px;
  color: var(--groove-olive);
}

.dna-card h3 {
  font-size: 30px;
  margin-bottom: 15px;
  color: var(--groove-olive);
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 24px;
}

.bento-item {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  background: var(--white);
}

.bento-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-item:hover img {
  transform: scale(1.08);
}

.bento-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: var(--white);
}

/* Booking Section */
.booking-card {
  background-color: var(--groove-beige-deep);
  border-radius: 24px;
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.booking-form {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  display: grid;
  gap: 20px;
}

@media (max-width: 768px) {
  .booking-form {
    padding: 20px 10px; /* Reduced for mobile */
  }
}

.booking-form input,
.booking-form select {
  width: 100%;
  padding: 16px;
  background: var(--groove-cream-alt);
  border: 2px solid #d6cfc2;
  border-radius: 12px;
  font-family: system-ui, -apple-system, sans-serif;
  transition: border-color 0.2s;
}

.booking-form input:focus {
  outline: none;
  border-color: var(--groove-terracotta);
}

/* Footer Quote */
.quote-section {
  padding: 120px 0;
  text-align: center;
  background-color: var(--groove-cream);
}

.quote-section blockquote {
  font-size: 24px;
  color: #7a7052;
  font-style: italic;
  max-width: 900px;
  margin: 0 auto;
}

/* Events Section - Premium Bento */
.event-card-premium {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  min-height: 240px;
  color: var(--white);
}

.event-card-premium.large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 400px;
}

.event-card-premium:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.bg-olive-gradient {
  background: linear-gradient(
    135deg,
    var(--groove-olive),
    var(--groove-dark-brown)
  );
}
.bg-terracotta-gradient {
  background: linear-gradient(
    135deg,
    var(--groove-terracotta),
    var(--groove-dark-brown)
  );
}

.bg-brown-gradient {
  background: linear-gradient(
    135deg,
    var(--groove-brown),
    var(--groove-dark-brown)
  );
}

.bg-mixed-gradient {
  background: linear-gradient(
    135deg,
    #5d5440,
    var(--groove-dark-brown)
  );
}

.event-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: radial-gradient(
    circle at 2px 2px,
    currentColor 1px,
    transparent 0px
  );
  background-size: 20px 20px;
  pointer-events: none;
}

.glass-tag {
  display: inline-block;
  background: rgba(241, 237, 228, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
  opacity: 0.8;
  font-size: 14px;
}

.event-info-row span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-event {
  background: var(--groove-cream);
  color: var(--groove-olive);
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  margin-top: 20px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.event-card-premium:hover .btn-event {
  background: var(--white);
  transform: scale(1.05);
}

.bg-groove-brown {
  background-color: var(--groove-dark-brown);
}
.text-groove-cream\/70 {
  color: rgba(241, 237, 228, 0.7);
}
.text-groove-cream\/60 {
  color: rgba(241, 237, 228, 0.6);
}
.text-groove-cream\/50 {
  color: rgba(241, 237, 228, 0.5);
}
.bg-groove-cream\/10 {
  background-color: rgba(241, 237, 228, 0.1);
}
.bg-groove-cream\/5 {
  background-color: rgba(241, 237, 228, 0.05);
}

.pt-20 {
  padding-top: 80px;
}
.pb-8 {
  padding-bottom: 32px;
}
.mb-16 {
  margin-bottom: 64px;
}
.mb-6 {
  margin-bottom: 24px;
}
.mt-6 {
  margin-top: 24px;
}
.gap-12 {
  gap: 48px;
}
.gap-4 {
  gap: 16px;
}
.gap-3 {
  gap: 12px;
}
.space-y-3 > * + * {
  margin-top: 12px;
}
.space-y-4 > * + * {
  margin-top: 16px;
}

/* Funding Info Section */
.funding-info {
  border-top: 1px solid rgba(241, 237, 228, 0.1);
  padding: 40px 0;
  margin-top: 40px;
  text-align: center;
}

.funding-info p {
  color: rgba(241, 237, 228, 0.4);
  font-size: 13px;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto 25px;
}

.funding-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
}

.logo-footer {
  height: 60px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.logo-footer:hover {
  opacity: 1;
}

.funding-info a {
  color: var(--groove-terracotta);
  font-size: 14px;
  text-decoration: underline;
  opacity: 0.8;
}

.funding-info a:hover {
  opacity: 1;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(241, 237, 228, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--groove-cream);
  transition: all 0.3s ease;
}

.footer-social-link:hover {
  background: var(--groove-terracotta);
}

footer h4 {
  color: var(--groove-terracotta);
  font-size: 32px;
  letter-spacing: 2px;
  margin-bottom: 25px;
  text-transform: uppercase;
}

footer a {
  transition: color 0.2s ease;
}

footer a:hover {
  color: var(--groove-terracotta);
}

/* Responsive */
@media (max-width: 1024px) {
  .dna-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hero h1 {
    font-size: 80px;
  }
  .stats-grid,
  .dna-grid,
  .bento-grid,
  .booking-card {
    grid-template-columns: 1fr;
  }

  section {
    padding: 60px 0; /* Reduced global section padding on mobile */
  }

  /* Reduce space for booking section container on mobile */
  #booking .container {
    padding: 0 10px;
  }
}

/* Gallery & Experience Sections */
.bg-groove-olive {
  background-color: var(--groove-olive);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.gallery-item.row-span-2 {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(71, 48, 31, 0.8), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.experience-section {
  background-color: var(--groove-olive);
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.experience-decor-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.circle-large {
  width: 400px;
  height: 400px;
  border: 40px solid rgba(71, 48, 31, 0.3);
  right: -130px;
  top: 50%;
  transform: translateY(-50%);
}

.circle-small {
  width: 250px;
  height: 250px;
  border: 20px solid rgba(204, 115, 51, 0.2);
  left: -60px;
  bottom: -40px;
}

.quote-big {
  font-family: "Mogula", sans-serif;
  font-size: 84px;
  line-height: 1.1;
  color: var(--groove-cream);
  margin-bottom: 30px;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 80px;
}

@media (max-width: 768px) {
  .experience-grid {
    grid-template-columns: 1fr;
  }
  .quote-big {
    font-size: 48px;
  }
}

/* Auth Pages Styling */
.auth-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    to bottom right,
    var(--groove-cream),
    var(--white),
    var(--groove-cream-alt)
  );
  padding: 40px 20px;
}

.auth-card {
  max-width: 480px;
  width: 100%;
  padding: 50px;
}

.auth-header {
  text-align: center;
  margin-bottom: 40px;
}

.auth-title {
  font-family: "Mogula", sans-serif;
  font-size: 48px;
  color: var(--groove-olive);
  margin-bottom: 10px;
}

.auth-subtitle {
  color: var(--text-lead);
  font-size: 16px;
}

.alert {
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 500;
}

.alert-success {
  background-color: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.alert-error {
  background-color: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.auth-footer {
  margin-top: 30px;
  text-align: center;
  font-size: 14px;
  color: var(--text-lead);
}

.auth-footer a {
  color: var(--groove-terracotta);
  font-weight: 600;
}

/* Footer Layout Custom - Mobile First */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr; /* Stacked on mobile by default */
  gap: 48px; /* Matches gap-12 */
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 Columns on desktop */
  }
}


/* Experience Pages Styles */
.hero-experience {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--groove-cream);
  overflow: hidden;
}

.hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(36, 33, 30, 0.6); /* groove-dark-brown with opacity */
  mix-blend-mode: multiply;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  padding: 0 20px;
}

.badge-pill {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(204, 115, 51, 0.2);
  border: 1px solid rgba(204, 115, 51, 0.3);
  color: var(--groove-terracotta);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}

.text-8xl { font-size: 5rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-sm { font-size: 0.875rem; }

.font-bold { font-weight: 700; }
.uppercase { text-transform: uppercase; }
.tracking-wider { letter-spacing: 0.05em; }

.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-16 { margin-bottom: 4rem; }

.grid-2-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 960px) {
  .grid-2-cols {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.grid-3-cols {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
}

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

.grid-gallery-mini {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 768px) {
  .grid-gallery-mini {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card-generic {
  background: var(--white);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--groove-cream-dark);
}

.list-check li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--groove-olive);
  font-weight: 500;
  margin-bottom: 12px;
}

.list-num li {
  margin-bottom: 12px;
  list-style-position: inside;
}

.w-full { width: 100%; }
.h-60 { height: 15rem; }

/* Mobile Menu Styles */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
  padding: 0;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background-color: var(--groove-olive);
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}

/* Hamburger Animation */
.mobile-menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.mobile-menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

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

.mobile-menu-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--groove-cream);
  z-index: 1060;
  padding: 100px 30px 40px;
  box-shadow: -10px 0 30px rgba(0,0,0,0.1);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-menu-sidebar.active {
  right: 0;
}

.mobile-nav-links {
  list-style: none;
  margin-bottom: auto;
}

.mobile-nav-links li {
  margin-bottom: 24px;
}

.mobile-nav-links a,
.dropdown-btn {
  font-family: "Mogula", sans-serif;
  font-size: 28px;
  color: var(--groove-olive);
  text-decoration: none;
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 100%;
  text-align: left;
}

.dropdown-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dropdown-btn .arrow {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.dropdown-btn.active .arrow {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  list-style: none;
  padding-left: 20px;
  margin-top: 10px;
  display: none; /* Javascript will toggle this */
}

.mobile-dropdown-menu.active {
  display: block;
}

.mobile-dropdown-menu li a {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  color: var(--text-body);
  margin-bottom: 12px;
  font-weight: 500;
}

.mobile-auth-actions {
  margin-top: 40px;
  border-top: 1px solid rgba(0,0,0,0.1);
  padding-top: 30px;
}

.mobile-auth-actions .btn {
  width: 100%;
  text-align: center;
}

.mb-4 { margin-bottom: 1rem; }

/* Responsive Visibility */
@media (max-width: 960px) {
  .desktop-nav,
  .desktop-auth {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
}
.object-cover { object-fit: cover; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }

.opacity-90 { opacity: 0.9; }
.text-white { color: var(--white); }
.text-groove-cream { color: var(--groove-cream); }
.text-groove-olive { color: var(--groove-olive); }

