/* Reset & basic setup */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: white;
  color: #3c3c3c;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* Header */
.header {
  background-color: #c1440e;
  color: #fff;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  letter-spacing: 2px;
  text-align: center;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  margin-top: 10px;
  gap: 40px;
}

nav ul li a {
  color:white;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 15px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
  background-color: white;
  color: #c1440e;
  box-shadow: 0 0 8px #c1440e;
}

/* Hero Section */
.hero-section {
  background: url('homepage.jpg') center/cover no-repeat;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 0 20px;
  position: relative;
  
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3.8rem;
  margin-bottom: 15px;
  text-shadow: 0 4px 6px rgba(0,0,0,0.4);
}

.hero-section p {
  font-size: 1.3rem;
  margin-bottom: 25px;
  font-weight: 500;
  text-shadow: 0 2px 5px rgba(0,0,0,0.4);
}

.btn {
  padding: 14px 32px;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-primary {
  background-color: #ff5a09;
  color: white;
  box-shadow: 0 4px 12px rgba(255, 90, 9, 0.6);
}

.btn-primary:hover {
  background-color: #c1440e;
  box-shadow: 0 6px 15px rgba(193, 68, 14, 0.8);
}

/* Menu Section */
.menu-section {
  padding: 30px 0;
  background-color: #fff8f0;
  text-align: center;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: #c1440e;
  margin-bottom: 40px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 0 20px;
}

.menu-item {
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.menu-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(193, 68, 14, 0.3);
}

.menu-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.menu-item:hover img {
  transform: scale(1.1);
}

.item-info {
  padding: 15px 20px 25px 20px;
  text-align: left;
}

.item-info h3 {
  color: #c1440e;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 1.3rem;
}

.item-info p {
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: #555;
  line-height: 1.4;
}

.price {
  font-weight: 700;
  font-size: 1.2rem;
  color: #ff5a09;
}






 


/* Booking Section */
.booking-section {
  padding: 60px 0;
  background-color: #fff0e5;
  text-align: center;
}

.booking-form {
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
  background: white;
  padding: 30px 40px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(193, 68, 14, 0.15);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  color: #c1440e;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1.5px solid #ddd;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #c1440e;
  outline: none;
}

.booking-form button {
  width: 100%;
}

/* Contact Section */
.contact-section {
  padding: 60px 20px;
  background-color: #fff8f0;
  text-align: center;
  font-size: 1.1rem;
  color: #333;
}

.contact-section p {
  margin: 10px 0;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Footer */
.footer {
  background-color: #c1440e;
  color: white;
  text-align: center;
  padding: 15px;
  font-size: 0.9rem;
  letter-spacing: 1.2px;
  margin-top: 40px;
}

/* Responsive tweaks */
/* @media (max-width: 380px) {
  .hero-section h2 {
    font-size: 2.2rem;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
  }
} */


/* For tablets (portrait) */
@media (max-width: 768px) {
  .logo {
    font-size: 2rem;
  }

  nav ul {
    flex-wrap: wrap;
    gap: 20px;
  }

  .hero-section {
    height: 60vh;
    padding: 40px 15px;
  }

  .hero-section h2 {
    font-size: 2.6rem;
  }

  .hero-section p {
    font-size: 1.1rem;
  }

  .menu-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .item-info h3 {
    font-size: 1.1rem;
  }

  .price {
    font-size: 1rem;
  }
}

/* For phones (small landscape & portrait) */
@media (max-width: 480px) {
  .hero-section {
    height: 50vh;
  }

  .hero-section h2 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .hero-section p {
    font-size: 1rem;
  }

  nav ul {
    flex-direction: column;
    gap: 12px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .booking-form {
    padding: 20px;
  }

  .booking-form button {
    font-size: 1rem;
    padding: 12px;
  }
}

/* For larger desktops */
@media (min-width: 1200px) {
  .hero-section h2 {
    font-size: 4.5rem;
  }

  .hero-section p {
    font-size: 1.5rem;
  }
}
