/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fffaf4;
  color: #222;
  line-height: 1.6;
}
html {
  scroll-behavior: smooth;
}
a {
  text-decoration: none;
  color: inherit;
}

/* Top Bar */
.top-bar {
  background: #eee4d3;
  color: #555;
  font-size: 14px;
  padding: 10px 20px;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}
select {
  border: none;
  background: transparent;
  font-size: 14px;
}

/* Header */
.site-header {
  background: white;
  padding: 20px 40px;
  border-bottom: 2px solid #cfa14a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.logo-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.main-logo {
  height: 80px;
  margin-bottom: 5px;
}
.motto {
  font-style: italic;
  font-size: 14px;
  color: #6b4f2d;
  max-width: 280px;
  margin-left: 5px;
}
.main-nav {
  display: flex;
  gap: 25px;
  font-weight: 600;
  font-size: 16px;
  font-family: 'Segoe UI', sans-serif;
  flex-wrap: wrap;
}
.main-nav a {
  color: #4a2e00;
  text-transform: uppercase;
  transition: color 0.3s ease, transform 0.2s ease;
  padding: 5px 10px;
}
.main-nav a:hover {
  color: #8b0000;
  transform: scale(1.05);
}

/* Hero */
.hero {
  background: url('../Images/Hero.png') no-repeat center center / cover;
  color: white;
  padding: 120px 20px;
  text-align: center;
}
.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.5rem;
  font-weight: 500;
  color: #f9f6f2;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
  margin-bottom: 30px;
}
.hero .btn {
  background-color: #8b0000;
  color: white;
  padding: 12px 30px;
  border-radius: 5px;
  display: inline-block;
  margin-top: 20px;
  font-weight: 600;
  font-size: 16px;
}

/* Promo Banner */
.promo-banner {
  background: #cfa14a;
  color: white;
  text-align: center;
  padding: 12px;
  font-weight: bold;
}

/* Sections */
.section {
  padding: 60px 20px;
  text-align: center;
}
h1, h2 {
  margin-bottom: 15px;
  color: #333;
}

/* Product Grid */
.grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.card {
  background: white;
  border: 1px solid #ddd;
  border-radius: 10px;
  width: 300px;
  padding: 15px;
  text-align: center;
}
.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}
.btn.small {
  display: inline-block;
  margin-top: 10px;
  background: #8b0000;
  color: white;
  padding: 8px 18px;
  border-radius: 4px;
}

/* Categories */
.category-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.category-box {
  background: #f4e7d4;
  padding: 30px;
  border-radius: 10px;
  font-weight: bold;
  width: 160px;
  text-align: center;
  transition: background 0.3s;
}
.category-box:hover {
  background: #e2cfa5;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 800px;
  margin: auto;
  text-align: left;
}
blockquote {
  background: #fff;
  border-left: 5px solid #cfa14a;
  padding: 20px;
  font-style: italic;
  font-size: 16px;
  border-radius: 6px;
}

/* Newsletter */
.newsletter input {
  padding: 10px;
  width: 250px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-right: 10px;
}
.newsletter button {
  padding: 10px 20px;
  background: #8b0000;
  color: white;
  border: none;
  border-radius: 4px;
}

/* Footer */
footer {
  background: #eee4d3;
  text-align: center;
  padding: 30px 20px;
  font-size: 14px;
}
.socials a {
  margin: 0 10px;
  color: #8b0000;
}

/* About Page */
.about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}
.about-container img {
  width: 400px;
  border-radius: 10px;
}
.about-text {
  max-width: 600px;
  text-align: left;
}
.about-text h2 {
  color: #8b0000;
  margin-bottom: 15px;
}
.about-text p {
  margin-bottom: 12px;
  font-size: 16px;
}

/* Contact Page */
.contact-form {
  padding: 60px 20px;
  max-width: 600px;
  margin: auto;
  text-align: center;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-family: inherit;
}
.contact-form button {
  padding: 12px 30px;
  background-color: #8b0000;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }
  .logo-block {
    align-items: center;
    text-align: center;
  }
  .main-nav {
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
  }
  .main-nav a {
    font-size: 15px;
  }
  .category-box,
  .card {
    width: 90%;
  }
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  background: none;
  font-size: 28px;
  border: none;
  cursor: pointer;
  color: #4a2e00;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    margin-top: 15px;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }

  .main-nav.show {
    display: flex;
  }
}
