/* ====== VARIABLES ====== */
:root {
  /* Elegant black and white color palette */
  --cream: #f8f9fa;
  --primary: #000000;
  --primary-light: #333333;
  --primary-dark: #000000;
  --accent: #000000;
  --accent-light: #333333;
  --secondary: #e2e8f0;
  --secondary-light: #f8fafc;
  --black: #000000;
  --gray-light: #f5f7fa;
  --gray: #666666;
  --white-glow: #ffffff;
  --white-door: #ffffff;

  /* Ambient lighting colors */
  --ambient-glow-1: rgba(255, 255, 255, 0.6);
  --ambient-glow-2: rgba(255, 255, 255, 0.4);
  --ambient-glow-3: rgba(255, 255, 255, 0.2);

  /* Legacy colors (some still used in transitions) */
  --brown-light: var(--secondary);
  --brown-medium: var(--primary);
  --brown-dark: var(--primary-dark);
  --gold: var(--accent);
  --gold-neon: var(--white-glow);

  --font-primary: 'Playfair Display', serif;
  --font-secondary: 'Poppins', sans-serif;

  --transition-fast: 0.3s;
  --transition-medium: 0.5s;
  --transition-slow: 1.2s;
}

/* ====== TYPOGRAPHIC LOGO STYLING ====== */
.hd-logo-typography {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-image: url('images/hd-logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
  margin-right: 5px;
  position: relative;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
  transition: all 0.3s ease;
}

.hd-logo-typography.large {
  width: 60px;
  height: 60px;
  margin-right: 10px;
}

.hd-logo-typography.glow {
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
}

.hd-logo-typography.inline {
  display: inline-block;
  vertical-align: middle;
  margin: 0 5px;
}

.section-header h2 .hd-logo-typography,
.page-title .hd-logo-typography {
  margin-bottom: -5px;
}

/* ====== GENERAL STYLES ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  font-family: var(--font-secondary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background-color: var(--cream);
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  height: 100%; /* Ensure the body and html take up the full height */
  overflow-x: hidden; /* Prevent horizontal scrolling */
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  margin-bottom: 15px;
  font-weight: 600;
}

h1 {
  font-size: 3rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.25;
}

h3 {
  font-size: 1.75rem;
  line-height: 1.3;
}

h4 {
  font-size: 1.5rem;
  line-height: 1.4;
}

p {
  margin-bottom: 15px;
}

a {
  text-decoration: none;
  color: var(--brown-medium);
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--gold);
}

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

section {
  padding: 80px 0;
}

ul {
  list-style: none;
}

.btn {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 14px 30px;
  border-radius: 50px; /* Makes the corners fully rounded */
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(74, 85, 104, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--accent);
  transition: all 0.3s ease;
  z-index: -1;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(247, 183, 49, 0.3);
  color: white;
  text-shadow: 0 0 5px rgba(255, 224, 138, 0.5);
}

.btn:hover::before {
  width: 100%;
}

.btn-outline {
  display: inline-block;
  background-color: transparent;
  color: var(--primary);
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 14px 30px;
  border-radius: 80px; /* Makes the corners fully rounded */
  border: 2px solid var(--accent);
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-outline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--accent);
  transition: all 0.3s ease;
  z-index: -1;
}

.btn-outline:hover {
  color: white;
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(247, 183, 49, 0.2);
  text-shadow: 0 0 5px rgba(255, 224, 138, 0.5);
}

.btn-outline:hover::before {
  width: 100%;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 25px;
}

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

.section-header h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

.section-header h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background-color: var(--gold);
  margin: 10px auto 0;
}

.section-header p {
  color: var(--gray);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.section-header.light h2,
.section-header.light p {
  color: white;
}

.section-header.light h2::after {
  background-color: var(--cream);
}

.centered-btn {
  text-align: center;
  margin-top: 40px;
}

/* ====== DOOR ANIMATION ====== */
.door-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  background-color: white;
}

.door-container::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 183, 49, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.door {
  position: absolute;
  top: 0;
  height: 100%;
  width: 50%;
  background-color: var(--white-door);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  transition: all var(--transition-slow) ease-in-out;
  z-index: 10;
  overflow: hidden;
}

.door::before {
  content: "";
  position: absolute;
  top: 10%;
  width: 80%;
  height: 60%;
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.8);
}

.left-door {
  left: 0;
  transform-origin: left;
}

.left-door::before {
  right: 10%;
}

.left-door::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 15px;
  height: 40px;
  background-color: var(--accent);
  border-radius: 10px;
}

.right-door {
  right: 0;
  transform-origin: right;
}

.right-door::before {
  left: 10%;
}

.right-door::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  width: 15px;
  height: 40px;
  background-color: var(--accent);
  border-radius: 10px;
}



.door-open .left-door {
  transform: rotateY(120deg);
  box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5);
}

.door-open .right-door {
  transform: rotateY(-120deg);
  box-shadow: 10px 0 50px rgba(0, 0, 0, 0.5);
}




.door-hidden {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 1s, opacity 1s;
}

/* ====== NAVIGATION ====== */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  z-index: 1000; /* Higher z-index to ensure it's above everything */
  transition: all var(--transition-fast);
}

.main-nav.hidden {
  transform: translateY(-100%);
}

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

.logo a {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-dark);
  text-decoration: none;
  position: relative;
  display: flex;
  align-items: center;
}

.logo-image {
  max-height: 60px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo a:hover .logo-image {
  transform: scale(1.05);
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.7));
}

.nav-links {
  display: none;
}

.nav-links a {
  margin-left: 25px;
  color: var(--primary-dark);
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--accent);
}

.nav-links a.active::after {
  width: 100%;
  background-color: var(--accent);
}





.mobile-menu-btn {
  font-size: 1.5rem;
  color: var(--primary-dark);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--transition-fast);
}

.mobile-menu-btn:hover {
  background-color: rgba(238, 108, 77, 0.1);
  color: var(--accent);
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 99;
  transform: translateY(-100%);
  transition: transform var(--transition-medium);
}

.mobile-nav.open {
  transform: translateY(0);
}

.mobile-nav a {
  color: white;
  font-size: 1.5rem;
  margin: 15px 0;
  transition: all var(--transition-fast);
  position: relative;
  padding: 10px 20px;
}

.mobile-nav a::before {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--accent);
  opacity: 0.1;
  transition: width 0.3s ease;
  z-index: -1;
  border-radius: 4px;
}

.mobile-nav a:hover {
  color: var(--accent);
  transform: translateX(5px);
}

.mobile-nav a:hover::before {
  width: 100%;
}

.mobile-nav a.active {
  color: var(--accent);
}

.mobile-nav a.active::before {
  width: 100%;
}

/* ====== HERO SECTION ====== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height */
  overflow: hidden;
  margin: 0; /* Remove any default margin */
  padding: 0; /* Remove any default padding */
}

.hero-static {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image covers the entire hero section */
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff; /* Adjust text color for better visibility */
  z-index: 2;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(1.1) contrast(1.1);
  z-index: 1;
}

.hero-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 2;
}

.hero-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAMAAAAp4XiDAAAAUVBMVEWFhYWDg4N3d3dtbW17e3t1dXWBgYGHh4d5eXlzc3OLi4ubm5uVlZWPj4+NjY19fX2JiYl/f39ra2uRkZGZmZlpaWmXl5dvb29xcXGTk5NnZ2c8TV1mAAAAG3RSTlNAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEAvEOwtAAAFVklEQVR4XpWWB67c2BUFb3g557T/hRo9/WUMZHlgr4Bg8Z4qQgQJlHI4A8SzFVrapvmTF9O7dmYRFZ60YiBhJRCgh1FYhiLAmdvX0CzTOpNE77ME0Zty/nWWzchDtiqrmQDeuv3powQ5ta2eN0FY0InkqDD73lT9c9lEzwUNqgFHs9VQce3TVClFCQrSTfOiYkVJQBmpbq2L6iZavPnAPcoU0dSw0SUTqz/GtrGuXfbyyBniKykOWQWGqwwMA7QiYAxi+IlPdqo+hYHnUt5ZPfnsHJyNiDtnpJyayNBkF6cWoYGAMY92U2hXHF/C1M8uP/ZtYdiuj26UdAdQQSXQErwSOMzt/XWRWAz5GuSBIkwG1H3FabJ2OsUOUhGC6tK4EMtJO0ttC6IBD3kM0ve0tJwMdSfjZo+EEISaeTr9P3wYrGjXqyC1krcKdhMpxEnt5JetoulscpyzhXN5FRpuPHvbeQaKxFAEB6EN+cYN6xD7RYGpXpNndMmZgM5Dcs3YSNFDHUo2LGfZuukSWyUYirJAdYbF3MfqEKmjM+I2EfhA94iG3L7uKrR+GdWD73ydlIB+6hgref1QTlmgmbM3/LeX5GI1Ux1RWpgxpLuZ2+I+IjzZ8wqE4nilvQdkUdfhzI5QDWy+kw5Wgg2pGpeEVeCCA7b85BO3F9DzxB3cdqvBzWcmzbyMiqhzuYqtHRVG2y4x+KOlnyqla8AoWWpuBoYRxzXrfKuILl6SfiWCbjxoZJUaCBj1CjH7GIaDbc9kqBY3W/Rgjda1iqQcOJu2WW+76pZC9QG7M00dffe9hNnseupFL53r8F7YHSwJWUKP2q+k7RdsxyOB11n0xtOvnW4irMMFNV4H0uqwS5ExsmP9AxbDTc9JwgneAT5vTiUSm1E7BSflSt3bfa1tv8Di3R8n3Af7MNWzs49hmauE2wP+ttrq+AsWpFG2awvsuOqbipWHgtuvuaAE+A1Z/7gC9hesnr+7wqCwG8c5yAg3AL1fm8T9AZtp/bbJGwl1pNrE7RuOX7PeMRUERVaPpEs+yqeoSmuOlokqw49pgomjLeh7icHNlG19yjs6XXOMedYm5xH2YxpV2tc0Ro2jJfxC50ApuxGob7lMsxfTbeUv07TyYxpeLucEH1gNd4IKH2LAg5TdVhlCafZvpskfncCfx8pOhJzd76bJWeYFnFciwcYfubRc12Ip/ppIhA1/mSZ/RxjFDrJC5xifFjJpY2Xl5zXdguFqYyTR1zSp1Y9p+tktDYYSNflcxI0iyO4TPBdlRcpeqjK/piF5bklq77VSEaA+z8qmJTFzIWiitbnzR794USKBUaT0NTEsVjZqLaFVqJoPN9ODG70IPbfBHKK+/q/AWR0tJzYHRULOa4MP+W/HfGadZUbfw177G7j/OGbIs8TahLyynl4X4RinF793Oz+BU0saXtUHrVBFT/DnA3ctNPoGbs4hRIjTok8i+algT1lTHi4SxFvONKNrgQFAq2/gFnWMXgwffgYMJpiKYkmW3tTg3ZQ9Jq+f8XN+A5eeUKHWvJWJ2sgJ1Sop+wwhqFVijqWaJhwtD8MNlSBeWNNWTa5Z5kPZw5+LbVT99wqTdx29lMUH4OIG/D86ruKEauBjvH5xy6um/Sfj7ei6UUVk4AIl3MyD4MSSTOFgSwsH/QJWaQ5as7ZcmgBZkzjjU1UrQ74ci1gWBCSGHtuV1H2mhSnO3Wp/3fEV5a+4wz//6qy8JxjZsmxxy5+4w9CDNJY09T072iKG0EnOS0arEYgXqYnXcYHwjTtUNAcMelOd4xpkoqiTYICWFq0JSiPfPDQdnt+4/wuqcXY47QILbgAAAABJRU5ErkJggg==');
  opacity: 0.05;
  z-index: 3;
}

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

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.9), 2px 2px 4px rgba(0, 0, 0, 0.5);
  color: var(--white-glow);
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 1);
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
  font-family: var(--font-secondary);
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6), 0 0 10px rgba(255, 255, 255, 0.3);
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.hero-buttons .btn-outline {
  color: var(--white-glow);
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.1);
}

.hero-buttons .btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: white;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}


/* Hero section uses static image with lighting effects */

/* Hero video styles (for menu page) */
.menu-page .hero {
  height: 50vh; /* Reduce height for menu page */
  min-height: 300px;
}

.menu-page .hero .video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.menu-page .hero #hero-video {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.menu-page .hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}

.menu-page .hero .hero-content {
  max-width: 800px;
  padding: 0 20px;
  position: absolute;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: var(--white-glow);
  font-weight: 700;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Hero Section Styling */
.hero {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height */
  overflow: hidden;
  margin: 0; /* Remove any default margin */
  padding: 0; /* Remove any default padding */
}

.hero-static {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image covers the entire hero section */
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff; /* Adjust text color for better visibility */
  z-index: 2;
}

.hero-buttons {
  margin-top: 20px;
}

.hero-buttons .btn,
.hero-buttons .btn-outline {
  padding: 10px 20px;
  font-size: 1.2rem;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.hero-buttons .btn {
  background-color: #000000; /* Change to blue */
  color: #fff;
}

.hero-buttons .btn-outline {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #000000;
}

.hero-buttons .btn:hover,
.hero-buttons .btn-outline:hover {
  background-color: #ff6f61;
  color: #fff;
}

/* ====== FEATURES SECTION ====== */
.features {
  background-color: white;
  position: relative;
  overflow: hidden;
}

.features::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background-color: rgba(152, 193, 217, 0.05);
  border-radius: 50%;
  top: -150px;
  left: -150px;
  z-index: 1;
}

.features::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background-color: rgba(238, 108, 77, 0.05);
  border-radius: 50%;
  bottom: -100px;
  right: -100px;
  z-index: 1;
}

.features .container {
  position: relative;
  z-index: 2;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.feature-item {
  text-align: center;
  padding: 40px 30px;
  border-radius: 16px;
  background-color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.4s ease;
  position: relative;
  border: 1px solid rgba(152, 193, 217, 0.1);
  overflow: hidden;
}

.feature-item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: 0;
  left: 0;
  background: linear-gradient(to right, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.feature-item:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 25px;
  background-color: rgba(238, 108, 77, 0.1);
  width: 80px;
  height: 80px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  transform: rotateY(180deg);
  background-color: var(--accent);
  color: white;
  box-shadow: 0 5px 15px rgba(238, 108, 77, 0.3);
}

.feature-item h3 {
  margin-bottom: 15px;
  color: var(--primary-dark);
  font-weight: 600;
}

.feature-item p {
  color: var(--gray);
  line-height: 1.7;
}

/* ====== MENU PREVIEW ====== */
.menu-preview {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(10, 10, 10, 0.98));
  color: white;
  position: relative;
  overflow: hidden;
}

/* Ambient lighting effects in menu preview */
.menu-preview::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 70%);
  top: -100px;
  right: -100px;
  z-index: 1;
  animation: ambient-pulse 8s infinite alternate ease-in-out;
  filter: blur(20px);
}

.menu-preview::after {
  content: "";
  position: absolute;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 70%);
  bottom: -150px;
  left: -150px;
  z-index: 1;
  animation: ambient-pulse 12s infinite alternate-reverse ease-in-out;
  filter: blur(20px);
}

.menu-preview .container {
  position: relative;
  z-index: 2;
}

/* Additional ambient lights */
.menu-preview .container::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 70%);
  top: 30%;
  left: 20%;
  z-index: 1;
  animation: ambient-pulse 15s infinite alternate ease-in-out;
  filter: blur(15px);
}

.menu-preview .container::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 70%);
  bottom: 20%;
  right: 15%;
  z-index: 1;
  animation: ambient-pulse 10s infinite alternate-reverse ease-in-out;
  filter: blur(15px);
}

@keyframes ambient-pulse {
  0% {
    opacity: 0.5;
    transform: scale(0.9);
    filter: blur(15px);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.1);
    filter: blur(10px);
  }
  100% {
    opacity: 0.7;
    transform: scale(1.3);
    filter: blur(5px);
  }
}

.menu-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.menu-card {
  background-color: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  border: 1px solid rgba(152, 193, 217, 0.1);
}

.menu-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.menu-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.menu-card:hover::after {
  transform: scaleX(1);
}

.menu-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.menu-card-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(27, 27, 27, 0), rgba(27, 27, 27, 0.3));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.menu-card:hover .menu-card-img::before {
  opacity: 1;
}

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

.menu-card:hover .menu-card-img img {
  transform: scale(1.1);
}

.menu-card-img video {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.menu-card-content {
  padding: 25px;
  color: var(--black);
  position: relative;
}

.menu-card h3 {
  color: var(--primary-dark);
  margin-bottom: 12px;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}

.menu-card h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

.menu-card:hover h3::after {
  width: 60px;
}

.menu-card p {
  margin-bottom: 15px;
  color: var(--gray);
  line-height: 1.6;
}

.price {
  font-weight: 600;
  color: var(--accent);
  font-size: 1.2rem;
  display: inline-block;
  padding: 5px 15px;
  background-color: rgba(238, 108, 77, 0.1);
  border-radius: 20px;
}

/* ====== TESTIMONIALS ====== */
.testimonials {
  background-color: var(--secondary-light);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(61, 90, 128, 0.1), rgba(238, 108, 77, 0.05));
  top: -100px;
  right: -100px;
}

.testimonials::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(238, 108, 77, 0.05), rgba(61, 90, 128, 0.1));
  bottom: -150px;
  left: -150px;
}

.testimonials .container {
  position: relative;
  z-index: 2;
}

.testimonial-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-slide {
  display: none;
  animation: fadeEffect 1s;
}

.testimonial-slide:first-child {
  display: block;
}

@keyframes fadeEffect {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}

.testimonial-content {
  background-color: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
  border-bottom: 4px solid var(--accent);
}

.testimonial-content::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  background-color: rgba(238, 108, 77, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.testimonial-content::after {
  content: "";
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 80px;
  height: 80px;
  background-color: rgba(152, 193, 217, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.quote-icon {
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  position: relative;
  z-index: 1;
}

.testimonial-author h4 {
  color: var(--primary-dark);
  margin-bottom: 5px;
  font-weight: 600;
}

.rating {
  color: var(--accent);
  font-size: 1.1rem;
}

.testimonial-dots {
  text-align: center;
  margin-top: 30px;
}

.testimonial-dots .dot {
  display: inline-block;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background-color: rgba(61, 90, 128, 0.3);
  margin: 0 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dots .dot.active, 
.testimonial-dots .dot:hover {
  background-color: var(--accent);
  transform: scale(1.3);
}

/* ====== CTA SECTION ====== */
.cta {
  background: linear-gradient(135deg, rgba(31, 37, 46, 0.98), rgba(41, 47, 61, 0.95));
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: rgba(247, 183, 49, 0.3);
  z-index: 1;
}

.cta::after {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background-color: rgba(152, 193, 217, 0.2);
  z-index: 1;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta h2 {
  margin-bottom: 20px;
}

.cta p {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.cta .btn {
  background-color: var(--accent);
  color: white;
  border-color: var(--accent);
  box-shadow: 0 4px 15px rgba(247, 183, 49, 0.4);
  text-shadow: 0 0 5px rgba(255, 224, 138, 0.5);
}

.cta .btn:hover {
  background-color: var(--accent-light);
  border-color: var(--accent-light);
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(247, 183, 49, 0.5);
  text-shadow: 0 0 8px rgba(255, 224, 138, 0.7);
}

.cta .btn-outline {
  color: white;
  border-color: var(--secondary-light);
  background-color: transparent;
}

.cta .btn-outline:hover {
  background-color: var(--secondary-light);
  color: var(--primary-dark);
  transform: translateY(-3px);
}

/* ====== MENU PAGE SPECIFIC STYLES ====== */
.menu-categories {
  padding: 50px 0;
  background-color: white;
}

.menu-tabs {
  background-color: white;
  padding: 15px 0;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(152, 193, 217, 0.2);
  position: sticky;
  top: 0; /* Stick directly to the top edge */
  z-index: 1000; /* Above header to ensure always visible */
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  transition: all 0.3s ease;
  width: 100%;
}

.menu-tabs.sticky-active {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  padding: 12px 0;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 2px solid #000000;
}

.menu-tab {
  padding: 10px 25px;
  background-color: transparent;
  border: 2px solid #000000;
  border-radius: 30px;
  color: #000000;
  font-family: var(--font-secondary);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-size: 0.95rem;
}

.menu-tab::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #000000;
  transition: all 0.3s ease;
  z-index: -1;
}

.menu-tab:hover::before,
.menu-tab.active::before {
  width: 100%;
}

.menu-tab:hover,
.menu-tab.active {
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.menu-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 30px;
  padding-top: 30px;
}

.menu-item {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(152, 193, 217, 0.1);
  transition: all 0.3s ease;
}

.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.menu-item-image {
  height: 200px;
  overflow: hidden;
}

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

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

.menu-item-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.menu-item-header h3 {
  font-weight: 600;
  color: var(--primary-dark);
  font-size: 1.2rem;
  margin: 0;
}

.menu-item-info p {
  color: var(--gray);
  margin-bottom: 15px;
  line-height: 1.6;
  flex-grow: 1;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.tag {
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 20px;
  background-color: rgba(152, 193, 217, 0.1);
  color: var(--primary);
}

.order-info {
  padding: 50px 0;
  background-color: white;
  position: relative;
  overflow: hidden;
}

.order-info::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 20, 147, 0.35) 0%, rgba(255, 20, 147, 0) 70%);
  top: -200px;
  left: -200px;
  opacity: 0.8;
  z-index: 1;
  filter: blur(35px);
  animation: pulse-glow 7s infinite alternate;
}

.info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.info-card {
  padding: 30px;
  text-align: center;
  background-color: var(--secondary-light);
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.info-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background-color: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.info-card h3 {
  margin-bottom: 15px;
  color: var(--primary-dark);
}

.info-card p {
  margin-bottom: 20px;
  color: var(--gray);
}

.btn-sm {
  display: inline-block;
  padding: 8px 18px;
  background-color: #000000;
  color: #ffffff;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: 1px solid #000000;
}

.btn-sm:hover {
  background-color: #ffffff;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

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

  .info-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

/* ====== FOOTER ====== */
.footer {
  background-color: #000000;
  color: white;
  padding: 80px 0 20px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 153, 51, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  opacity: 0.7;
}

.footer::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(100, 100, 100, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  opacity: 0.7;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.footer-info h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: white;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.footer-info h3::after {
  content: "";
  position: absolute;
  width: 70%;
  height: 3px;
  background: linear-gradient(to right, var(--accent), transparent);
  bottom: 0;
  left: 0;
}

.footer-info p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
  line-height: 1.7;
}

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

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-links a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--accent);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: -1;
}

.social-links a:hover {
  transform: translateY(-3px);
  color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-links a:hover::before {
  transform: translateY(0);
}

.footer h4 {
  font-size: 1.2rem;
  color: white;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
  display: inline-block;
}

.footer h4::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 2px;
  background-color: var(--accent);
  bottom: 0;
  left: 0;
}

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

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  position: relative;
  padding-left: 20px;
  display: inline-block;
}

.footer-links ul li a::before {
  content: "→";
  position: absolute;
  left: 0;
  opacity: 0;
  transition: all 0.3s ease;
  transform: translateX(-10px);
}

.footer-links ul li a:hover {
  color: var(--accent);
  transform: translateX(5px);
}

.footer-links ul li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-hours ul li {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
  position: relative;
}

.footer-hours ul li.indented {
  margin-left: 20px;
  margin-bottom: 15px;
  color: white;
  font-weight: 500;
  position: relative;
}

.footer-hours ul li.indented::before {
  content: "•";
  position: absolute;
  left: -15px;
  color: var(--accent);
}

.footer-newsletter {
  position: relative;
  padding: 20px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(50, 50, 50, 0.4), rgba(20, 20, 20, 0.4));
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: translateZ(0);
  overflow: hidden;
}

.footer-newsletter::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to bottom right,
    rgba(255, 153, 51, 0.1) 0%,
    rgba(255, 153, 51, 0) 30%,
    rgba(255, 153, 51, 0) 70%,
    rgba(255, 153, 51, 0.1) 100%
  );
  z-index: 0;
  transform: rotate(30deg);
  pointer-events: none;
}

.footer-newsletter h4 {
  color: white;
  position: relative;
  z-index: 1;
  font-size: 1.3rem;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.footer-newsletter h4::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(to right, var(--accent), transparent);
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
  font-size: 0.95rem;
}

.form-group {
  display: flex;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  border-radius: 50px;
  overflow: hidden;
  position: relative;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.05);
}

.form-group:hover {
  box-shadow: 0 12px 40px rgba(255, 153, 51, 0.25);
  transform: translateY(-3px);
  border-color: rgba(255, 153, 51, 0.2);
}

.form-group input {
  flex-grow: 1;
  padding: 16px 25px;
  border: none;
  font-family: var(--font-secondary);
  font-size: 1rem;
  background-color: transparent;
  color: white;
  letter-spacing: 0.5px;
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus {
  outline: none;
}

.form-group button {
  background: linear-gradient(135deg, var(--accent) 0%, #ff7b43 100%);
  color: white;
  border: none;
  padding: 0 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.form-group button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.4s ease;
}

.form-group button:hover {
  background: linear-gradient(135deg, #ff7b43 0%, var(--accent) 100%);
}

.form-group button:hover::before {
  left: 100%;
}

.newsletter-success {
  display: flex;
  align-items: center;
  background: linear-gradient(145deg, rgba(0, 0, 0, 0.2), rgba(255, 153, 51, 0.15));
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 153, 51, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.success-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #ff7b43 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  box-shadow: 0 5px 15px rgba(255, 153, 51, 0.3);
  color: white;
  font-size: 1.2rem;
  animation: pulse-success 2s infinite;
}

.success-text p {
  color: white;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
}

@keyframes pulse-success {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 153, 51, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 153, 51, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 153, 51, 0);
  }
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 2;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

/* ====== WHATSAPP BUTTON ====== */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  z-index: 90;
  transition: all 0.3s;
}

.whatsapp-btn:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn .pulsate {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #25D366;
  opacity: 0.6;
  z-index: -1;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  70% {
    transform: scale(1.4);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* ====== ANIMATION CLASSES ====== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition-medium), transform var(--transition-medium);
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

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

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

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

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

@keyframes letterSpacing {
  from {
    opacity: 0;
    letter-spacing: -5px;
  }
  to {
    opacity: 1;
    letter-spacing: normal;
  }
}

@keyframes glowPulse {
  0% {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
  }
  50% {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
  }
  100% {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
  }
}

.slide-title {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.3s;
  opacity: 0;
}

.slide-subtitle {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeInLeft;
  animation-delay: 0.5s;
  opacity: 0;
}

.slide-description {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeInRight;
  animation-delay: 0.7s;
  opacity: 0;
}

.slide-btn {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: zoomIn;
  animation-delay: 0.9s;
  opacity: 0;
}

.slide.active .slide-title,
.slide.active .slide-subtitle,
.slide.active .slide-description,
.slide.active .slide-btn {
  animation-play-state: running;
  opacity: 1;
}

.text-glow {
  animation: glowPulse 3s infinite;
}

/* ====== MOBILE RESPONSIVENESS ====== */
@media (min-width: 576px) {
  .hero h1 {
    font-size: 4rem;
  }

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

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ====== SCROLL EFFECTS ====== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(70px);
  transition: all 1s ease;
}

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

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

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

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

.fade-in {
  opacity: 0;
  transition: opacity 1.2s ease;
}

.fade-in.active {
  opacity: 1;
}

.slide-in-left {
  transform: translateX(-100px);
  opacity: 0;
  transition: all 1s ease;
}

.slide-in-left.active {
  transform: translateX(0);
  opacity: 1;
}

.slide-in-right {
  transform: translateX(100px);
  opacity: 0;
  transition: all 1s ease;
}

.slide-in-right.active {
  transform: translateX(0);
  opacity: 1;
}

.scale-in {
  transform: scale(0.8);
  opacity: 0;
  transition: all 1s ease;
}

.scale-in.active {
  transform: scale(1);
  opacity: 1;
}

.counter-section {
  padding: 80px 0;
  background-color: #000000;
  position: relative;
  overflow: hidden;
}

.counter-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
}

.counter-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
}

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

.counter-item {
  text-align: center;
  color: white;
  position: relative;
  z-index: 2;
}

.counter-number {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #ffffff 0%, #aaaaaa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}

.counter-number::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(135deg, var(--accent) 0%, #ff7b43 100%);
}

.counter-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  font-weight: 500;
}

.parallax-section {
  position: relative;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  perspective: 10px;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: translateZ(-10px) scale(2);
  z-index: -1;
}

.parallax-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
  z-index: 0;
}

.parallax-content {
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* ====== CULINARY EXPERIENCE SHOWCASE ====== */
.culinary-showcase {
  padding: 100px 0;
  background-color: white;
  color: var(--primary-dark);
  position: relative;
  overflow: hidden;
}

.culinary-showcase::before {
  content: "";
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 105, 180, 0.4) 0%, rgba(255, 105, 180, 0) 70%);
  top: -300px;
  right: -300px;
  opacity: 0.9;
  z-index: 1;
  filter: blur(40px);
  animation: pulse-glow 8s infinite alternate;
}

.culinary-showcase::after {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(219, 112, 147, 0.35) 0%, rgba(219, 112, 147, 0) 70%);
  bottom: -250px;
  left: -250px;
  opacity: 0.9;
  z-index: 1;
  filter: blur(30px);
  animation: pulse-glow 6s infinite alternate-reverse;
}

/* Add more ambient effects */
.culinary-showcase .ambient-glow-1,
.culinary-showcase .ambient-glow-2,
.culinary-showcase .ambient-glow-3 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.culinary-showcase .ambient-glow-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 105, 180, 0.45) 0%, rgba(255, 105, 180, 0) 70%);
  top: 30%;
  right: 20%;
  filter: blur(30px);
  opacity: 0.85;
  animation: float-glow 15s infinite alternate;
}

.culinary-showcase .ambient-glow-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(219, 112, 147, 0.4) 0%, rgba(219, 112, 147, 0) 70%);
  bottom: 20%;
  right: 40%;
  filter: blur(40px);
  opacity: 0.8;
  animation: float-glow 12s infinite alternate-reverse;
}

.culinary-showcase .ambient-glow-3 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255, 20, 147, 0.35) 0%, rgba(255, 20, 147, 0) 70%);
  top: 50%;
  left: 10%;
  filter: blur(35px);
  opacity: 0.75;
  animation: float-glow 10s infinite alternate;
}

@keyframes pulse-glow {
  0% {
    opacity: 0.7;
    transform: scale(1);
  }
  100% {
    opacity: 0.9;
    transform: scale(1.1);
  }
}

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

.culinary-showcase .container {
  position: relative;
  z-index: 5;
}

.culinary-showcase .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.culinary-showcase .section-header h2 {
  color: var(--primary-dark);
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255, 192, 203, 0.4);
}

.culinary-showcase .section-header p {
  color: var(--gray);
  font-size: 1.1rem;
}

.experience-cards {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
}

.experience-card {
  position: relative;
  border-radius: 12px;
  background-color: white;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(255, 192, 203, 0.2);
  box-shadow: 0 10px 30px rgba(255, 192, 203, 0.1);
  transition: all 0.4s ease;
  z-index: 1;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.experience-card.active {
  opacity: 1;
  transform: translateY(0);
}

.experience-card:hover {
  transform: translateY(-10px);
  background-color: white;
  border-color: rgba(255, 192, 203, 0.4);
  box-shadow: 0 15px 35px rgba(255, 192, 203, 0.2);
}

.glow-effect {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 192, 203, 0.2) 0%, rgba(255, 192, 203, 0) 70%);
  filter: blur(20px);
  opacity: 0;
  transition: all 0.5s ease;
  z-index: -1;
}

.experience-card:hover .glow-effect {
  opacity: 1;
  width: 200px;
  height: 200px;
}

#card-chef-table .glow-effect {
  top: 10%;
  right: 10%;
  background: radial-gradient(circle, rgba(255, 182, 193, 0.3) 0%, rgba(255, 182, 193, 0) 70%);
}

#card-wine-pairing .glow-effect {
  bottom: 10%;
  left: 10%;
  background: radial-gradient(circle, rgba(255, 105, 180, 0.25) 0%, rgba(255, 105, 180, 0) 70%);
}

#card-cooking-class .glow-effect {
  top: 20%;
  left: 15%;
  background: radial-gradient(circle, rgba(255, 192, 203, 0.3) 0%, rgba(255, 192, 203, 0) 70%);
}

#card-seasonal .glow-effect {
  bottom: 20%;
  right: 15%;
  background: radial-gradient(circle, rgba(219, 112, 147, 0.25) 0%, rgba(219, 112, 147, 0) 70%);
}

.experience-content {
  position: relative;
  z-index: 2;
}

.experience-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 192, 203, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 192, 203, 0.2);
  transition: all 0.3s ease;
}

.experience-icon i {
  font-size: 1.5rem;
  color: var(--primary-dark);
  text-shadow: 0 0 10px rgba(255, 192, 203, 0.5);
}

.experience-card:hover .experience-icon {
  transform: scale(1.1);
  background-color: rgba(255, 192, 203, 0.15);
  box-shadow: 0 0 20px rgba(255, 192, 203, 0.3);
}

.experience-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-dark);
  font-weight: 600;
}

.experience-content p {
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.6;
}

.experience-details {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}

.detail {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  background-color: rgba(255, 192, 203, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 192, 203, 0.1);
}

.detail i {
  font-size: 0.9rem;
  color: var(--primary-dark);
}

.detail span {
  font-size: 0.85rem;
  color: var(--gray-dark);
}

.experience-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--primary-dark);
  color: white;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.experience-btn:hover {
  background-color: black;
  box-shadow: 0 0 15px rgba(255, 192, 203, 0.3);
  transform: translateY(-3px);
}

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

  .menu-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

  .counter-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .experience-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Larger desktop screens */
@media (min-width: 1200px) {
  .experience-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}


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

  .menu-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .menu-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

  .counter-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .experience-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Larger desktop screens */
@media (min-width: 1200px) {
  .experience-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Hide menu-tabs and show FAB on mobile */
@media (max-width: 768px) {
  .menu-tabs {
    display: none !important;
  }
  .category-fab {
    display: flex;
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 1001;
    background: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    width: 56px;
    height: 56px;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #222;
    cursor: pointer;
    transition: box-shadow 0.2s;
  }
  .category-fab:active {
    box-shadow: 0 1px 4px rgba(0,0,0,0.18);
  }
  .category-popup {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    align-items: center;
    justify-content: center;
  }
  .category-popup.active {
    display: flex;
  }
  .category-popup-content {
    background: #fff;
    border-radius: 16px;
    padding: 24px 16px 16px 16px;
    max-width: 340px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    margin: auto;
  }
  .close-popup {
    position: absolute;
    top: 8px;
    right: 12px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #888;
    cursor: pointer;
  }
  .popup-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 16px;
  }
  .popup-categories .menu-tab {
    min-width: 120px;
    margin: 0;
    border-radius: 20px;
    border: 1px solid #222;
    background: #fff;
    color: #222;
    padding: 8px 12px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
  }
  .popup-categories .menu-tab.active,
  .popup-categories .menu-tab:active {
    background: #222;
    color: #fff;
  }
}

/* Hide FAB and popup on desktop */
@media (min-width: 769px) {
  .category-fab,
  .category-popup {
    display: none !important;
  }
}
