@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Poppins:wght@300;400;600&display=swap');

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #f8f9fa17;
  color: #333;
  overflow-x: hidden;
  line-height: 1.6;
}

.section-bordered {
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  position: relative;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #1a1a1a;
  overflow: hidden;
}

.hero-image-container {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.flame-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 8vw, 90px);
  color: #d2691e;
  font-weight: 600;
  letter-spacing: 2px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  margin-bottom: 10px;
}


.tagline {
  font-size: clamp(16px, 3vw, 22px);
  color: #e0e0e0;
  letter-spacing: 0.5px;
  font-weight: 300;
  margin: 10px 0 20px;
  padding: 0 20px;
}

.book-btn {
  margin-top: 25px;
  padding: 14px 32px;
  background: #d2691e;
  border: none;
  color: #fff;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: clamp(14px, 2.5vw, 16px);
  letter-spacing: 0.5px;
  min-width: 140px;
}
.book-btn:hover {
  background: #b8571a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(210, 105, 30, 0.3);
}

/* ABOUT */
.about {
  background: #fff;
  color: #333;
  padding: 80px 12%;
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
}

.about h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 42px);
  color: #2c2c2c;
  margin-bottom: 30px;
  font-weight: 600;
  text-align: center;
}

.about p {
  font-size: clamp(16px, 2.5vw, 18px);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #555;
  padding: 0 20px;
  text-align: center;
}

.about-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0 10px;
}

.about-images img {
  width: 100%;
  max-width: 340px;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  flex: 1;
  min-width: 280px;
}
.about-images img:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* MENU */
.menu {
  background: #f8f9fa;
  padding: 80px 13%;
  text-align: center;
  padding-left: 10px;
  box-sizing: border-box;
}

.menu h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 42px);
  color: #2c2c2c;
  margin-bottom: 50px;
  font-weight: 600;
  text-align: center;
  padding: 0 20px;
}

.menu-layout {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.menu-category {
  width: 70%;
  margin: auto;
  background: #fff;
  padding: 35px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.menu-category:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.menu-category.left { align-self: flex-start; }
.menu-category.right { align-self: flex-end; }

.menu-category h3 {
  color: #d2691e;
  font-size: 24px;
  text-transform: uppercase;
  border-bottom: 2px solid #d2691e;
  padding-bottom: 12px;
  margin-bottom: 20px;
  text-align: left;
  font-weight: 600;
  letter-spacing: 1px;
}

.menu-category ol {
  list-style: decimal;
  padding-left: 20px;
  text-align: left;
}

.menu-category li {
  margin: 8px 0;
  color: #555;
  font-weight: 400;
  line-height: 1.6;
  font-size: 16px;
}

/* BOOKING */
.booking {
  background: #fff;
  color: #333;
  text-align: center;
  padding: 80px 10%;
  box-sizing: border-box;
}

.booking h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 42px);
  color: #2c2c2c;
  margin-bottom: 20px;
  font-weight: 600;
  text-align: center;
  padding: 0 20px;
}

.booking p {
  font-size: clamp(16px, 2.5vw, 18px);
  color: #666;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  text-align: center;
}


/* FOOTER */
footer {
  background: #2c2c2c;
  text-align: center;
  padding: 50px 0;
  color: #e0e0e0;
  border-top: 1px solid #ddd;
}

footer a {
  color: #d2691e;
  text-decoration: none;
  transition: color 0.3s ease;
}
footer a:hover {
  color: #b8571a;
  text-decoration: underline;
}

/* MOBILE-FIRST RESPONSIVE DESIGN */

/* Large screens (1200px and up) */
@media (min-width: 1200px) {
  .hero {
    height: 100vh;
  }
  
  .hero-dish {
    width: 500px;
  }
  
  .about, .menu, .booking {
    padding: 100px 15%;
  }
}

/* Tablets and small laptops (768px to 1199px) */
@media (max-width: 1199px) and (min-width: 769px) {
  .hero {
    height: 100vh;
    min-height: 500px;
  }
  
  .hero-dish {
    width: 350px;
    opacity: 0.3;
  }
  
  .about, .menu, .booking {
    padding: 80px 10%;
  }
  
  .menu-category {
    width: 80%;
  }
}

/* Mobile landscape and small tablets (481px to 768px) */
@media (max-width: 768px) {
  .hero {
    height: 100vh;
    min-height: 500px;
  }
  
  .hero-image-container {
    width: 150px;
    height: 150px;
    right: 20px;
  }
  
  .hero-content {
    padding: 0 15px;
  }
  
  .flame-text {
    font-size: clamp(40px, 8vw, 60px);
    margin-bottom: 15px;
  }
  
  .tagline {
    font-size: clamp(14px, 3vw, 18px);
    margin: 10px 0 25px;
    padding: 0 15px;
  }
  
  .book-btn {
    padding: 12px 28px;
    font-size: clamp(13px, 2.5vw, 15px);
  }
  
  .about, .menu, .booking {
    padding: 60px 8%;
  }
  
  .about h2, .menu h2, .booking h2 {
    font-size: clamp(28px, 5vw, 36px);
    margin-bottom: 25px;
  }
  
  .about p {
    font-size: clamp(15px, 2.5vw, 16px);
    padding: 0 15px;
  }
  
  .about-images {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
  }
  
  .about-images img {
    width: 100%;
    max-width: 100%;
    height: 200px;
    min-width: auto;
  }
  
  .menu-category {
    width: 95%;
    padding: 25px 20px;
    margin-bottom: 20px;
  }
  
  .menu-category h3 {
    font-size: clamp(18px, 4vw, 20px);
  }
  
  .menu-category li {
    font-size: clamp(14px, 2.5vw, 15px);
    margin: 5px 0;
  }
  
  .modal {
    padding: 15px;
  }
  
  .modal-content {
    padding: 30px 20px;
    margin: 0;
    width: 100%;
    max-height: 85vh;
  }
  
  .modal-content h2 {
    font-size: clamp(24px, 5vw, 28px);
    margin-bottom: 15px;
  }
  
  .modal-content p {
    font-size: 15px;
    margin-bottom: 25px;
  }
  
  .booking-form input,
  .booking-form textarea {
    font-size: 16px; /* Prevents zoom on iOS */
    padding: 14px 16px;
  }
  
  .booking-form button {
    padding: 14px 24px;
    font-size: 15px;
  }
}

/* Mobile portrait (320px to 480px) */
@media (max-width: 480px) {
  .hero {
    height: 100vh;
    min-height: 400px;
  }
  
  .hero-image-container {
    width: 120px;
    height: 120px;
    right: 15px;
  }
  
  .hero-content {
    padding: 0 10px;
  }
  
  .flame-text {
    font-size: clamp(36px, 10vw, 48px);
    letter-spacing: 1px;
  }
  
  .tagline {
    font-size: clamp(14px, 4vw, 16px);
    padding: 0 10px;
  }
  
  .book-btn {
    padding: 12px 24px;
    font-size: 14px;
    min-width: 120px;
  }
  
  .about, .menu, .booking {
    padding: 40px 5%;
  }
  
  .about h2, .menu h2, .booking h2 {
    font-size: clamp(24px, 6vw, 32px);
    margin-bottom: 20px;
  }
  
  .about p {
    font-size: 15px;
    padding: 0 10px;
    line-height: 1.6;
  }
  
  .about-images {
    margin-top: 25px;
    gap: 10px;
  }
  
  .about-images img {
    height: 180px;
    border-radius: 6px;
  }
  
  .menu-category {
    width: 100%;
    padding: 20px 15px;
    margin-bottom: 15px;
  }
  
  .menu-category h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  .menu-category li {
    font-size: 14px;
    margin: 4px 0;
    line-height: 1.5;
  }
  
  .modal {
    padding: 10px;
    align-items: flex-start;
    padding-top: 20px;
  }
  
  .modal-content {
    padding: 25px 15px;
    margin: 0;
    width: 100%;
    max-height: 90vh;
    border-radius: 8px;
  }
  
  .modal-content h2 {
    font-size: 22px;
    margin-bottom: 15px;
  }
  
  .modal-content p {
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .booking-form input,
  .booking-form textarea {
    padding: 12px 14px;
    font-size: 16px;
    margin-bottom: 15px;
  }
  
  .booking-form button {
    padding: 12px 20px;
    font-size: 14px;
    width: 100%;
  }
  
  .close {
    font-size: 24px;
    right: 10px;
    top: 10px;
  }
  
  footer {
    padding: 30px 0;
  }
  
  footer p {
    font-size: 14px;
    margin: 5px 0;
  }
}

/* Extra small devices (320px and below) */
@media (max-width: 320px) {
  .hero {
    min-height: 350px;
  }
  
  .hero-image-container {
    width: 100px;
    height: 100px;
    right: 10px;
  }
  
  .hero-content {
    padding: 0 5px;
  }
  
  .flame-text {
    font-size: 32px;
  }
  
  .tagline {
    font-size: 13px;
  }
  
  .about, .menu, .booking {
    padding: 30px 3%;
  }
  
  .about-images img {
    height: 150px;
  }
  
  .menu-category {
    padding: 15px 10px;
  }
  
  .modal {
    padding: 5px;
    align-items: flex-start;
    padding-top: 10px;
  }
  
  .modal-content {
    padding: 20px 10px;
    margin: 0;
    width: 100%;
    max-height: 95vh;
    border-radius: 6px;
  }
  
  .modal-content h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .modal-content p {
    font-size: 13px;
    margin-bottom: 15px;
  }
  
  .booking-form input,
  .booking-form textarea {
    padding: 10px 12px;
    font-size: 16px;
    margin-bottom: 12px;
  }
  
  .booking-form button {
    padding: 10px 16px;
    font-size: 13px;
    width: 100%;
  }
  
  .close {
    font-size: 22px;
    right: 8px;
    top: 8px;
  }
}

/* BOOKING POPUP */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(5px);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.4s ease;
  overflow-y: auto;
  padding: 20px;
  box-sizing: border-box;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  background: #fff;
  color: #333;
  padding: 40px 30px;
  border-radius: 12px;
  width: 100%;
  max-width: 500px;
  position: relative;
  text-align: center;
  border: 1px solid #ddd;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  animation: slideUp 0.3s ease;
  box-sizing: border-box;
  margin: 0 auto;
  max-height: 90vh;
  overflow-y: auto;
}

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

.modal-content h2 {
  color: #2c2c2c;
  font-family: 'Playfair Display', serif;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 600;
}

.modal-content p {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.5;
}

.close {
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 28px;
  color: #999;
  cursor: pointer;
  transition: color 0.2s ease;
  font-weight: 300;
  padding: 5px;
  min-width: 40px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0,0,0,0.05);
}
.close:hover {
  color: #666;
}

.booking-form .form-group {
  margin-bottom: 15px;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  touch-action: manipulation;
}

.booking-form input:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: #d2691e;
  box-shadow: 0 0 0 2px rgba(210, 105, 30, 0.1);
}

.booking-form button {
  margin-top: 20px;
  width: 100%;
  padding: 14px;
  font-size: 16px;
}



