/* --- CSS Reset & Global Styles --- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: #333333;
  line-height: 1.6;
  overflow-x: hidden;
}

img{
  max-width: 100%;
  display: block;
  margin-bottom: 10px;
}

p{
  margin-bottom: 30px;
}

ol{
  font-weight: 700;
  text-align: left;
  padding-left: 10px;
}


ol li {
  margin-bottom: 10px;
}

ul li{font-weight: bold;
  margin-bottom: 10px;
  text-align: left;
}

section {
  padding: 5rem 2rem;
}

main{
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}



h1,
h2,
h3 {
  font-weight: 700;
}

h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #8b4513;
}

h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #8b4513;
}

.btn, .btn-order {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #d4a574;
  color: #333333;
  border: 2px solid #d4a574;
}

.btn-primary:hover {
  background: #8b4513;
  color: #ffffff;
  border-color: #8b4513;
}

.page-banner{
  padding: 0;
  background-image: url(../img/banner.jpg);
  background-repeat: no-repeat;
  height: 520px;
  background-size: cover;
 


}

/* --- Header & Navigation --- */
.main-header {
  background: #e2e2e2;
  padding: 1rem 2rem;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  width: 150px;
  height: auto;
  max-height: 120px;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.main-nav a {
  text-decoration: none;
  color: #8b4513;
  font-weight: 600;
  position: relative;
  padding-bottom: 5px;
}

/* --- Hero Section (#home) --- */
#home {
  height: 600px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  background: url("../img/banner.png") no-repeat center center/cover;
  position: relative;
  padding-top: 50px;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-content h1 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 2rem;
}

.hero-content .subtitle {
  font-size: 1.5rem;
  color: #d4a574;
  margin-bottom: 2.5rem;
}

/* --- Featured Dishes Section (#featured) --- */
.dishes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  padding: 70px 0;
}

.dish-card {
  background: #f8f2eb;
  border-radius: 10px;
  text-align: center;
  padding: 3px;
}

.recipe-list{
  padding: 0 20px;
}

.dish-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.dish-card h3 {
  font-size: 1.5em;
  color: #8b4513;
  margin: 1.5rem 0 1rem;
}

.dish-card .btn {
  margin-bottom: 1.5rem;
  background: #8b4513;
  color: #ffffff;
  border: 2px solid #8b4513;
}

.dish-card .btn-order {
  margin-bottom: 1.5rem;
  background: #e99254;
  color: #3d0202;
  border: 2px solid #e99254;
}

/* --- Contact Section (#contact) --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #d4a574;
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
}

.contact-form .btn {
  width: 50%;
  cursor: pointer;
}

.map iframe {
  border: 0;
  border-radius: 10px;
  width: 100%;
  height: 550px;
}

/* --- Footer --- */
.main-footer {
  background: #2c1810;
  color: #ffffff;
  text-align: center;
  padding: 3rem 1rem;
}

.footer-links {
  margin-bottom: 1.5rem;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 1rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #d4a574;
}
