* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: opacity 1s ease-in-out;
  opacity: 1;
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #fad607;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInSlideUp 1.5s ease-out forwards;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

@keyframes fadeInSlideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.typing-text {
  font-size: 1.5rem;
  font-weight: bold;
  overflow: hidden;
  border-right: 3px solid #fad607;
  display: inline-block;
  text-align: center;
  margin-bottom: 30px;
  white-space: nowrap;
  max-width: 90%;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  color: #ffffff;
}

.typing-text span {
  display: inline-block;
  white-space: nowrap;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink-caret {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: #fad607;
  }
}

.button-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-button {
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: bold;
  color: #1f202e;
  background-color: #fad607;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-button:hover {
  background-color: #ffb400;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

/* Intro Container */
.intro_container {
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f3dec4;
   color: white;
  border-radius: 20px;
}

.title {
  text-align: center;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(-30px);
  animation: slideInTop 1s ease-out forwards;
}

.title h1 {
  font-size: 2.5rem;
  color: #333;
}

.content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
}

.text-section {
  flex: 1;
  padding: 20px;
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInLeft 1s ease-out forwards;
  min-width: 300px;
}

.text-section p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  text-align: justify;
}

.image-section {
  flex: 1;
  opacity: 0;
  transform: translateX(50px);
  animation: slideInRight 1s ease-out forwards;
  min-width: 300px;
}

.image-section img {
  width: 100%;
  height: auto;
  max-height: 350px;
  border-radius: 10px;
  object-fit: cover;
}

@keyframes slideInTop {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Services Section */
.services-section {
  padding: 50px 20px;
  background-color: #fff;
  text-align: center;
}

.services-section h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 40px;
}

.services-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.service-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  width: 100%;
  max-width: 300px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  opacity: 0;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-icon {
  font-size: 40px;
  color: #000000;
  margin-bottom: 20px;
  filter: drop-shadow(2px 2px 4px rgba(255, 255, 255, 0.8));
}

.service-card h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
}

.slide-in-left {
  transform: translateX(-100%);
}

.slide-in-center {
  transform: scale(0);
}

.slide-in-right {
  transform: translateX(100%);
}

.animate {
  opacity: 1;
  transform: translateX(0) scale(1);
  transition: all 0.8s ease-out;
}


/* Menu Container */
.menu-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
  background-color: transparent;
}

.menu-container h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #333;
  animation: fadeIn 1s ease-out paused;
}

/* Menu Grid Carousel */
.menu-grid {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 20px 0;
  -ms-overflow-style: none;  /* IE & Edge */
  scrollbar-width: none;     /* Firefox */
}

.menu-grid::-webkit-scrollbar {
  display: none;             /* Chrome, Safari, Opera */
}

.menu-item {
  flex: 0 0 auto;
  width: calc(50% - 10px);   /* 2 items per row on mobile */
  height: 200px;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.menu-item.animate {
  opacity: 1;
  transform: translateY(0);
}

.menu-item:hover {
  transform: scale(1.05);
}

.menu-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* On desktop: 4 items in one row */
@media (min-width: 768px) {
  .menu-item {
    width: calc(25% - 15px);
  }
}

/* Menu Button */
.menu-button-container {
  margin-top: 30px;
}

.menu-button a {
  display: inline-block;
  padding: 12px 24px;
  background-color: #ff6b6b;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.menu-button a:hover {
  background-color: #e55a5a;
}

/* Fullscreen Overlay */
.fullscreen-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.fullscreen-image {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: white;
  cursor: pointer;
  padding: 10px;
}

.nav-arrow.prev {
  left: 10px;
}

.nav-arrow.next {
  right: 10px;
}

.close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
}

/* Carousel Arrows */
.carousel-controls {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.carousel-prev,
.carousel-next {
  font-size: 2rem;
  cursor: pointer;
  user-select: none;
  color: #ff6b6b;
  transition: color 0.3s ease;
}

.carousel-prev:hover,
.carousel-next:hover {
  color: #e55a5a;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .typing-text {
    font-size: 1.3rem;
  }

  .intro_container {
    padding: 15px;
  }

  .title h1 {
    font-size: 2rem;
  }

  .text-section p {
    font-size: 1rem;
  }

  .menu-container h2 {
    font-size: 2rem;
  }

  .menu-item {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: 80vh;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .typing-text {
    font-size: 1rem;
  }

  .button-container {
    flex-direction: column;
    gap: 10px;
  }

  .hero-button {
    font-size: 0.9rem;
    padding: 8px 16px;
  }

  .intro_container {
    height: auto;
    margin: 10px;
  }

  .content {
    flex-direction: column;
  }

  .text-section {
    padding: 15px;
  }

  .image-section {
    padding: 15px;
  }

  .services-container {
    flex-direction: column;
    align-items: center;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .menu-item {
    height: 150px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }

  .typing-text {
    font-size: 0.8rem;
  }

  .hero-button {
    font-size: 0.8rem;
    padding: 6px 12px;
  }

  .title h1 {
    font-size: 1.5rem;
  }

  .text-section p {
    font-size: 0.9rem;
  }

  .services-section h2 {
    font-size: 1.8rem;
  }

  .service-card h3 {
    font-size: 1.2rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }
}