/* ========================================
   EMBER BRAND COLOR SYSTEM
   ======================================== */

:root {
  /* Primary Brand Colors */
  --ember-gold: #edc170;
  --ember-orange: #e1742b;

  /* Dark Theme Colors */
  --ember-dark: #050707;
  --ember-dark-brown: #32241c;
  --ember-brown: #6a3017;

  /* Text Colors */
  --text-primary: var(--ember-gold);
  --text-secondary: var(--ember-orange);
  --text-muted: rgba(237, 193, 112, 0.8);

  /* Background Colors */
  --bg-primary: var(--ember-dark);
  --bg-secondary: rgba(5, 7, 7, 0.95);
  --bg-overlay: rgba(5, 7, 7, 0.4);

  /* Border Colors */
  --border-primary: rgba(237, 193, 112, 0.2);
  --border-secondary: rgba(237, 193, 112, 0.3);

  /* Gradient Colors */
  --gradient-primary: linear-gradient(
    135deg,
    var(--ember-gold),
    var(--ember-orange)
  );
  --gradient-secondary: linear-gradient(
    135deg,
    var(--ember-orange),
    var(--ember-gold)
  );
  --gradient-bg: linear-gradient(
    135deg,
    var(--ember-dark) 0%,
    var(--ember-dark-brown) 30%,
    var(--ember-brown) 70%,
    var(--ember-dark) 100%
  );

  /* Shadow Colors */
  --shadow-gold: rgba(237, 193, 112, 0.3);
  --shadow-orange: rgba(225, 116, 43, 0.3);
  --shadow-dark: rgba(0, 0, 0, 0.3);

  /* Hover States */
  --hover-gold: rgba(237, 193, 112, 0.5);
  --hover-orange: rgba(225, 116, 43, 0.5);

  /* WhatsApp Brand Colors */
  --whatsapp-green: #25d366;
  --whatsapp-dark-green: #128c7e;

  /* Instagram Brand Colors */
  --instagram-purple: #e4405f;
  --instagram-orange: #f77737;
}

/* ========================================
   RESET AND BASE STYLES
   ======================================== */

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

body {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--gradient-bg);
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header and Navigation */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--bg-secondary);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--border-primary);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo h1 {
  font-family: "Lovelo", "Arial Black", "Helvetica Black", "Arial Bold",
    "Helvetica Bold", Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px var(--shadow-orange);
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.nav-menu a:hover {
  color: var(--text-secondary);
  text-shadow: 0 0 10px var(--hover-orange);
}

/* Language Selector */
.language-selector {
  margin-left: 2rem;
}

.lang-dropdown {
  background: rgba(237, 193, 112, 0.1);
  border: 1px solid var(--border-secondary);
  border-radius: 6px;
  padding: 0.4rem 2rem 0.4rem 0.8rem;
  color: var(--text-primary);
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  min-width: 80px;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23edc170' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  background-size: 1.1rem;
}

.lang-dropdown:hover {
  background-color: rgba(237, 193, 112, 0.2);
  border-color: var(--border-secondary);
  box-shadow: 0 2px 8px var(--shadow-gold);
}

.lang-dropdown:focus {
  outline: none;
  border-color: var(--text-secondary);
  box-shadow: 0 0 0 2px var(--shadow-orange);
}

.lang-dropdown option {
  background: var(--bg-primary);
  color: var(--text-primary);
  padding: 0.5rem;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: transparent;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/assets/optimized/hero-background.jpg");
  background-color: var(--bg-primary);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* filter: blur(3px); */
  z-index: -1;
}

/* WebP support for modern browsers */
@supports (background-image: url("image.webp")) {
  .hero-background {
    background-image: url("/assets/images/hero-background.webp");
  }
}

.hero-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    #050707 0%,
    #32241c 30%,
    #6a3017 70%,
    #050707 100%
  );
  z-index: 3;
  opacity: 0.3;
}

.hero-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 30% 70%,
      rgba(225, 116, 43, 0.05) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 70% 30%,
      rgba(237, 193, 112, 0.05) 0%,
      transparent 40%
    );
  animation: glow 8s ease-in-out infinite alternate;
  z-index: 2;
  opacity: 0.1;
}

@keyframes glow {
  0% {
    opacity: 0.3;
    transform: scale(1);
  }
  100% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

.hero-content {
  text-align: center;
  z-index: 1;
  max-width: 800px;
  padding: 2rem;
  background: rgba(5, 7, 7, 0.4);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(237, 193, 112, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-title {
  font-family: "Lovelo", "Arial Black", "Helvetica Black", "Arial Bold",
    "Helvetica Bold", Arial, sans-serif;
  font-size: 4.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  position: relative;
  letter-spacing: 2px;
}

.title-base {
  font-family: "Lovelo", "Arial Black", "Helvetica Black", "Arial Bold",
    "Helvetica Bold", Arial, sans-serif;
  background: linear-gradient(135deg, #edc170, #e1742b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 4px rgba(255, 255, 255, 1), 0 0 20px rgba(255, 255, 255, 0.8),
    2px 2px 4px rgba(0, 0, 0, 1), 4px 4px 8px rgba(0, 0, 0, 0.8);
  position: relative;
  z-index: 1;
}

.title-flicker {
  font-family: "Lovelo", "Arial Black", "Helvetica Black", "Arial Bold",
    "Helvetica Bold", Arial, sans-serif;
  background: linear-gradient(135deg, #edc170, #e1742b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 10px rgba(255, 255, 255, 1),
    0 0 20px rgba(255, 255, 255, 0.8), 2px 2px 4px rgba(0, 0, 0, 1),
    4px 4px 8px rgba(0, 0, 0, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  animation: filmFlicker 0.15s infinite linear;
}

@keyframes filmFlicker {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0.3;
  }
  20% {
    opacity: 0;
  }
  30% {
    opacity: 0.2;
  }
  40% {
    opacity: 0;
  }
  50% {
    opacity: 0.4;
  }
  60% {
    opacity: 0;
  }
  70% {
    opacity: 0.1;
  }
  80% {
    opacity: 0;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    opacity: 0;
  }
}

.hero-subtitle {
  font-family: "Lora", Georgia, "Times New Roman", Times, serif;
  font-size: 1.6rem;
  color: #edc170;
  margin-bottom: 2rem;
  font-weight: 400;
  text-shadow: 0 0 10px rgba(237, 193, 112, 0.3);
  font-style: italic;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, #e1742b, #edc170);
  color: #050707;
  box-shadow: 0 4px 15px rgba(225, 116, 43, 0.4);
  border: 1px solid rgba(237, 193, 112, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(225, 116, 43, 0.6);
  text-shadow: 0 0 10px rgba(5, 7, 7, 0.5);
}

.btn-secondary {
  background: transparent;
  color: #edc170;
  border: 2px solid rgba(237, 193, 112, 0.4);
  box-shadow: 0 0 15px rgba(237, 193, 112, 0.2);
}

.btn-secondary:hover {
  background: rgba(237, 193, 112, 0.1);
  border-color: rgba(237, 193, 112, 0.6);
  box-shadow: 0 0 25px rgba(237, 193, 112, 0.4);
}

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

section h2 {
  font-family: "Lovelo", "Arial Black", "Helvetica Black", "Arial Bold",
    "Helvetica Bold", Arial, sans-serif;
  font-size: 3rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #edc170, #e1742b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(237, 193, 112, 0.3);
  letter-spacing: 1px;
}

/* About Section */
.about {
  background: rgba(50, 36, 28, 0.3);
  position: relative;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 20% 50%,
    rgba(225, 116, 43, 0.05) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.about-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-content p {
  font-family: "Lora", Georgia, "Times New Roman", Times, serif;
  font-size: 1.3rem;
  color: #edc170;
  margin-bottom: 3rem;
  text-shadow: 0 0 10px rgba(237, 193, 112, 0.2);
  line-height: 1.8;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
  justify-content: center;
}

.feature {
  background: rgba(5, 7, 7, 0.4);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(237, 193, 112, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  flex: 1;
  min-width: 250px;
  max-width: 350px;
}

.feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(237, 193, 112, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.feature:hover::before {
  left: 100%;
}

.feature:hover {
  transform: translateY(-5px);
  border-color: rgba(237, 193, 112, 0.4);
  box-shadow: 0 10px 30px rgba(225, 116, 43, 0.2);
}

.feature-icon {
  width: 100%;
  height: 200px;
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 0 10px rgba(237, 193, 112, 0.3));
}

.feature:hover .feature-icon img {
  transform: scale(1.05);
}

.feature h3 {
  font-family: "Lovelo", "Arial Black", "Helvetica Black", "Arial Bold",
    "Helvetica Bold", Arial, sans-serif;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #edc170;
  text-shadow: 0 0 10px rgba(237, 193, 112, 0.3);
  letter-spacing: 0.5px;
}

.feature p {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #edc170;
  opacity: 0.8;
  line-height: 1.6;
}

/* Events Section */
.events {
  background: rgba(106, 48, 23, 0.2);
  position: relative;
}

.events::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 80% 20%,
    rgba(237, 193, 112, 0.03) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.events-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  position: relative;
  z-index: 1;
  justify-content: center;
}

.event-card {
  background: rgba(5, 7, 7, 0.4);
  border-radius: 15px;
  border: 1px solid rgba(237, 193, 112, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 350px;
  max-width: 450px;
}

.event-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(225, 116, 43, 0.05) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.event-card:hover::before {
  transform: translateX(100%);
}

.event-card:hover {
  transform: translateY(-5px);
  border-color: rgba(237, 193, 112, 0.4);
  box-shadow: 0 10px 30px rgba(225, 116, 43, 0.2);
}

.event-image {
  width: 100%;
  height: 350px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 7, 7, 0.3);
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

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

.event-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.event-date {
  text-align: center;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.event-date .day {
  font-family: "Lovelo", "Arial Black", "Helvetica Black", "Arial Bold",
    "Helvetica Bold", Arial, sans-serif;
  display: block;
  font-size: 2.2rem;
  font-weight: 400;
  color: #e1742b;
  text-shadow: 0 0 15px rgba(225, 116, 43, 0.5);
  letter-spacing: 1px;
}

.event-date .month {
  font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
  display: block;
  font-size: 0.9rem;
  color: #edc170;
  text-transform: uppercase;
  opacity: 0.8;
  letter-spacing: 1px;
}

.event-details h3 {
  font-family: "Lora", Georgia, "Times New Roman", Times, serif;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: #edc170;
  text-shadow: 0 0 10px rgba(237, 193, 112, 0.3);
}

.event-details p {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #edc170;
  margin-bottom: 1rem;
  opacity: 0.8;
  line-height: 1.6;
}

.event-link {
  font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #e1742b;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  text-shadow: 0 0 10px rgba(225, 116, 43, 0.3);
  letter-spacing: 0.5px;
  align-self: flex-start;
}

.event-link:hover {
  color: #edc170;
  text-shadow: 0 0 15px rgba(237, 193, 112, 0.5);
}

/* Location Section */
.location {
  background: rgba(50, 36, 28, 0.3);
  position: relative;
}

.location::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 50% 80%,
    rgba(237, 193, 112, 0.03) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.location-details {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: flex-start;
  position: relative;
  z-index: 1;
  justify-content: space-between;
}

.location-info {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.location-map {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.location-info h3 {
  font-family: "Lovelo", "Arial Black", "Helvetica Black", "Arial Bold",
    "Helvetica Bold", Arial, sans-serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #edc170;
  text-shadow: 0 0 10px rgba(237, 193, 112, 0.3);
  letter-spacing: 0.5px;
}

.location-address {
  margin-bottom: 1.5rem;
}

.location-address p {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #edc170;
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.6;
}

.contact-info {
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #edc170;
  opacity: 0.9;
  font-size: 1rem;
}

.contact-icon {
  font-size: 1.1rem;
  opacity: 0.8;
}

.social-links {
  margin-bottom: 2rem;
}

.social-links h4 {
  font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #edc170;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  text-shadow: 0 0 10px rgba(237, 193, 112, 0.3);
}

.social-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-start;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1rem;
  background: rgba(5, 7, 7, 0.4);
  border: 1px solid rgba(237, 193, 112, 0.2);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(237, 193, 112, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.social-link:hover::before {
  left: 100%;
}

.social-link:hover {
  border-color: rgba(237, 193, 112, 0.4);
  box-shadow: 0 5px 15px rgba(225, 116, 43, 0.2);
  transform: translateY(-2px);
}

.social-icon {
  font-size: 1.2rem;
  opacity: 0.9;
}

.social-icon-img {
  width: 20px;
  height: 20px;
  opacity: 0.9;
  filter: brightness(1) contrast(1);
  transition: all 0.3s ease;
}

.social-text {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #edc170;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.social-link.instagram:hover {
  border-color: rgba(225, 116, 43, 0.6);
  box-shadow: 0 5px 15px rgba(225, 116, 43, 0.3);
}

.social-link.instagram:hover .social-icon-img {
  filter: brightness(1.2) contrast(1.1);
}

.social-link.whatsapp:hover {
  border-color: rgba(40, 65, 6, 0.8);
  box-shadow: 0 5px 15px rgba(40, 65, 6, 0.4);
}

.social-link.whatsapp:hover .social-icon-img {
  filter: brightness(1.2) contrast(1.1);
}

.location-description {
  font-family: "Lora", Georgia, "Times New Roman", Times, serif;
  color: #edc170;
  font-size: 1rem;
  opacity: 0.8;
  line-height: 1.6;
  margin-top: 1.5rem;
}

.google-map {
  width: 100%;
  height: 400px;
  border-radius: 15px;
  border: 1px solid rgba(237, 193, 112, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.google-map:hover {
  border-color: rgba(237, 193, 112, 0.4);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Private Events Section */
.private-events {
  background: rgba(50, 36, 28, 0.3);
  position: relative;
}

.private-events::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 60% 40%,
    rgba(237, 193, 112, 0.03) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.private-events-content {
  position: relative;
  z-index: 1;
}

.private-events-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.private-events-intro h3 {
  font-family: "Lovelo", "Arial Black", "Helvetica Black", "Arial Bold",
    "Helvetica Bold", Arial, sans-serif;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: #edc170;
  text-shadow: 0 0 10px rgba(237, 193, 112, 0.3);
  letter-spacing: 0.5px;
}

.private-events-intro p {
  font-family: "Lora", Georgia, "Times New Roman", Times, serif;
  font-size: 1.3rem;
  color: #edc170;
  line-height: 1.8;
  opacity: 0.9;
}

.event-types {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 4rem;
  justify-content: center;
}

.event-type {
  background: rgba(5, 7, 7, 0.4);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(237, 193, 112, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  flex: 1;
  min-width: 280px;
  max-width: 350px;
}

.event-type::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(237, 193, 112, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.event-type:hover::before {
  left: 100%;
}

.event-type:hover {
  transform: translateY(-5px);
  border-color: rgba(237, 193, 112, 0.4);
  box-shadow: 0 10px 30px rgba(225, 116, 43, 0.2);
}

.event-type-icon {
  text-align: center;
  margin-bottom: 1.5rem;
}

.event-type-icon {
  width: 100%;
  height: 200px;
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.event-type-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 0 10px rgba(237, 193, 112, 0.3));
}

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

/* WebP support for event type images */
@supports (background-image: url("image.webp")) {
  .event-type-icon img[src*="Wedding.jpg"] {
    content: url("./assets/optimized/events/Wedding.webp");
  }
  .event-type-icon img[src*="private_party.jpg"] {
    content: url("./assets/optimized/events/private_party.webp");
  }
  .event-type-icon img[src*="corporate.jpg"] {
    content: url("./assets/optimized/events/corporate.webp");
  }
  .event-type-icon img[src*="entertainment_events.jpg"] {
    content: url("./assets/optimized/events/entertainment_events.webp");
  }
}

.event-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 10px rgba(237, 193, 112, 0.3));
}

.event-type h4 {
  font-family: "Lovelo", "Arial Black", "Helvetica Black", "Arial Bold",
    "Helvetica Bold", Arial, sans-serif;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #edc170;
  text-shadow: 0 0 10px rgba(237, 193, 112, 0.3);
  letter-spacing: 0.5px;
  text-align: left;
}

.event-type p {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #edc170;
  opacity: 0.8;
  line-height: 1.6;
  text-align: left;
}

.venue-features {
  margin-bottom: 4rem;
}

.venue-features h3 {
  font-family: "Lovelo", "Arial Black", "Helvetica Black", "Arial Bold",
    "Helvetica Bold", Arial, sans-serif;
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #edc170;
  text-shadow: 0 0 10px rgba(237, 193, 112, 0.3);
  letter-spacing: 0.5px;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.venue-feature {
  background: rgba(5, 7, 7, 0.4);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(237, 193, 112, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  text-align: left;
  flex: 1;
  min-width: 250px;
  max-width: 300px;
}

.venue-feature:hover {
  border-color: rgba(237, 193, 112, 0.4);
  box-shadow: 0 8px 25px rgba(225, 116, 43, 0.2);
  transform: translateY(-3px);
}

.venue-feature .feature-icon {
  width: 100%;
  height: 150px;
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.venue-feature .feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 0 10px rgba(237, 193, 112, 0.3));
}

.venue-feature:hover .feature-icon img {
  transform: scale(1.05);
}

/* WebP support for venue feature images */
@supports (background-image: url("image.webp")) {
  .venue-feature .feature-icon img[src*="100_people.jpg"] {
    content: url("./assets/optimized/events/100_people.webp");
  }
  .venue-feature .feature-icon img[src*="equipment.jpg"] {
    content: url("./assets/optimized/events/equipment.webp");
  }
  .venue-feature .feature-icon img[src*="parking.jpg"] {
    content: url("./assets/optimized/events/parking.webp");
  }
}

.venue-feature h5 {
  font-family: "Lovelo", "Arial Black", "Helvetica Black", "Arial Bold",
    "Helvetica Bold", Arial, sans-serif;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #edc170;
  text-shadow: 0 0 10px rgba(237, 193, 112, 0.3);
  letter-spacing: 0.5px;
}

.venue-feature p {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #edc170;
  opacity: 0.8;
  line-height: 1.6;
}

.inquiry-section {
  background: rgba(5, 7, 7, 0.4);
  border-radius: 20px;
  border: 1px solid rgba(237, 193, 112, 0.2);
  padding: 3rem;
  backdrop-filter: blur(10px);
  text-align: center;
}

.inquiry-content h3 {
  font-family: "Lovelo", "Arial Black", "Helvetica Black", "Arial Bold",
    "Helvetica Bold", Arial, sans-serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #edc170;
  text-shadow: 0 0 10px rgba(237, 193, 112, 0.3);
  letter-spacing: 0.5px;
}

.inquiry-content p {
  font-family: "Lora", Georgia, "Times New Roman", Times, serif;
  font-size: 1.2rem;
  color: #edc170;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  opacity: 0.9;
}

.inquiry-methods {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.inquiry-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  min-width: 140px;
  justify-content: center;
}

.inquiry-btn.primary {
  background: linear-gradient(135deg, #e1742b, #edc170);
  color: #050707;
  box-shadow: 0 4px 15px rgba(225, 116, 43, 0.4);
  border: 1px solid rgba(237, 193, 112, 0.3);
}

.inquiry-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(225, 116, 43, 0.6);
}

.inquiry-btn.secondary {
  background: transparent;
  color: #edc170;
  border: 2px solid rgba(237, 193, 112, 0.4);
  box-shadow: 0 0 15px rgba(237, 193, 112, 0.2);
}

.inquiry-btn.secondary:hover {
  background: rgba(237, 193, 112, 0.1);
  border-color: rgba(237, 193, 112, 0.6);
  box-shadow: 0 0 25px rgba(237, 193, 112, 0.4);
}

.inquiry-btn.whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.inquiry-btn.whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.inquiry-btn.whatsapp:hover .btn-icon-img {
  filter: brightness(1.2) contrast(1.1);
}

.btn-icon {
  font-size: 1.2rem;
}

.btn-icon-img {
  width: 20px;
  height: 20px;
  opacity: 0.9;
  filter: brightness(1) contrast(1);
  transition: all 0.3s ease;
}

/* Contact Section */
.contact {
  background: rgba(106, 48, 23, 0.2);
  position: relative;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 20% 30%,
    rgba(237, 193, 112, 0.03) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.contact-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.contact-info h3 {
  font-family: "Lovelo", "Arial Black", "Helvetica Black", "Arial Bold",
    "Helvetica Bold", Arial, sans-serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #edc170;
  text-shadow: 0 0 10px rgba(237, 193, 112, 0.3);
  letter-spacing: 0.5px;
}

.contact-info p {
  font-family: "Lora", Georgia, "Times New Roman", Times, serif;
  color: #edc170;
  margin-bottom: 2rem;
  font-size: 1.2rem;
  opacity: 0.8;
  line-height: 1.8;
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.contact-method {
  background: rgba(5, 7, 7, 0.4);
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid rgba(237, 193, 112, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  flex: 1;
  min-width: 200px;
  max-width: 300px;
}

.contact-method:hover {
  border-color: rgba(237, 193, 112, 0.4);
  box-shadow: 0 5px 20px rgba(225, 116, 43, 0.2);
}

.contact-method h4 {
  font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #e1742b;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 10px rgba(225, 116, 43, 0.3);
  letter-spacing: 0.5px;
}

.contact-method p {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #edc170;
  margin: 0;
  opacity: 0.8;
}

.contact-method a {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #e1742b;
  text-decoration: none;
  text-shadow: 0 0 10px rgba(225, 116, 43, 0.3);
}

.contact-method a:hover {
  color: #edc170;
  text-shadow: 0 0 15px rgba(237, 193, 112, 0.5);
}

/* Footer */
.footer {
  background: rgba(5, 7, 7, 0.95);
  border-top: 1px solid rgba(237, 193, 112, 0.2);
  padding: 3rem 0 1rem;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 80% 20%,
    rgba(225, 116, 43, 0.03) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  justify-content: center;
}

.footer-section h3 {
  font-family: "Lovelo", "Arial Black", "Helvetica Black", "Arial Bold",
    "Helvetica Bold", Arial, sans-serif;
  color: #edc170;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(237, 193, 112, 0.3);
  letter-spacing: 0.5px;
}

.footer-section h4 {
  font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #edc170;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(237, 193, 112, 0.3);
  letter-spacing: 0.5px;
}

.footer-section p {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #edc170;
  opacity: 0.8;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #edc170;
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.footer-section ul li a:hover {
  color: #e1742b;
  opacity: 1;
  text-shadow: 0 0 10px rgba(225, 116, 43, 0.3);
}

.footer-link {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #e1742b;
  text-decoration: none;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(225, 116, 43, 0.3);
}

.footer-link:hover {
  color: #edc170;
  text-shadow: 0 0 15px rgba(237, 193, 112, 0.5);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(237, 193, 112, 0.2);
  color: #edc170;
  opacity: 0.8;
  position: relative;
  z-index: 1;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Enhanced Responsive Design */
/* ========================================
   RESPONSIVE DESIGN SYSTEM
   Mobile-first approach with clean breakpoints
   ======================================== */

/* ========================================
   BREAKPOINTS:
   - Mobile: 320px - 767px (default)
   - Tablet: 768px - 1023px
   - Desktop: 1024px+ (default desktop styles)
   ======================================== */

/* ========================================
   TABLET STYLES (768px - 1023px)
   ======================================== */
@media (min-width: 768px) and (max-width: 1023px) {
  /* Typography adjustments */
  .hero-title {
    font-size: 3.5rem;
  }

  .hero-subtitle {
    font-size: 1.4rem;
  }

  section h2 {
    font-size: 2.8rem;
  }

  /* Layout adjustments */
  .events-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .features {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .event-types {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  /* Component adjustments */
  .event-image {
    height: 280px;
  }

  .feature-icon {
    height: 180px;
  }

  .google-map {
    height: 350px;
  }
}

/* ========================================
   MOBILE STYLES (320px - 767px)
   ======================================== */
@media (max-width: 767px) {
  /* ========================================
     NAVIGATION & HEADER
     ======================================== */
  .nav-menu {
    display: none;
  }

  .language-selector {
    margin-left: 1rem;
  }

  .lang-dropdown {
    min-width: 70px;
    font-size: 0.8rem;
    padding: 0.4rem 1.8rem 0.4rem 0.8rem;
    background-size: 1.2rem;
    background-position: right 0.4rem center;
  }

  .nav-container {
    padding: 0 15px;
  }

  .logo h1 {
    font-size: 2rem;
  }

  /* ========================================
     HERO SECTION
     ======================================== */
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .hero-logo {
    height: 100px;
  }

  .logo-image {
    height: 45px;
  }

  /* ========================================
     TYPOGRAPHY & SECTIONS
     ======================================== */
  section {
    padding: 60px 0;
  }

  section h2 {
    font-size: 2.5rem;
  }

  .about-content p {
    font-size: 1.1rem;
  }

  /* ========================================
     EVENTS SECTION
     ======================================== */
  .events-grid {
    flex-direction: column;
    align-items: center;
  }

  .event-card {
    flex-direction: column;
    text-align: center;
    flex: 1;
    min-width: 350px;
    max-width: 450px;
  }

  .event-image {
    height: 250px;
  }

  .event-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .event-date {
    margin-bottom: 1rem;
    text-align: center;
  }

  .event-details {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .event-details h3 {
    text-align: center;
    font-size: 1.2rem;
  }

  .event-details p {
    text-align: center;
  }

  .event-link {
    text-align: center;
    display: inline-block;
    margin: 0 auto;
    align-self: center;
  }

  /* ========================================
     FEATURES SECTION
     ======================================== */
  .features {
    flex-direction: column;
    align-items: center;
  }

  .feature-icon {
    height: 150px;
  }

  /* ========================================
     LOCATION SECTION
     ======================================== */
  .location-details {
    flex-direction: column;
    align-items: stretch;
    gap: 2rem;
  }

  .location-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .location-info h3 {
    text-align: center;
    font-size: 1.5rem;
  }

  .location-address {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .location-address p {
    text-align: center;
  }

  .contact-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .contact-item {
    justify-content: center;
  }

  .contact-info h3 {
    font-size: 1.5rem;
  }

  .social-links {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .social-links h4 {
    text-align: center;
    font-size: 1rem;
  }

  .social-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .social-link {
    padding: 0.7rem 0.8rem;
  }

  .location-description {
    text-align: center;
  }

  .google-map {
    height: 300px;
  }

  /* ========================================
     PRIVATE EVENTS SECTION
     ======================================== */
  .event-types {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .features-grid {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .inquiry-methods {
    flex-direction: column;
    align-items: center;
  }

  .inquiry-btn {
    width: 100%;
    max-width: 300px;
  }

  .private-events-intro h3 {
    font-size: 1.8rem;
  }

  .private-events-intro p {
    font-size: 1.1rem;
  }

  .venue-features h3 {
    font-size: 1.8rem;
  }

  .event-type {
    padding: 1.5rem;
  }

  .event-icon {
    font-size: 2.5rem;
  }

  .event-type-icon {
    height: 180px;
  }

  .event-type h4 {
    font-size: 1.2rem;
  }

  .venue-feature {
    padding: 1.5rem;
  }

  .venue-feature .feature-icon {
    font-size: 2rem;
  }

  .venue-feature h5 {
    font-size: 1.1rem;
  }

  .inquiry-section {
    padding: 2rem;
  }

  .inquiry-content h3 {
    font-size: 1.6rem;
  }

  .inquiry-content p {
    font-size: 1rem;
  }

  /* ========================================
     CONTACT METHODS
     ======================================== */
  .contact-methods {
    flex-direction: column;
    align-items: center;
  }
}

/* ========================================
   SMALL MOBILE STYLES (320px - 479px)
   ======================================== */
@media (max-width: 479px) {
  .container {
    padding: 0 15px;
  }

  .language-selector {
    margin-left: 0.5rem;
  }

  .lang-dropdown {
    min-width: 65px;
    font-size: 0.75rem;
    padding: 0.35rem 1.6rem 0.35rem 0.7rem;
    background-size: 1.1rem;
    background-position: right 0.3rem center;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .event-card {
    flex-direction: column;
    text-align: center;
  }

  .event-date {
    margin-bottom: 1rem;
  }

  .nav-container {
    padding: 0 15px;
  }

  .logo h1 {
    font-size: 2rem;
  }

  section h2 {
    font-size: 2rem;
  }

  .about-content p {
    font-size: 1.1rem;
  }

  .event-details h3 {
    font-size: 1.2rem;
  }

  .contact-info h3 {
    font-size: 1.5rem;
  }

  .social-links h4 {
    font-size: 1rem;
  }

  .social-text {
    font-size: 0.8rem;
  }

  .location-info h3 {
    font-size: 1.5rem;
  }

  .private-events-intro h3 {
    font-size: 1.6rem;
  }

  .private-events-intro p {
    font-size: 1rem;
  }

  .event-type {
    padding: 1.5rem;
  }

  .event-icon {
    font-size: 2.5rem;
  }

  .event-type-icon {
    height: 150px;
  }

  .event-type h4 {
    font-size: 1.2rem;
  }

  .venue-feature {
    padding: 1.5rem;
  }

  .venue-feature .feature-icon {
    font-size: 2rem;
  }

  .venue-feature h5 {
    font-size: 1.1rem;
  }

  .inquiry-section {
    padding: 2rem;
  }

  .inquiry-content h3 {
    font-size: 1.6rem;
  }

  .inquiry-content p {
    font-size: 1rem;
  }
}

/* ========================================
   EXTRA SMALL MOBILE STYLES (320px and below)
   ======================================== */
@media (max-width: 319px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .logo h1 {
    font-size: 1.8rem;
  }

  section h2 {
    font-size: 1.8rem;
  }

  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}

.logo-image {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  transition: all 0.3s ease;
}

.logo-image:hover {
  filter: drop-shadow(0 4px 8px rgba(237, 193, 112, 0.4));
  transform: scale(1.05);
}

.hero-logo {
  height: 120px;
  width: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 12px rgba(237, 193, 112, 0.6));
  animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
  0% {
    filter: drop-shadow(0 4px 12px rgba(237, 193, 112, 0.6));
  }
  100% {
    filter: drop-shadow(0 6px 20px rgba(237, 193, 112, 0.8));
  }
}

.footer-logo-image {
  height: 60px;
  width: auto;
  margin-bottom: 15px;
  filter: drop-shadow(0 2px 6px rgba(237, 193, 112, 0.4));
  transition: all 0.3s ease;
  /* Debug: ensure no background */
  background: transparent !important;
}

.footer-logo-image:hover {
  filter: drop-shadow(0 4px 10px rgba(237, 193, 112, 0.6));
  transform: scale(1.1);
}
