/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
}
h2 {
  font-size: 3rem;
}
h3 {
  font-size: 2.5rem;
}
h4 {
  font-size: 2rem;
}
h5 {
  font-size: 1.5rem;
}
h6 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  color: #666;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(45deg, #d4a574, #b8956a);
  color: #fff;
  box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(45deg, #b8956a, #a08760);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #d4a574;
}

.btn-outline:hover {
  background: #d4a574;
  color: #fff;
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

/* Images */
.img-fluid {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hide {
  opacity: 0;
  visibility: hidden;
}

.loading-content {
  text-align: center;
  color: #fff;
}

.loading-logo {
  margin-bottom: 30px;
}

.loading-logo-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  animation: logoFloat 2s ease-in-out infinite;
}

.loading-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: #d4a574;
  margin: 0;
  font-weight: 600;
}

.loading-spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0;
  position: relative;
  width: 60px;
  height: 60px;
  margin: 30px auto;
}

.spinner-ring {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 3px solid transparent;
  border-top: 3px solid #d4a574;
  border-radius: 50%;
  animation: spin 1.5s linear infinite;
}

.spinner-ring:nth-child(2) {
  width: 45px;
  height: 45px;
  border-top: 3px solid rgba(212, 165, 116, 0.6);
  animation-delay: -0.3s;
  animation-duration: 1.2s;
}

.spinner-ring:nth-child(3) {
  width: 30px;
  height: 30px;
  border-top: 3px solid rgba(212, 165, 116, 0.3);
  animation-delay: -0.6s;
  animation-duration: 0.9s;
}

.loading-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  margin: 0;
  animation: textPulse 1.5s ease-in-out infinite;
}

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

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes textPulse {
  0%,
  100% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
}

/* Section Spacing */
section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  display: inline-block;
  color: #d4a574;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.section-title {
  color: #2c2c2c;
  font-size: 3rem;
  margin-bottom: 20px;
}

.section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar {
  padding: 15px 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  height: 50px;
  width: 50px;
  object-fit: cover;
  border-radius: 50%;
}

.brand-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #2c2c2c;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
}

.nav-link {
  text-decoration: none;
  color: #2c2c2c;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #d4a574;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #d4a574;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: #2c2c2c;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

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

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

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.5)),
    radial-gradient(circle at center, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-text {
  text-align: center;
  color: #fff;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.3);
  padding: 40px 30px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 165, 116, 0.3);
  border: 1px solid rgba(212, 165, 116, 0.5);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 25px;
  backdrop-filter: blur(15px);
  animation: fadeInDown 1s ease-out 0.2s both;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-badge i {
  color: #d4a574;
  font-size: 0.9rem;
}

.hero-badge span {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.hero-title {
  font-size: 4.5rem;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease-out 0.4s both;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
  font-weight: 700;
}

.highlight {
  color: #d4a574;
  position: relative;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 165, 116, 0.3);
}

.typing-text::after {
  content: '|';
  color: #d4a574;
  animation: blink 1s infinite;
  margin-left: 2px;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.95);
  animation: fadeInUp 1s ease-out 0.6s both;
  line-height: 1.6;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.5);
  font-weight: 400;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 40px 0;
  animation: fadeInUp 1s ease-out 0.8s both;
  background: rgba(0, 0, 0, 0.3);
  padding: 25px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #d4a574;
  font-family: 'Cormorant Garamond', serif;
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease-out 1s both;
}

.hero-buttons .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.hero-buttons .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hero-buttons .btn i {
  font-size: 1rem;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  animation: fadeInUp 1s ease-out 1.2s both;
  background: rgba(0, 0, 0, 0.2);
  padding: 15px 25px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 30px;
}

.hero-features .feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.hero-features .feature i {
  color: #d4a574;
  font-size: 1rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 0.9rem;
  text-align: center;
  animation: bounce 2s infinite;
}

.scroll-text {
  display: block;
  margin-bottom: 10px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
}

.scroll-indicator i {
  font-size: 1.2rem;
  color: #d4a574;
}

/* About Section */
.about {
  background: #f8f9fa;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.about-text h3 {
  color: #2c2c2c;
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 20px;
  line-height: 1.8;
}

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

.feature-item {
  text-align: center;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-10px);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #d4a574, #b8956a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: #fff;
}

.feature-item h4 {
  margin-bottom: 15px;
  color: #2c2c2c;
}

/* Menu Section */
.menu {
  position: relative;
  color: #fff;
}

.menu .section-header .section-title {
  color: #fff;
}

.menu-downloads {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.menu-download-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #d4a574;
  color: #fff;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.menu-download-btn:hover {
  background: #d4a574;
  color: #fff;
  transform: translateY(-2px);
}

.menu-download-btn i {
  font-size: 0.9rem;
}

.menu-categories {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.menu-item {
  padding: 10px 25px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #fff;
  font-weight: 500;
}

.menu-item:hover,
.menu-item.active {
  background: #d4a574;
  transform: translateY(-2px);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.menu-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-10px);
}

.menu-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.menu-info {
  padding: 25px;
  color: #2c2c2c;
}

.menu-info h4 {
  margin-bottom: 10px;
  color: #2c2c2c;
}

.menu-info p {
  margin-bottom: 15px;
  color: #666;
}

.price {
  font-size: 1.5rem;
  font-weight: 600;
  color: #d4a574;
}

/* Chef's Special Section */
.chef-special {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.chef-special::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(212,165,116,0.1)"/></svg>')
    repeat;
  opacity: 0.3;
  animation: float 20s linear infinite;
}

.section-description {
  max-width: 600px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
}

.special-content {
  position: relative;
  max-width: 1000px;
  margin: 0 auto 40px;
}

.special-dish {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.special-dish.active {
  display: grid;
  opacity: 1;
  transform: translateY(0);
}

.dish-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.dish-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.dish-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(212, 165, 116, 0.9);
  color: #fff;
  padding: 8px 15px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 5px;
}

.dish-details {
  padding: 20px 0;
}

.dish-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
}

.dish-header h3 {
  color: #2c2c2c;
  font-size: 2.2rem;
  margin: 0;
  flex: 1;
}

.dish-price {
  font-size: 2rem;
  font-weight: 700;
  color: #d4a574;
  font-family: 'Cormorant Garamond', serif;
}

.dish-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 25px;
}

.dish-features {
  display: flex;
  gap: 25px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.dish-features .feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #555;
  font-size: 0.95rem;
}

.dish-features .feature i {
  color: #d4a574;
  font-size: 1.1rem;
}

.dish-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.dish-actions .btn {
  padding: 12px 25px;
  font-size: 1rem;
}

.share-btn {
  border: 2px solid #d4a574;
  color: #d4a574;
  background: transparent;
}

.share-btn:hover {
  background: #d4a574;
  color: #fff;
}

.special-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 50px;
}

.special-nav-btn {
  width: 50px;
  height: 50px;
  border: 2px solid #d4a574;
  background: transparent;
  border-radius: 50%;
  color: #d4a574;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.special-nav-btn:hover {
  background: #d4a574;
  color: #fff;
  transform: scale(1.1);
}

.special-indicators {
  display: flex;
  gap: 12px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(212, 165, 116, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active,
.indicator:hover {
  background: #d4a574;
  transform: scale(1.3);
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 1;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.gallery-overlay i {
  color: #fff;
  font-size: 2rem;
}

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

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

/* Events Section */
.events {
  position: relative;
  color: #fff;
}

.events .section-header .section-title {
  color: #fff;
}

.event-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 50px;
  max-width: 800px;
  margin: 0 auto;
  color: #2c2c2c;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.event-date {
  margin-bottom: 20px;
}

.time {
  font-size: 1.2rem;
  font-weight: 600;
  color: #d4a574;
}

.day {
  color: #666;
  margin-left: 10px;
}

.event-card h3 {
  margin-bottom: 20px;
  color: #2c2c2c;
}

.countdown {
  display: flex;
  gap: 20px;
  margin: 30px 0;

  flex-wrap: wrap;
}

.time-unit {
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 20px 15px;
  min-width: 80px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.time-unit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 165, 116, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.time-unit:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.time-unit:hover::before {
  left: 100%;
}

.time-unit .number {
  display: block;
  font-size: 2.8rem;
  font-weight: 700;
  color: #d4a574;
  line-height: 1;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.time-unit:hover .number {
  color: #b8935f;
  transform: scale(1.1);
}

.time-unit .label {
  font-size: 0.85rem;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.event-live {
  background: linear-gradient(135deg, #d4a574, #b8935f);
  color: white;
  padding: 20px 40px;
  border-radius: 25px;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 10px 30px rgba(212, 165, 116, 0.4);
  animation: pulse 2s infinite;
}

.countdown.urgent .time-unit {
  animation: urgentPulse 1s ease-in-out infinite alternate;
}

.countdown.urgent .time-unit:nth-child(1) {
  animation-delay: 0s;
}
.countdown.urgent .time-unit:nth-child(2) {
  animation-delay: 0.2s;
}
.countdown.urgent .time-unit:nth-child(3) {
  animation-delay: 0.4s;
}
.countdown.urgent .time-unit:nth-child(4) {
  animation-delay: 0.6s;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.6);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.4);
  }
}

@keyframes urgentPulse {
  0% {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  }
  100% {
    background: rgba(255, 245, 235, 0.95);
    box-shadow: 0 12px 35px rgba(212, 165, 116, 0.3);
  }
}

/* Reservation Section */
.reservation {
  background: #f8f9fa;
}

.reservation-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
}

.form-description {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin: 15px 0 30px;
}

.booking-form {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #2c2c2c;
}

.required {
  color: #e74c3c;
  margin-left: 3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d4a574;
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e74c3c;
  background-color: rgba(231, 76, 60, 0.05);
}

.form-group input.success,
.form-group select.success,
.form-group textarea.success {
  border-color: #27ae60;
  background-color: rgba(39, 174, 96, 0.05);
}

.form-feedback {
  margin-top: 5px;
  font-size: 0.875rem;
  color: #e74c3c;
  display: none;
}

.form-feedback.show {
  display: block;
}

.form-feedback.success {
  color: #27ae60;
}

.form-terms {
  margin: 25px 0;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1.5;
}

.checkbox-container input[type='checkbox'] {
  width: auto;
  margin: 0;
  display: none;
}

.checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid #ddd;
  border-radius: 3px;
  position: relative;
  margin-top: 2px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.checkbox-container input[type='checkbox']:checked + .checkmark {
  background: #d4a574;
  border-color: #d4a574;
}

.checkbox-container input[type='checkbox']:checked + .checkmark::after {
  content: '✓';
  color: white;
  position: absolute;
  top: -1px;
  left: 3px;
  font-size: 12px;
  font-weight: bold;
}

.terms-link,
.privacy-link {
  color: #d4a574;
  text-decoration: none;
}

.terms-link:hover,
.privacy-link:hover {
  text-decoration: underline;
}

.availability-status {
  margin: 20px 0;
  padding: 15px;
  border-radius: 10px;
  font-weight: 500;
  text-align: center;
  display: none;
}

.availability-status.available {
  background: rgba(39, 174, 96, 0.1);
  color: #27ae60;
  border: 1px solid rgba(39, 174, 96, 0.3);
  display: block;
}

.availability-status.unavailable {
  background: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.3);
  display: block;
}

.btn-full {
  position: relative;
  overflow: hidden;
}

.btn-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.loader-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.reservation-info {
  position: sticky;
  top: 100px;
}

.info-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.info-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.info-content {
  padding: 30px;
}

.info-content h3 {
  color: #2c2c2c;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.info-features {
  margin-bottom: 25px;
}

.info-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: #555;
}

.info-feature i {
  color: #d4a574;
  font-size: 1.1rem;
  width: 16px;
}

.contact-info {
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.contact-info h4 {
  color: #2c2c2c;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.contact-info p {
  margin-bottom: 5px;
  font-size: 0.95rem;
}

.contact-info a {
  color: #d4a574;
  text-decoration: none;
  font-weight: 500;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Testimonials Section */
.testimonials {
  background: #2c2c2c;
  color: #fff;
}

.testimonials .section-header .section-title {
  color: #fff;
}

.testimonials-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.testimonial {
  display: none;
  text-align: center;
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.5s ease;
}

.testimonial.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

.testimonial-content {
  background: rgba(255, 255, 255, 0.05);
  padding: 50px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.quote-icon {
  font-size: 3rem;
  color: #d4a574;
  margin-bottom: 20px;
  opacity: 0.3;
}

.testimonial-content p {
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
}

.testimonial-rating {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-bottom: 30px;
}

.testimonial-rating i {
  color: #d4a574;
  font-size: 1.2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #d4a574;
}

.author-info h4 {
  margin-bottom: 5px;
  color: #fff;
}

.author-info span {
  color: #d4a574;
  font-size: 0.9rem;
}

.testimonials-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
}

.testimonial-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid rgba(212, 165, 116, 0.5);
  background: rgba(212, 165, 116, 0.1);
  color: #d4a574;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-btn:hover {
  background: #d4a574;
  color: #fff;
  transform: scale(1.1);
  border-color: #d4a574;
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(212, 165, 116, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
  background: #d4a574;
  transform: scale(1.2);
}

/* Contact Section */
.contact {
  position: relative;
  color: #fff;
}

.contact .section-header .section-title {
  color: #fff;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 20px;
  color: #2c2c2c;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.contact-info h3 {
  margin-bottom: 30px;
  color: #2c2c2c;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-item i {
  color: #d4a574;
  font-size: 1.5rem;
  margin-top: 5px;
}

.contact-item h4 {
  margin-bottom: 5px;
  color: #2c2c2c;
}

.contact-item p {
  color: #666;
  margin: 0;
}

.contact-form {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 20px;
  color: #2c2c2c;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.contact-form h3 {
  margin-bottom: 30px;
  color: #2c2c2c;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
  background: #f8f9fa;
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: #fff;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-logo {
  height: 50px;
  width: 50px;
  object-fit: cover;
  border-radius: 50%;
}

.footer-brand h3 {
  color: #d4a574;
  margin: 0;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.footer-section h4 {
  margin-bottom: 20px;
  color: #d4a574;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: #d4a574;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.social-link:hover {
  transform: translateY(-3px);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #d4a574;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 25px;
  background: #333;
  color: #fff;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
  padding: 12px 20px;
  border-radius: 25px;
  border: none;
  background: #d4a574;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: #b8956a;
  transform: translateY(-2px);
}

/* Social Media Integration */
.social-feed {
  margin-top: 20px;
}

.social-post {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 15px;
  backdrop-filter: blur(10px);
}

.post-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: #d4a574;
  font-weight: 500;
  font-size: 0.9rem;
}

.post-header i {
  font-size: 1.1rem;
}

.social-post p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.9);
}

.post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.post-actions {
  display: flex;
  gap: 10px;
}

.action-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  font-size: 0.8rem;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 4px;
}

.action-btn:hover {
  color: #d4a574;
}

.social-share {
  margin-top: 15px;
}

.share-buttons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.share-btn {
  width: 35px;
  height: 35px;
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.share-btn.facebook {
  background: #1877f2;
}

.share-btn.twitter {
  background: #000;
}

.share-btn.whatsapp {
  background: #25d366;
}

.share-btn.linkedin {
  background: #0077b5;
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Floating Social Media Bar */
.floating-social {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-social .social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.floating-social .social-link.facebook {
  background: #1877f2;
}

.floating-social .social-link.instagram {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
}

.floating-social .social-link.twitter {
  background: #000;
}

.floating-social .social-link.tiktok {
  background: #000;
}

.floating-social .social-link:hover {
  transform: translateX(-5px) scale(1.1);
}

@media (max-width: 768px) {
  .floating-social {
    display: none;
  }
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 40px 0 20px;
}

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

.footer-bottom-content p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #d4a574;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #d4a574;
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #b8956a;
  transform: translateY(-3px);
}

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

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

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-10px) translateX(-50%);
  }
  60% {
    transform: translateY(-5px) translateX(-50%);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Scroll Animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal.slide-left {
  transform: translateX(-50px);
}

.scroll-reveal.slide-left.revealed {
  transform: translateX(0);
}

.scroll-reveal.slide-right {
  transform: translateX(50px);
}

.scroll-reveal.slide-right.revealed {
  transform: translateX(0);
}

.scroll-reveal.zoom-in {
  transform: scale(0.8);
}

.scroll-reveal.zoom-in.revealed {
  transform: scale(1);
}

.scroll-reveal.fade-up {
  transform: translateY(30px);
}

.scroll-reveal.fade-up.revealed {
  transform: translateY(0);
}

/* Staggered animations for groups */
.scroll-reveal.delay-1 {
  transition-delay: 0.1s;
}

.scroll-reveal.delay-2 {
  transition-delay: 0.2s;
}

.scroll-reveal.delay-3 {
  transition-delay: 0.3s;
}

.scroll-reveal.delay-4 {
  transition-delay: 0.4s;
}

.scroll-reveal.delay-5 {
  transition-delay: 0.5s;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  /* Navigation */
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 40px 0;
    backdrop-filter: blur(20px);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }

  .nav-menu .btn {
    margin: 0 auto;
    padding: 12px 25px;
    font-size: 0.95rem;
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Typography */
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2.2rem;
  }
  h3 {
    font-size: 2rem;
  }

  /* Hero Section Mobile */
  .hero {
    min-height: 100vh;
    height: auto;
    padding: 100px 0 50px;
  }

  .hero-title {
    font-size: 3rem;
    line-height: 1.1;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.9), 0 0 15px rgba(0, 0, 0, 0.6);
    margin-bottom: 15px;
  }

  .hero-text {
    padding: 20px 15px;
    margin: 0 10px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    max-width: calc(100% - 20px);
  }

  .section-title {
    font-size: 2.2rem;
  }

  /* Hero */
  .hero-badge {
    font-size: 0.8rem;
    padding: 6px 15px;
    margin-bottom: 20px;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.9), 0 0 8px rgba(0, 0, 0, 0.6);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
  }

  .hero-stats {
    gap: 20px;
    margin: 25px 0;
    padding: 15px 10px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 12px 20px;
  }

  .hero-features {
    gap: 20px;
    justify-content: center;
    padding: 12px 15px;
    flex-wrap: wrap;
  }

  .hero-features .feature {
    font-size: 0.85rem;
  }

  /* Loading Screen */
  .loading-brand {
    font-size: 2rem;
  }

  .loading-logo-img {
    width: 60px;
    height: 60px;
  }

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

  /* About */
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .about-text {
    order: 2;
  }

  .about-image {
    order: 1;
  }

  /* Features */
  .features {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .feature-item {
    padding: 30px 15px;
  }

  /* Chef's Special */
  .special-dish {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .dish-image {
    order: 1;
  }

  .dish-details {
    order: 2;
    padding: 0;
  }

  .dish-header {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }

  .dish-header h3 {
    font-size: 1.8rem;
  }

  .dish-price {
    font-size: 1.6rem;
  }

  .dish-features {
    justify-content: center;
    gap: 15px;
  }

  .dish-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .special-navigation {
    gap: 20px;
    margin-top: 30px;
  }

  .special-nav-btn {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }

  /* Menu */
  .menu-downloads {
    gap: 15px;
    margin-top: 20px;
  }

  .menu-download-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .menu-categories {
    gap: 15px;
  }

  .menu-item {
    padding: 8px 20px;
    font-size: 0.9rem;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
  }

  /* Events */
  .event-card {
    padding: 30px 20px;
    margin: 0 10px;
  }

  .countdown {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 25px 0;
  }

  .time-unit {
    min-width: 70px;
    padding: 15px 12px;
    border-radius: 12px;
  }

  .time-unit .number {
    font-size: 2.2rem;
    margin-bottom: 6px;
  }

  .time-unit .label {
    font-size: 0.75rem;
    letter-spacing: 1px;
  }

  .event-live {
    font-size: 1.2rem;
    padding: 15px 30px;
    border-radius: 20px;
    margin: 0 10px;
  }

  /* Testimonials */
  .testimonials-wrapper {
    margin: 0 15px;
  }

  .testimonial-content {
    padding: 30px 20px;
  }

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

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

  .testimonial-author {
    flex-direction: column;
    gap: 15px;
  }

  .testimonials-nav {
    padding: 0 10px;
  }

  .testimonial-btn {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }

  /* Reservation */
  .reservation-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .booking-form {
    padding: 30px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

  .info-card {
    order: -1;
  }

  .info-content {
    padding: 25px;
  }

  .info-features {
    text-align: left;
  }

  /* Contact */
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info,
  .contact-form {
    padding: 30px 20px;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 15px;
  }

  .social-links {
    justify-content: center;
  }

  /* Back to top */
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }

  /* Section spacing */
  section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  section {
    padding: 60px 0;
  }

  .hero {
    padding: 80px 0 40px;
    min-height: 100vh;
  }

  .hero-text {
    padding: 15px 10px;
    margin: 0 5px;
    max-width: calc(100% - 10px);
  }

  .hero-title {
    font-size: 2.5rem;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.9), 0 0 12px rgba(0, 0, 0, 0.7);
    margin-bottom: 12px;
  }

  .hero-subtitle {
    font-size: 1rem;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.9), 0 0 6px rgba(0, 0, 0, 0.7);
    margin-bottom: 15px;
    line-height: 1.4;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 5px 12px;
    margin-bottom: 15px;
  }

  .hero-stats {
    gap: 15px;
    margin: 20px 0;
    padding: 10px 5px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }

  .hero-buttons .btn {
    max-width: 260px;
    padding: 10px 18px;
    font-size: 0.9rem;
  }

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

  .event-card,
  .booking-form,
  .contact-info,
  .contact-form {
    padding: 25px 15px;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}
