/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Simple Organic Font */
@font-face {
  font-family: 'Simple Organic';
  src: url('../fonts/simple-organic/Simple Organic.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --brown-dark: #3d2817;
  --brown-medium: #8c503a;
  --brown-light: #a67c52;
  --cream: #f5e6d3;
  --white: #ffffff;
  --script-font: 'Dancing Script', cursive;
  --serif-font: 'Playfair Display', serif;
  --sans-font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --header-font: 'Simple Organic', sans-serif;
}

body {
  font-family: var(--sans-font);
  line-height: 1.6;
  color: var(--brown-dark);
  background: var(--white);
}

img {
  max-width: 100%;
  display: block;
}

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

ul {
  list-style: none;
}

h1, h2, h3 {
  font-family: var(--serif-font);
  color: var(--brown-dark);
}

/* Use Simple Organic for all main headings */
h1,
h2,
h3 {
  font-family: var(--header-font);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
.site-header {
  background: var(--white);
  border-bottom: 1px solid rgba(61, 40, 23, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 2rem;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  width: 100%;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 3rem;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-family: var(--header-font);
  font-weight: 400;
  color: var(--brown-dark);
  flex-wrap: wrap;
}

.nav-links a {
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover {
  color: var(--brown-light);
}

.nav-links a.active {
  color: var(--brown-medium);
  font-weight: 600;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--brown-medium);
  border-radius: 2px;
}

.btn-header {
  background: var(--brown-light);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-family: var(--header-font);
  font-size: 1.2rem;
  font-weight: 400;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}

.btn-header:hover {
  background: var(--brown-medium);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  position: relative;
  height: 80vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-background::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
}

.hero-subtitle {
  font-family: var(--header-font);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.5);
  font-weight: 400;
}

.hero-title {
  font-family: var(--header-font);
  font-size: 4.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.9), 0 0 15px rgba(0, 0, 0, 0.6);
  letter-spacing: 0.1em;
  color: #ffffff;
}

.hero-tagline {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.5);
  font-family: var(--header-font);
  font-weight: 200;
}

.btn-hero {
  background: var(--brown-light);
  color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-block;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-hero:hover {
  background: var(--brown-medium);
  transform: translateY(-2px);
}

/* Features Section */
.features {
  padding: 5rem 0;
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(140px, 1fr));
  gap: 3rem;
  text-align: center;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.feature-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid var(--brown-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown-light);
}

.feature-icon svg {
  width: 50px;
  height: 50px;
}

.feature-item h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.feature-item p {
  color: #6d5b4f;
  line-height: 1.6;
}

.features-notes {
  margin-top: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: #6d5b4f;
  font-size: 0.95rem;
}

/* Products Section */
.products-section {
  padding: 5rem 0;
  background: var(--white);
}

.products-cta-wrapper {
  text-align: center;
  margin-bottom: 2rem;
}

.products-cta-link {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  border-radius: 999px;
  border: 1px solid var(--brown-light);
  color: var(--brown-dark);
  font-family: var(--sans-font);
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: #fffaf4;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.products-cta-link:hover {
  background: var(--brown-light);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.14);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(320px, 1fr));
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.product-card {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-link {
  flex: 1;
  display: flex;
  flex-direction: column;
  color: inherit;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(0, 0, 0, 0.15);
}

.product-image {
  width: 100%;
  height: 280px;
  border-radius: 16px;
  margin-bottom: 2rem;
  background: #f1e5d8;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  min-height: 4em;
  font-weight: 600;
}

.product-cta {
  display: inline-block;
  padding: 1rem 2.2rem;
  border-radius: 999px;
  border: 2px solid var(--brown-light);
  color: var(--brown-dark);
  font-family: var(--sans-font);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: auto;
  text-align: center;
  width: 100%;
}

.product-cta:hover {
  background: var(--brown-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.14);
}

/* Product Detail Layout */
.product-detail {
  padding: 5rem 0;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: start;
}

.product-detail-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.product-detail-info h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.product-detail-info p {
  color: #6d5b4f;
  margin-bottom: 1rem;
}

.product-detail-info ul {
  margin: 1rem 0 2rem;
  padding-left: 1.2rem;
  color: #6d5b4f;
}

.product-detail-info ul li {
  margin-bottom: 0.5rem;
}

.breadcrumb {
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  color: #8d7a6c;
}

.breadcrumb a {
  color: var(--brown-light);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* About Section */
.about-section {
  padding: 5rem 0;
  background: #faf8f5;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 600;
}

.about-content p {
  color: #6d5b4f;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.btn-about {
  display: inline-block;
  padding: 0.75rem 2rem;
  border: 2px solid var(--brown-light);
  border-radius: 6px;
  color: var(--brown-dark);
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}

.btn-about:hover {
  background: var(--brown-light);
  color: var(--white);
}

.about-image {
  position: relative;
}

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

.testimonial-quote {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 8px;
  font-family: var(--script-font);
  font-size: 1.25rem;
  color: var(--brown-dark);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  font-style: italic;
}

.testimonial-quote cite {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  font-family: var(--sans-font);
  font-style: normal;
  color: #6d5b4f;
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background: #faf8f5;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  background: var(--white);
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--sans-font);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brown-dark);
  transition: background 0.3s ease, color 0.3s ease;
  position: relative;
}

.faq-question:hover {
  background: #fffaf4;
  color: var(--brown-medium);
}

.faq-question span:first-child {
  flex: 1;
  padding-right: 1.5rem;
  line-height: 1.5;
}

.faq-icon {
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--brown-light);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  width: 30px;
  text-align: center;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  color: var(--brown-medium);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: var(--white);
}

.faq-answer.active {
  max-height: 500px;
  padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
  color: #6d5b4f;
  line-height: 1.8;
  font-size: 1rem;
  margin: 0;
  padding-top: 0.5rem;
}

/* Blog Section */
.blog-section {
  padding: 5rem 0;
  background: var(--white);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  font-weight: 600;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card > * {
  padding: 0 1.5rem;
}

.blog-date {
  padding-top: 1.5rem;
  color: #6d5b4f;
  font-size: 0.9rem;
}

.blog-card h3 {
  padding-top: 0.5rem;
  padding-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.blog-link {
  display: inline-block;
  padding-bottom: 1.5rem;
  color: var(--brown-light);
  font-weight: 600;
  transition: color 0.2s;
}

.blog-link:hover {
  color: var(--brown-medium);
}

/* CTA Banner */
.cta-banner {
  position: relative;
  padding: 6rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px);
}

.cta-background::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 0 2rem;
}

.cta-subtitle {
  font-family: var(--script-font);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--cream);
}

.cta-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.7);
  font-weight: 700;
  color: #ffffff;
}

.cta-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #fdf4e6;
  line-height: 1.6;
}

.btn-cta {
  background: var(--brown-light);
  color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-block;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-cta:hover {
  background: var(--brown-medium);
  transform: translateY(-2px);
}

/* Footer */
.site-footer {
  background: var(--brown-dark);
  color: var(--cream);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 2rem;
}

.footer-logo .logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo .logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-column a {
  color: var(--cream);
  transition: color 0.2s;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-social {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(212, 163, 115, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: background 0.2s;
}

.social-icon:hover {
  background: rgba(212, 163, 115, 0.4);
}

.footer-copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 163, 115, 0.2);
  color: var(--cream);
  font-size: 0.9rem;
}

.footer-powered {
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: var(--cream);
}

/* Responsive */
@media (min-width: 1400px) {
  .products-grid {
    gap: 3.5rem;
  }
  
  .product-card {
    padding: 3.5rem 3rem;
  }
  
  .product-image {
    height: 320px;
  }
  
  .product-card h3 {
    font-size: 1.8rem;
  }
}

@media (max-width: 900px) {
  .header-nav {
    padding: 1rem;
    gap: 1rem;
  }

  .nav-container {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    gap: 1rem;
    font-size: 0.85rem;
    flex-direction: column;
  }
  
  .nav-links a.active::after {
    display: none;
  }
  
  .nav-links a.active {
    border-bottom: 2px solid var(--brown-medium);
    padding-bottom: 0.25rem;
  }

  .btn-header {
    width: 100%;
    text-align: center;
  }

  .hero-title {
    font-size: 3rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  
  .product-card {
    padding: 2.5rem 2rem;
  }
  
  .product-image {
    height: 240px;
  }
  
  .product-card h3 {
    font-size: 1.4rem;
  }
  
  .faq-container {
    gap: 1.25rem;
  }
  
  .faq-question {
    padding: 1.35rem 1.75rem;
    font-size: 1.05rem;
  }
  
  .faq-answer.active {
    padding: 0 1.75rem 1.35rem 1.75rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .cta-title {
    font-size: 2rem;
  }
}

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

  .header-nav {
    padding: 1rem;
  }

  .hero {
    height: 60vh;
    min-height: 400px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .about-content h2 {
    font-size: 2rem;
  }

  .cta-title {
    font-size: 1.75rem;
  }

  .cta-subtitle {
    font-size: 1.25rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .product-card {
    padding: 2.5rem 2rem;
  }
  
  .product-image {
    height: 220px;
  }
  
  .product-card h3 {
    font-size: 1.3rem;
  }
  
  .faq-question {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
  }
  
  .faq-answer.active {
    padding: 0 1.5rem 1.25rem 1.5rem;
  }
  
  .faq-answer p {
    font-size: 0.95rem;
  }
}

/* About Page */
.about-page {
  background: #faf8f5;
}

.about-hero {
  padding: 4rem 0 2rem;
}

.about-hero-inner {
  text-align: center;
}

.about-hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.about-hero-tagline {
  font-family: var(--sans-font);
  font-weight: 200;
  font-size: 1.1rem;
  color: #6d5b4f;
}

.about-story {
  padding: 1rem 0 5rem;
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: start;
}

.about-story-text p,
.about-story-aside p {
  margin-bottom: 1.25rem;
  color: #6d5b4f;
  font-size: 1rem;
}

.about-photo-placeholder {
  border-radius: 16px;
  border: 1px dashed rgba(0, 0, 0, 0.2);
  background: #f1e5d8;
  color: #8d7a6c;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  margin: 1.5rem 0;
}

.about-photo-placeholder.tall {
  min-height: 260px;
}

.about-photo-placeholder.wide {
  min-height: 180px;
}

.about-photo-placeholder span {
  max-width: 260px;
}

.about-photo {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin: 1.5rem 0;
  object-fit: cover;
  display: block;
}

.about-photo.tall {
  min-height: 260px;
  height: auto;
}

.about-photo.wide {
  min-height: 180px;
  height: auto;
}

@media (max-width: 900px) {
  .about-story-grid {
    grid-template-columns: 1fr;
  }
}
