
/* ===== BASE RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  background-color: #faf8f5;
  color: #3a3a3a;
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
}

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

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #4a6741;
  letter-spacing: 1px;
}

.nav-links a {
  margin-left: 30px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #5a5a5a;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #4a6741;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 30px 80px;
  background: linear-gradient(180deg, #f0ebe4 0%, #faf8f5 100%);
}

.hero-content {
  max-width: 700px;
}

.hero-tag {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.75rem;
  color: #8a7e6b;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.15;
  color: #2c3e2d;
  margin-bottom: 25px;
}

.hero-sub {
  font-size: 1.05rem;
  color: #6b6b6b;
  max-width: 500px;
  margin: 0 auto 35px;
}

.hero-btn {
  display: inline-block;
  padding: 14px 40px;
  background-color: #4a6741;
  color: #fff;
  border-radius: 50px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: background 0.3s, transform 0.2s;
}

.hero-btn:hover {
  background-color: #3b5534;
  transform: translateY(-2px);
}

/* ===== FEATURED BANNER ===== */
.featured-banner {
  background-color: #4a6741;
  color: #fff;
  text-align: center;
  padding: 15px 20px;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

/* ===== PRODUCTS ===== */
.products-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 30px;
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  color: #2c3e2d;
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 0.9rem;
  color: #8a8a8a;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 50px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.product-card {
  background: #fff;
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid #ebe8e3;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.product-img-placeholder {
  font-size: 3rem;
  margin-bottom: 18px;
}

.product-card h3 {
  font-size: 1.3rem;
  color: #2c3e2d;
  margin-bottom: 8px;
}

.product-desc {
  font-size: 0.88rem;
  color: #888;
  margin-bottom: 15px;
}

.product-price {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #4a6741;
  margin-bottom: 18px;
}

.product-btn {
  display: inline-block;
  padding: 10px 28px;
  border: 1.5px solid #4a6741;
  border-radius: 50px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #4a6741;
  transition: all 0.3s;
}

.product-btn:hover {
  background-color: #4a6741;
  color: #fff;
}

/* ===== STORY ===== */
.story-section {
  background-color: #f0ebe4;
  padding: 80px 30px;
}

.story-container {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}

.story-tag {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.75rem;
  color: #8a7e6b;
  margin-bottom: 15px;
}

.story-section h2 {
  font-size: 2.2rem;
  color: #2c3e2d;
  margin-bottom: 20px;
}

.story-text p {
  font-size: 1rem;
  color: #5a5a5a;
  margin-bottom: 15px;
}

.founder-sign {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: #4a6741;
  margin-top: 20px;
}

/* ===== COMMUNITY ===== */
.community-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 30px;
  text-align: center;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 10px;
}

.community-card {
  background: #f0ebe4;
  border-radius: 12px;
  padding: 50px 20px;
  font-size: 0.95rem;
  color: #6b6b6b;
  transition: transform 0.3s;
}

.community-card:hover {
  transform: scale(1.03);
}

/* ===== ORDER SECTION ===== */
#order-section {
  text-align: center;
  padding: 60px 30px;
  background: #faf8f5;
  max-width: 800px;
  margin: 0 auto;
}

#order-section h2 {
  font-size: 2rem;
  color: #2c3e2d;
  margin-bottom: 10px;
}

.order-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 40px;
  background-color: #4a6741;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.order-btn:hover {
  background-color: #3b5534;
  transform: translateY(-2px);
}

.closed-message {
  color: #8a8a8a;
  font-size: 0.95rem;
  margin-top: 8px;
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
  background: #4a6741;
  color: #fff;
  text-align: center;
  padding: 60px 30px;
}

.newsletter-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #fff;
}

.newsletter-section p {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 25px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter-form input {
  padding: 14px 22px;
  border: none;
  border-radius: 50px;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  width: 300px;
  outline: none;
}

.newsletter-form button {
  padding: 14px 32px;
  background: #fff;
  color: #4a6741;
  border: none;
  border-radius: 50px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
}

.newsletter-form button:hover {
  background: #f0ebe4;
}

/* ===== FOOTER ===== */
footer {
  background: #2c3e2d;
  color: #c5c5b8;
  padding: 60px 30px 20px;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.footer-col h3 {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 10px;
}

.footer-col h4 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col p {
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 8px;
  color: #c5c5b8;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.4rem;
  }

  .nav-links a {
    margin-left: 15px;
    font-size: 0.75rem;
  }

  .newsletter-form input {
    width: 100%;
  }
}

