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

:root {
  --primary-color: #e5c87d;
  --secondary-color: #8a6e4b;
  --dark-color: #1c1b18;
  --light-color: #f9f6f1;
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Poppins', sans-serif;
  --accent: #f9f4f0;
}

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

body {
  font-family: 'segoe UI', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fffaf5;
  color: #333;
  line-height: 1.6;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  background-color: var(--dark-color);
  color: white;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  font-family: var(--font-serif);
  color: var(--primary-color);
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none; 
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-color);
}

.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: white;
}

.hero {
  background: url('image background.jpg') center/cover no-repeat;
  padding: 6rem 2rem;
  text-align: center;
  color: var(--light-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--light-color);
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.hero .btn {
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.hero .btn:hover {
  background: var(--dark-color);
}

.hero img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.why-choose-us {
  background-color: #f9f7ed;
  padding: 4rem 2rem;
  text-align: center;
}

.why-choose-us h2 {
  font-size: 2.2rem;
  color: var(--secondary-color);
  margin-bottom: 2rem;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}

.feature {
  width: 300px;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.feature img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.feature h3 {
  margin-top: 15px;
  font-size: 1.2rem;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.feature p {
  font-size: 0.95rem;
  color: #555;
}

h1, h2, h3, h4 {
  font-family: 'Cinzel', serif;
  color: var(--primary-color);
}

p {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--light-color);
}

.button, .cta-button, .hero-btn {
  font-family: var(--font-sans);
  font-weight: 500;
  background-color: var(--primary-color);
  color: #1a1a1a;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  transition: 0.3s ease;
  cursor: pointer;
}

.button:hover,
.cta-button:hover,
.hero-btn:hover {
  background-color: #d9b65e;
  color: #000;
}

.menu-hero {
  padding: 3rem 1rem 2rem;
  background-color: var(--accent);
  text-align: center;
  background-size: cover;
  background-position: center;
  color: var(--dark-color);
}

.menu-hero h2 {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.menu-hero p {
  font-size: 1.1rem;
  color: var(--dark-color);
  max-width: 600px;
  margin: 0 auto;
}

.menu-section {
  padding: 4rem 2rem;
  background-color: #fff;
  text-align: center;
}

.menu-section h3 {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 2rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.menu-item {
  background-color: var(--accent);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  max-width: 350px;
}

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

.menu-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.menu-item h4 {
  font-size: 1.2rem;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.menu-item p {
  font-size: 0.95rem;
  color: var(--dark-color);
  margin-bottom: 1rem;
}
.order-section {
  padding: 4rem 2rem;
  background-color: #fff8f1;
  text-align: center;
  color: var(--dark-color);
}

.order-section h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.order-section p {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #555;
}


.order-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}


.order-form .form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.order-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark-color);
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  padding: 0.8rem;
  font-family: var(--font-sans, 'Segoe UI', sans-serif);
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  background-color: #fafafa;
  transition: border 0.3s ease;
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
  border-color: var(--accent);
  outline: none;
}

.order-form .btn {
  padding: 0.9rem 2rem;
  font-size: 1rem;
  background-color: var(--secondary-color);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.order-form .btn:hover {
  background-color: #6e5538;
}

@media (max-width: 600px) {
  .order-container {
    padding: 1.5rem 1rem;
  }

  .order-section h1 {
    font-size: 2rem;
  }
}
.form-group {
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-family: var(--font-sans);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: var(--font-sans);
  background-color: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn {
  background-color: var(--secondary-color);
  color: #1a1a1a;
  padding: 0.8rem 1.5rem;
  border: none;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
  font-family: var(--font-sans);
}

.btn:hover {
  background-color: #d9b65e;
  color: #000;
}

.about-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 2rem;
  background-color: #fff8f6;
  color: #333;
}

.about-content {
  flex: 1 1 50%;
  max-width: 600px;
  padding-right: 2rem;
}

.about-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  color: #555;
}

.about-image {
  flex: 1 1 40%;
  max-width: 500px;
  padding: 1rem;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}


@media (max-width: 768px) {
  .about-section {
    flex-direction: column-reverse;
    text-align: center;
  }

  .about-content {
    padding: 0;
  }

  .about-image {
    margin-bottom: 2rem;
  }
}

.contact-hero {
  text-align: center;
  padding: 3rem 1rem;
}

.contact-hero h1 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.contact-hero p {
  font-size: 1.1rem;
  color: #555;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 3rem 2rem;
  justify-content: space-between;
}

.contact-info,
.contact-form {
  flex: 1;
  min-width: 300px;
}

.contact-info h2,
.contact-form h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-info p {
  margin-bottom: 0.8rem;
  color: #444;
  line-height: 1.5;
}

.contact-info a {
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
  
}


.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  background-color: #fff;
}

.contact-form button {
  background-color: #8a6e4b;
  padding: 0.9rem;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 1rem;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #6e5538;
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-info,
  .contact-form {
    width: 100%;
  }
}

footer {
  background-color: var(--secondary-color);
  color: var(--light-color);
  text-align: center;
  padding: 2rem;
  margin-top: 2rem;
  font-size: 0.9rem;
}

.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: white;
}

@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    position: relative;
  }

  .hamburger {
    display: block;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
  }

  nav {
    position: relative;
    width: 100%;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: var(--dark-color);
    padding: 1rem 2rem;
    position: absolute;
    top: 100%; 
    left: 0;
    width: 100%;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .hero,
  .about-section,
  .contact-container {
    flex-direction: column;
    text-align: center;
  }

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