/* ----------------------------
   GLOBAL STYLES
---------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-image: url(spicypics/bg.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: #222;
  line-height: 1.6;
}

/* ----------------------------
   NAVIGATION
---------------------------- */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #d62828;
  color: white;
  padding: 10px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

nav .logo img {
  height: 50px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  padding: 8px 12px;
  transition: 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
  background: #9d0208;
  border-radius: 4px;
}

/* ----------------------------
   SLIDER
---------------------------- */
.slider {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.slides {
  display: flex;
  width: 400%;
  height: 100%;
  animation: slide 16s infinite;
}

.slides img {
  width: 25%;
  height: 100%;
  object-fit: cover;
}

@keyframes slide {
  0%, 20% { transform: translateX(0%); }
  25%, 45% { transform: translateX(-25%); }
  50%, 70% { transform: translateX(-50%); }
  75%, 95% { transform: translateX(-75%); }
  100% { transform: translateX(0%); }
}

@media (max-width: 768px) {
  .slider {
    height: 260px;
  }
}

/* ----------------------------
   ABOUT SECTION
---------------------------- */
.about {
  padding: 50px 20px;
  background: #fff3cd;
  text-align: center;
  border-top: 5px solid #d62828;
  border-bottom: 5px solid #d62828;
}

.about h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #d62828;
}

.about p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  color: #333;
}

/* ----------------------------
   ABOUT PAGE - VIDEO SECTION (Compact)
---------------------------- */
.video-section {
  background: #fff;
  padding: 40px 20px;
  text-align: center;
  border-top: 4px solid #f77f00;
  border-bottom: 4px solid #f77f00;
}

.video-section h2 {
  color: #d62828;
  margin-bottom: 25px;
  font-size: 1.6rem;
  font-weight: 700;
}

/* Video Grid - Two Columns */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  justify-items: center;
}

/* Compact video box */
.video-item iframe {
  width: 100%;
  max-width: 480px;
  height: 270px; /* standard 16:9 ratio for compact layout */
  border: 4px solid #ff7f11;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.video-item iframe:hover {
  transform: scale(1.03);
  border-color: #ffb703;
}

/* Smaller screens */
@media (max-width: 600px) {
  .video-item iframe {
    max-width: 100%;
    height: 200px;
  }
}

/* ----------------------------
   REVIEWS SECTION
---------------------------- */
.reviews {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 40px 20px;
  background: #f8f9fa;
}

.review-box {
  flex: 1 1 300px;
  margin: 10px;
  padding: 20px;
  background: #ffffff;
  border: 3px solid #f77f00;
  text-align: center;
  border-radius: 10px;
  font-weight: bold;
  color: #9d0208;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.15);
}

/* ----------------------------
   SELF PICKUP ORDER SECTION
---------------------------- */
.pickup-section {
  background: #fff3e0;
  text-align: center;
  padding: 60px 20px;
  border-top: 5px solid #f77f00;
  border-bottom: 5px solid #f77f00;
}

.pickup-section h2 {
  color: #d62828;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.pickup-section p {
  color: #333;
  font-size: 1rem;
  margin-bottom: 25px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.pickup-btn {
  display: inline-block;
  background: #d62828;
  color: white;
  padding: 14px 28px;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.pickup-btn:hover {
  background: #9d0208;
  transform: scale(1.05);
}

/* ----------------------------
   MENU PAGE
---------------------------- */
.menu-sections {
  padding: 40px;
  max-width: 1100px;
  margin: auto;
  background: #fff;
}

.menu-category {
  margin-bottom: 60px;
}

.menu-category h2 {
  text-align: center;
  font-size: 2rem;
  color: #ff7f11;
  margin-bottom: 25px;
  border-bottom: 3px solid #ff7f11;
  display: inline-block;
  padding-bottom: 5px;
}

/* Grid layout like gallery */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-items: center;
}

.menu-item {
  text-decoration: none;
  color: #333;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover {
  transform: scale(1.05);
  cursor: pointer;
}

/* Orange frame for menu items */
.menu-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border: 6px solid #ff7f11;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.menu-item img:hover {
  border-color: #ffb703;
}

.menu-item p {
  margin-top: 10px;
  font-weight: bold;
  color: #9d0208;
  font-size: 1rem;
}

/* Responsive Menu Layout */
@media (max-width: 900px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
}

/* ----------------------------
   GALLERY PAGE
---------------------------- */
.gallery {
  padding: 40px;
  text-align: center;
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border: 8px solid #d32f2f;
  border-radius: 10px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  border-color: #ff3b3b;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ----------------------------
   CONTACT PAGE
---------------------------- */
.contact-section {
  padding: 50px 20px;
  max-width: 1100px;
  margin: auto;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.contact-info {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.contact-info h2 {
  color: #c62828;
  margin-bottom: 15px;
}

/* CONTACT BUTTON COLORS */
.contact-links {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.btn {
  color: white;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: 0.3s ease-in-out;
}

/* Blue - Call Button */
.call-btn {
  background-color: #007bff;
}
.call-btn:hover {
  background-color: #0056b3;
  transform: scale(1.05);
}

/* Green - WhatsApp Button */
.whatsapp-btn {
  background-color: #25d366;
}
.whatsapp-btn:hover {
  background-color: #1ebc57;
  transform: scale(1.05);
}

/* Red-Orange - Self Pickup Button */
.order-btn {
  background-color: #ff7f11;
}
.order-btn:hover {
  background-color: #ff4d00;
  transform: scale(1.05);
}

/* FEEDBACK FORM */
.feedback-form {
  flex: 1;
  min-width: 300px;
  background: #fff3e0;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.feedback-form h3 {
  text-align: center;
  color: #c62828;
  margin-bottom: 20px;
}

.feedback-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feedback-form input,
.feedback-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

.feedback-form button {
  background: #c62828;
  color: white;
  border: none;
  padding: 12px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.feedback-form button:hover {
  background: #b71c1c;
  transform: scale(1.05);
}

/* ----------------------------
   FOOTER
---------------------------- */
footer {
  background: #000;
  color: white;
  padding: 20px;
  text-align: center;
}

footer p {
  margin-bottom: 10px;
  font-weight: bold;
  color: #ffba08;
}

.map-container {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  border: 4px solid #f44336;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.map-container iframe {
  width: 100%;
  height: 350px;
  display: block;
  border: 0;
}
