body {
  font-family: 'Raleway', sans-serif;
  margin: 0;
  padding: 0;
  background: #fff9f6;
  color: #333;
}

header {
  background-color: #ff6f61;
  color: white;
  padding: 20px;
  text-align: center;
}

header h1 {
  margin: 0;
  font-weight: 700;
}

header p {
  margin: 5px 0 15px 0;
  font-weight: 400;
  font-style: italic;
}
nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 12px;
  font-weight: 600;
  font-size: 16px;
}

nav a.order-btn {
  background-color: #fff;
  color: #ff6f61;
  padding: 8px 14px;
  border-radius: 25px;
  font-weight: 700;
  white-space: nowrap;
}

nav a.order-btn:hover {
  background-color: #f25444;
  color: white;
}

section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

h2 {
  text-align: center;
  font-weight: 700;
  color: #ff6f61;
  margin-bottom: 30px;
}

.menu-main-heading {
  font-size: 36px;
  font-weight: 700;
  color: #ff6f61;
  margin: 40px 0 20px 0;
  text-align: center;
  text-transform: uppercase;
}

.menu-category {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  gap: 30px;
}

.menu-category .items {
  flex: 1;
}

.menu-category img {
  width: 250px;
  border-radius: 15px;
  object-fit: cover;
  height: 180px;
}

.menu-category h3 {
  color: #ff6f61;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.menu-category ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.menu-category ul li {
  font-size: 16px;
  padding: 6px 0;
  border-bottom: 1px solid #ffebe7;
}
.signature-drinks {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.signature-item {
  text-align: center;
  width: 120px;
}

.signature-item img {
  width: 100%;
  border-radius: 10px;
  height: 100px;
  object-fit: cover;
  margin-bottom: 8px;
}

.signature-item p {
  font-weight: 600;
  color: #ff6f61;
}

.slideshow {
  overflow: hidden;
  margin-top: 30px;
}

.slideshow-wrapper {
  display: flex;
  animation: slide 3s linear infinite;
}

.slideshow-wrapper img {
  width: 200px;
  margin-right: 20px;
  border-radius: 10px;
  flex-shrink: 0;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.video-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: nowrap; /* Keep videos in one row */
  margin-top: 20px;
}

.video-wrapper video {
  width: 22%;       /* Four videos side by side */
  max-width: none;
  border-radius: 10px;
}

#about p,
#social p,
#contact p {
  max-width: 700px;
  margin: 0 auto 20px auto;
  font-size: 18px;
  line-height: 1.5;
}

#social a {
  color: #ff6f61;
  text-decoration: none;
  font-weight: 700;
  margin: 0 8px;
}

#social a:hover {
  text-decoration: underline;
}

.fb-post iframe {
  border-radius: 10px;
  max-width: 700px;
  margin: 20px auto;
  display: block;
}

#contact a {
  color: #ff6f61;
  text-decoration: none;
  font-weight: 600;
}

#contact a:hover {
  text-decoration: underline;
}

footer {
  background-color: #ff6f61;
  color: white;
  text-align: center;
  padding: 12px 0;
  margin-top: 40px;
  font-size: 14px;
}

@media (max-width: 480px) {
  .slideshow-wrapper {
    animation: none;           /* Stop sliding animation on small screens */
    overflow-x: auto;          /* Enable horizontal scrolling */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS devices */
  }

  .slideshow-wrapper img {
    width: 120px;              /* Make images smaller on mobile */
    margin-right: 10px;        /* Reduce space between images */
  }
}
