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

/* ==============================
   Base Styling
   ============================== */
html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  color: #2e7d32;
  font-family: 'Playfair Display', serif;
}

/* ==============================
   Navbar Styling
   ============================== */
.navbar {
  background-color: #2e7d32;
  padding: 0.8rem 1rem;
  transition: all 0.3s ease-in-out;
}

.navbar-brand {
  color: #fff !important;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
}

.navbar-nav .nav-link {
  color: #fff !important;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #fdd835 !important; /* Italian gold hover */
}

.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  filter: invert(1);
}

@media (max-width: 992px) {
  .navbar-nav {
    text-align: center;
    background-color: #2e7d32;
    border-radius: 0 0 10px 10px;
    padding-bottom: 0.5rem;
  }
}

/* ==============================
   Hero Section
   ============================== */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #fdf6f0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 900px;
  padding: 0 1.5rem;
  animation: fadeInUp 1.5s ease-in-out forwards;
}

.hero-content h1 {
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  line-height: 1.2;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  text-shadow: 1px 1px 5px rgba(0,0,0,0.4);
  margin-bottom: 1rem;
}

.hero-content .btn {
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.8rem 2.2rem;
  border-radius: 50px;
  background-color: #c62828;
  border: 2px solid #c62828;
  color: #fff;
  transition: all 0.3s ease-in-out;
}

.hero-content .btn:hover {
  background-color: #b71c1c;
  transform: scale(1.05);
}

/* ==============================
   Forms (Booking & Contact)
   ============================== */
form {
  max-width: 600px;
  margin: 0 auto;
  background-color: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

form label {
  font-weight: 500;
  color: #2e7d32;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 1.2rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

form input:focus,
form textarea:focus {
  border-color: #2e7d32;
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(46,125,50,0.25);
}

form button {
  background-color: #c62828;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

form button:hover {
  background-color: #b71c1c;
}

/* Responsive form tweaks */
@media (max-width: 768px) {
  form {
    padding: 1.5rem;
  }
  form input,
  form textarea {
    font-size: 0.95rem;
  }
}

/* ==============================
   Testimonials
   ============================== */
.testimonials-section {
  background-color: #fff8f0;
  padding: 4rem 1.5rem;
}

.testimonials-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #b71c1c;
  text-align: center;
  margin-bottom: 2rem;
}

.testimonial {
  color: #444;
  transition: all 0.5s ease;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial p {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: #555;
}

/* ==============================
   About Section
   ============================== */
.about-section {
  padding: 5rem 1.5rem;
  background-color: rgba(255,248,240,0.95);
  border-radius: 20px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
  text-align: center;
  margin: 2rem auto;
  max-width: 1200px;
}

.about-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.about-section p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #555;
  max-width: 700px;
  margin: 0 auto 2rem auto;
}

.about-section img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  margin-top: 20px;
}

/* ==============================
   Menu Section
   ============================== */
.menu-preview {
  background-color: #fff8f0;
  padding: 4rem 1.5rem;
}

.menu-preview .card {
  border: 0;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-preview .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.2);
}

/* ==============================
   Booking CTA
   ============================== */
.booking-cta {
  background: linear-gradient(135deg, #c62828, #2e7d32);
  color: #fff;
  text-align: center;
  padding: 5rem 1.5rem;
}

.object-cover {
  object-fit:cover;
}


/* ==============================
   Footer
   ============================== */
.footer {
  background: #1a1a1a;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 3rem 1.5rem;
  text-align: center;
}

/* ==============================
   Animations
   ============================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==============================
   Extra Responsive Tweaks
   ============================== */
@media (max-width: 400px) {
  .hero-content h1 { font-size: 1.6rem; }
  .hero-content p { font-size: 0.9rem; }
}

@media (min-width: 1600px) {
  body { font-size: 1.1rem; }
  .hero-content h1 { font-size: 3.5rem; }
  .about-section p { font-size: 1.3rem; }
}






