/* =========================
   Global Styles
   ========================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Open Sans', sans-serif;
  background:#faf7f2;
  color:#2b2b2b;
  line-height:1.6;
}

h1,h2,h3{
  font-family:'Playfair Display', serif;
}

section{
  padding:80px 20px;
  text-align:center;
}

/* =========================
   Navbar
   ========================= */

.navbar{
  position:fixed;
  top:0;
  width:100%;
  background:#ffffff;
  padding:18px 50px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  box-shadow:0 2px 10px rgba(0,0,0,0.08);
  z-index:1000;
}

.logo{
  font-size:22px;
  font-weight:700;
}

.navbar nav a{
  margin-left:25px;
  text-decoration:none;
  color:#333;
  font-weight:600;
  transition:0.3s;
}

.navbar nav a:hover{
  color:#b22222;
}

/* prevent hero from hiding under navbar */
body{
  padding-top:80px;
}

/* =========================
   Hero Section
   ========================= */

.hero{
  height:85vh;
  background:
  linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
  url('https://images.unsplash.com/photo-1555992336-03a23c7b20ee');
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
  justify-content:center;
  color:white;
}

.hero-overlay h1{
  font-size:52px;
  margin-bottom:15px;
}

.hero-overlay p{
  font-size:20px;
  margin-bottom:25px;
}

.btn{
  display:inline-block;
  background:#b22222;
  color:white;
  padding:14px 30px;
  text-decoration:none;
  border-radius:6px;
  transition:0.3s;
}

.btn:hover{
  background:#8e1c1c;
}

/* =========================
   About Section
   ========================= */

.about{
  max-width:800px;
  margin:auto;
}

.about h2{
  margin-bottom:20px;
  font-size:34px;
}

.about p{
  margin-bottom:15px;
  color:#555;
}

/* =========================
   Menu Section
   ========================= */

.menu{
  background:#fff;
}

.menu h2{
  font-size:36px;
  margin-bottom:40px;
}

.menu-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px,1fr));
  gap:25px;
  max-width:1000px;
  margin:auto;
}

.menu-item{
  background:#faf7f2;
  padding:25px;
  border-radius:10px;
  box-shadow:0 4px 12px rgba(0,0,0,0.08);
  transition:0.25s;
}

.menu-item:hover{
  transform:translateY(-5px);
}

.menu-item h3{
  margin-bottom:10px;
}

.menu-item p{
  color:#555;
  margin-bottom:12px;
}

.menu-item span{
  font-weight:bold;
  color:#b22222;
  font-size:18px;
}

/* =========================
   Reservation Form
   ========================= */

.reservations{
  background:#f3eee7;
}

.reservations h2{
  margin-bottom:25px;
}

#reservation-form{
  max-width:420px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:15px;
}

#reservation-form input{
  padding:12px;
  border:1px solid #ccc;
  border-radius:6px;
  font-size:15px;
}

#reservation-form button{
  padding:14px;
  border:none;
  background:#b22222;
  color:white;
  font-size:16px;
  border-radius:6px;
  cursor:pointer;
  transition:0.3s;
}

#reservation-form button:hover{
  background:#8e1c1c;
}

/* =========================
   Contact Section
   ========================= */

.contact p{
  margin:6px 0;
  font-size:18px;
}

/* =========================
   Footer
   ========================= */

footer{
  background:#2b2b2b;
  color:white;
  padding:25px;
  margin-top:40px;
}

/* =========================
   Mobile Responsive
   ========================= */

@media(max-width:768px){

  .navbar{
    flex-direction:column;
    gap:10px;
    padding:15px;
  }

  .navbar nav a{
    margin:0 10px;
  }

  .hero-overlay h1{
    font-size:36px;
  }

  .hero-overlay p{
    font-size:16px;
  }

}
