:root {
  --primary-color: #ff6f61; /* Coral color for accents */
  --secondary-color: #ffffff; /* White for text */
  --background-color: #1e0602; /* Deep, rich background color */
  --font-heading: 'Great Vibes', cursive;
  --font-body: 'Poppins', sans-serif;
}

body {
  font-family: var(--font-body);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: var(--background-color);
  color: var(--secondary-color);
}

/* Logo Styles */
/* Logo Container */
.logo-container {
  position: fixed;
  top: 5px; /* Adjusted from 15px to 5px to move it higher */
  left: 40px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 15px;
}


.logo-container a {
  display: inline-block;
  transition: transform 0.3s ease;
}

.logo-container a:hover {
  transform: scale(1.05);
}

.site-logo {
  width: 80px;
  height: auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}
 

/* Adjust nav buttons to account for logo */
.top-right-buttons {
  right: 20px;
  left: auto; /* Changed from fixed left */
  padding-left: 140px; /* Creates space for logo */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .logo-container {
    top: 2px; /* Adjusted from 10px to 2px for mobile */
    left: 10px;
    gap: 8px;
  }

  
  .site-logo {
    width: 100px;
  }

  
  .top-right-buttons {
    padding-left: 100px;
  }
}
@media (max-width: 480px) {
  .site-logo {
    width: 100px;
  }

  .logo-container {
    top: 8px;
    left: 10px;
    gap: 8px;
  }
}


/* Phone Number Positioning - Desktop */
.header-phone-display {
  position: fixed;
  top: 20px;
  left: calc(23% - 200px); /* Adjust this value to position perfectly */
  z-index: 1000;
  color: white;
  font-family: var(--font-body);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 5px;
}


.header-phone-display i {
  color: var(--primary-color);
}

/* Remove phone link padding from top-right buttons */
.top-right-buttons {
  padding-left: 0 !important;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .header-phone-display {
    left: calc(50% - 150px);
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .header-phone-display {
    left: calc(50% - 120px);
    font-size: 0.8rem;
  }
}

/* Styles for the new top-right buttons */
.top-right-buttons {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  gap: 15px; /* Space between buttons */
}

.top-right-buttons a {
  color: var(--secondary-color); /* White text */
  text-decoration: none;
  font-size: 1rem;
  padding: 10px 15px;
  background-color: rgba(255, 255, 255, 0.1); /* Transparent background */
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.top-right-buttons a:hover {
  background-color: rgba(255, 255, 255, 0.3);
  color: #1E0602; /* New dark color */
}

.header-phone {
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  padding: 10px 0;
  background: transparent;
}

.header-phone i {
  color: var(--secondary-color);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .header-phone {
    font-size: 0.9rem;
    padding: 8px 0;
  }
  
  /* Optional: Show just icon on very small screens */
  @media (max-width: 480px) {
    .header-phone span {
      display: none;
    }
  }
}


/* Hero Section with Slider */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.slider {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
  transform: scale(1.1);
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 10;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Dark overlay for better text visibility */
  z-index: 1;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--secondary-color);
  z-index: 2; /* Ensure text is above the overlay */
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 4rem;
  margin: 0;
  color: var(--secondary-color);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5); /* Text shadow for better visibility */
}

.hero-content p {
  /* Keep existing styles */
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.4rem;
  margin: 8px 0 0 0;
  color: var(--secondary-color);
  letter-spacing: 0.5px;
  opacity: 0.95;
  display: inline-block;
  padding: 8px 20px;
  
  
  
  /* Smooth transition */
  transition: all 0.3s ease;
}

.hero-content .btn {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1rem;
  margin-top: 20px;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.hero-content .btn:hover {
  background-color: #e65a50; /* Keep the same background */
  color: #1E0602; /* New text color on hover */
}
/* Slider Controls */
.slider-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 2;
}

.slider-controls span {
  color: var(--secondary-color);
  font-size: 2rem;
  cursor: pointer;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  z-index: 2;
}

.slider-dots .dot {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}

.slider-dots .dot.active {
  background-color: var(--secondary-color);
}




.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.3); /* Semi-transparent overlay for better text visibility */
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 4rem;
  margin: 0;
  color: white;
}

.hero-content p {
  font-size: 1.5rem;
  margin: 10px 0;
  color: white;
}
  
  .btn {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
  }

  .top-right-buttons a.order-online-btn {
    background-color: var(--primary-color) !important;
    color: #1E0602 !important;
    font-weight: bold;
    padding: 10px 20px !important;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(255, 111, 97, 0.5);
    transition: all 0.3s ease;
  }
  
  .top-right-buttons a.order-online-btn:hover {
    background-color: #ff8a7a !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 111, 97, 0.7);
  }
  
  /* Mobile Responsiveness */
@media (max-width: 768px) {
  .top-right-buttons a.order-online-btn {
    padding: 8px 15px !important;
    font-size: 0.9rem;
  }
}
  
  /* Brief Description Section */
  .description {
    padding: 50px;
    background-color: var(--background-color);
    text-align: center;
  }

  .description-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
  }

.description-content .image-left,
.description-content .image-right {
  flex: 1;
  max-width: 30%; /* Adjust image width */
}

.description-content .image-left img,
.description-content .image-right img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.description-content .text {
  flex: 2;
  padding: 0 40px; /* Add spacing between text and images */
  text-align: center;
}

.description-content .text h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--secondary-color); /* White color for heading */
}

.description-content .text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--secondary-color);
}
  
.book-table {
  padding: 50px;
  text-align: center;
  background: var(--background-gradient);
}
.book-table h2 {
  font-family: var(--font-heading); /* Cursive font for heading */
  font-size: 2.5rem;
  color: var(--secondary-color); /* White color for heading */
  margin-bottom: 20px;
}
  
  .book-table form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .book-table input, .book-table button {
    padding: 10px;
    font-size: 1rem;
  }

 
/* Video Section */
.video-section {
  padding: 50px;
  text-align: center;
  background: var(--background-gradient);
}
.video-section h2 {
  font-family: var(--font-heading); /* Cursive font for heading */
  font-size: 2.5rem;
  color: var(--secondary-color); /* White color for heading */
  margin-bottom: 20px;
}
/* Video Gallery Styles */
.video-gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px; /* This creates space for the dividers */
  padding: 40px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.main-video {
  width: 60%; /* Adjust width as needed */
  position: relative;
}

.side-video {
  display: none;
}

.custom-video {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.main-video .custom-video {
  height: 400px;
  object-fit: cover;
}



.vertical-divider {
  height: 250px;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.video-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  display: flex;
  align-items: center;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.progress-container {
  flex-grow: 1;
  height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  margin-right: 10px;
  cursor: pointer;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: var(--primary-color);
  border-radius: 2px;
  transition: width 0.1s linear;
}

.time-display {
  color: white;
  font-family: var(--font-body);
  font-size: 0.9rem;
  min-width: 40px;
}

.video-caption {
  text-align: center;
  margin-top: 15px;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
  .video-gallery {
    flex-direction: column;
    gap: 20px;
  }
  
  .main-video {
    width: 100%;
  }
  
  .vertical-divider {
    height: 1px;
    width: 80%;
    margin: 20px 0;
  }

}

/* Chef Section */
.chef-section {
  padding: 80px 20px;
  background-color: rgba(30, 6, 2, 0.9);
  color: white;
}

.chef-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 50px;
}

.chef-image {
  flex: 1;
  min-width: 300px;
}

.chef-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transform: rotate(-3deg);
  transition: transform 0.5s ease;
}

.chef-image img:hover {
  transform: rotate(0deg) scale(1.02);
}

.chef-content {
  flex: 1.5;
}

.chef-content h2 {
  font-family: 'Great Vibes', cursive;
  font-size: 2.8rem;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.chef-content h3 {
  font-size: 2rem;
  margin-bottom: 5px;
  font-weight: 400; /* Regular font weight */
}

.chef-signature img {
  height: 40px;
  margin-bottom: 20px;
  opacity: 0.8;
}

.chef-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
}

.chef-specialties ul {
  list-style: none;
  padding: 0;
}

.chef-specialties li {
  margin-bottom: 10px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.chef-specialties i {
  color: var(--primary-color);
  width: 20px;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .chef-container {
    flex-direction: column;
    gap: 30px;
  }
  
  .chef-image {
    min-width: 250px;
    max-width: 80%;
  }
  
  .chef-content h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .chef-section {
    padding: 60px 15px;
  }
  
  .chef-content h2 {
    font-size: 1.8rem;
  }
  
  .chef-content h3 {
    font-size: 1.5rem;
  }
}

/* Upcoming Events Section */
.events {
  padding: 80px 20px;
  background-color: var(--background-color);
  text-align: center;
}
.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.event-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  height: 400px;
}

.event-poster {
  height: 100%;
  overflow: hidden;
  position: relative;
}

.event-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.event-details {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  padding: 25px;
  transform: translateY(100px);
  transition: all 0.4s ease;
  opacity: 0;
}

.event-card:hover .event-details {
  transform: translateY(0);
  opacity: 1;
}

.event-card:hover .event-poster img {
  transform: scale(1.1);
}

.event-card h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.event-date {
  color: var(--primary-color);
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.event-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.events h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 40px;
}







.event-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}






 
/* Our Special Food Section */
.specials {
  padding: 50px;
  background-color: var(--background-color);
  text-align: center;
}

.specials h2 {
  font-family: var(--font-heading); /* Cursive font for heading */
  font-size: 2.5rem;
  color: var(--secondary-color); /* White color for heading */
  margin-bottom: 40px;
}

.food-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.food-card {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white for cards */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.food-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.food-card img {
  width: 100%;
  height: 200px; /* Adjust height as needed */
  object-fit: cover;
}

.food-card h3 {
  font-family: var(--font-heading); /* Cursive font for food name */
  font-size: 1.8rem;
  color: var(--secondary-color); /* White color for text */
  margin: 15px 0 10px;
}

.food-card p {
  font-size: 1rem;
  color: var(--secondary-color);
  line-height: 1.5;
  padding: 0 20px;
}

.food-card .price {
  font-family: var(--font-heading); /* Cursive font for price */
  font-size: 1.2rem;
  color: var(--secondary-color); /* White color for price */
  font-weight: bold;
  margin: 15px 0;
}
  
  /* Photo Gallery Section with Multiple Images and Smooth Sliding Animation */
  .gallery {
    padding: 50px;
    background-color: var(--background-color);
    text-align: center;
  }

  .gallery h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--secondary-color); /* White color for heading */
    margin-bottom: 20px;
  }

  .gallery-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
  }

.gallery-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.gallery-slide {
  min-width: 33.33%; /* Show 3 images at once */
  box-sizing: border-box;
  padding: 0 10px; /* Add some spacing between images */
}

.gallery-slide img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.gallery-controls {
  margin-top: 20px;
}

.gallery-controls span {
  font-size: 2rem;
  cursor: pointer;
  margin: 0 10px;
  color: var(--secondary-color); /* White color for controls */
}
  
/* Visit Us Section */
.visit-us {
  padding: 50px;
  text-align: center;
  background: var(--background-gradient);
}
.visit-us h2 {
  font-family: var(--font-heading); /* Cursive font for heading */
  font-size: 2.5rem;
  color: var(--secondary-color); /* White color for heading */
  margin-bottom: 20px;
}

.map {
  width: 100%;
  max-width: 800px; /* Adjust this value to control the map's maximum width */
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.map iframe {
  width: 100%;
  height: 400px; /* Adjust this value to control the map's height */
  border: none;
}

.visit-us .btn {
  margin-top: 20px;
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1rem;
}
  
/* Footer Styling */
 /* Footer Styling */
 footer {
  background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent black for footer */
  color: var(--secondary-color);
  padding: 20px;
  text-align: center;
}

footer .logo {
  font-family: var(--font-heading);
  font-size: 2rem;
}

footer .social-media a {
  color: var(--secondary-color);
  margin: 0 10px;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

footer .social-media a:hover {
  color: var(--primary-color);
}

footer .copyright {
  margin-top: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Footer Contact Info - Centered and Stacked */
.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 15px 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-item i {
  color: var(--primary-color);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .contact-info {
    margin: 12px 0;
  }
  
  .contact-item {
    font-size: 0.95rem;
  }
}


/* Animation Keyframes */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@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 scaleUp {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Animation Classes */
.animate-fadeIn {
  animation: fadeIn 1s ease-out forwards;
}

.animate-slideInLeft {
  animation: slideInLeft 1s ease-out forwards;
}

.animate-slideInRight {
  animation: slideInRight 1s ease-out forwards;
}

.animate-scaleUp {
  animation: scaleUp 1s ease-out forwards;
}

/* Hide elements initially */
[data-animate] {
  opacity: 0;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}



/*Mobile*/

/* Existing :root and body styles remain the same */

/* Improved Mobile Responsiveness */
@media (max-width: 768px) {
  /* Logo adjustments */
  .logo-container {
    top: 10px;
    left: 10px;
  }
  
  .site-logo {
    height: 60px;
    width: 60px;
  }
  
  /* Top right buttons */
  .top-right-buttons {
    right: 10px;
    top: 10px;
    gap: 8px;
    padding-left: 80px;
  }
  
  .top-right-buttons a {
    padding: 8px 10px;
    font-size: 0.9rem;
  }
  
  /* Hero section */
  .hero-content h1 {
    font-size: 2.5rem;
    padding: 0 20px;
  }
  
  .hero-content p {
    font-size: 1.1rem;
    padding: 0 20px;
  }
  
  .hero-content .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
  
  /* Description section */
  .description {
    padding: 30px 20px;
  }
  
  .description-content {
    flex-direction: column;
  }
  
  .description-content .image-left,
  .description-content .image-right {
    max-width: 100%;
    margin-bottom: 20px;
  }
  
  .description-content .text {
    padding: 0;
  }
  
  .description-content .text h2 {
    font-size: 2rem;
  }
  
  /* Video section */
  .video-section {
    padding: 30px 20px;
  }
  
  .video-gallery {
    flex-direction: column;
  }
  
  .main-video .custom-video,
  .side-video .custom-video {
    height: 200px;
  }
  
  .vertical-divider {
    height: 1px;
    width: 80%;
    margin: 20px 0;
  }
  
  /* Events section */
  .events {
    padding: 40px 20px;
  }
  
  .event-grid {
    grid-template-columns: 1fr;
  }
  
  .event-card {
    height: 350px;
  }
  
  /* Specials section */
  .specials {
    padding: 30px 20px;
  }
  
  .food-grid {
    grid-template-columns: 1fr;
  }
  
  /* Gallery section */
  .gallery {
    padding: 30px 20px;
  }
  
  .gallery-slide {
    min-width: 50%; /* Show 2 images at once on mobile */
    padding: 0 5px; /* Reduce padding between images */
  }
  /* Visit us section */
  .visit-us {
    padding: 30px 20px;
  }
  
  .map iframe {
    height: 300px;
  }
}

/* Additional small device adjustments */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .top-right-buttons {
    flex-direction: column;
    gap: 5px;
  }
  
  .event-card {
    height: 300px;
  }
  
  .food-card img {
    height: 150px;
  }
}

/* Tablet adjustments (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .description-content {
    flex-direction: column;
  }
  
  .description-content .image-left,
  .description-content .image-right {
    max-width: 60%;
    margin-bottom: 20px;
  }
  
  .event-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .food-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-slide {
    min-width: 50%;
  }
}

/* Existing animations and other styles remain the same */

/* Mobile adjustments */
@media (max-width: 768px) {
  .header-phone {
    font-size: 0.9rem;
    padding: 8px 0;
  }
  .gallery-slide {
    min-width: 50%; /* Show 2 images at once on mobile */
    padding: 0 5px; /* Reduce padding between images */
  }
  
  /* Optional: Show just icon on very small screens */
  @media (max-width: 480px) {
    .header-phone span {
      display: none;
    }

    .gallery-slide {
      min-width: 100%; /* Show 1 image at once on very small screens */
    }
  }
}