:root {
  --blush: #F7E3CD;
  --red: #E8332A;
  --deep-red: #BF3B2F;
  --green: #093b04;
  --dark-green: #0F3E2E;

  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Inter', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  background: var(--blush);
  color: var(--dark-green);
  line-height: 1.6;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto;}

h1 { font-size: 3rem; line-height: 1.1; margin-bottom: 1rem; }
h2 { font-size: 2.25rem; line-height: 1.2; margin-bottom: 0.75rem; }
h3 { font-size: 1.5rem; line-height: 1.3; margin-bottom: 0.5rem; }
p  { font-size: 1rem; line-height: 1.6; margin-bottom: 1rem; }
small { font-size: 0.875rem; }


h1, h2, h3 { font-family: var(--font-serif); color: var(--dark-green); }

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Header */
.site-header {
  background: #fff;
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo { 
    font-family: var(--font-serif); 
    font-size: 1.8rem; 
    font-weight: 700; 
    color: var(--dark-green);
    text-decoration: none;
}

.nav ul { 
    display: flex; 
    gap: 1.5rem;
    list-style: none; 
}

.nav a {
  font-weight: 500;
  color: var(--dark-green);
  text-decoration: none;
  transition: color 0.3s;
}
.nav a:hover {
  color: var(--red);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .nav ul {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  .nav ul.open {
    display: flex;
  }
  .nav-toggle {
    display: block;
    color: var(--dark-green);
  }
}

.btn-primary {
  background: var(--red);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s;
}
.btn-primary:hover { background: var(--dark-green); color: #fff }

.btn-secondary {
  border: 2px solid var(--dark-green);
  color: var(--dark-green);
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  background: transparent;
}
.btn-secondary:hover { background: var(--dark-green); color: #fff; }

.promo-banner {
  background: var(--red);
  color: #fff;
  text-align: center;
  padding: 0.5rem;
  font-weight: 600;
}


/*Hero*/ 
.hero {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(247,227,205,0.7), rgba(15,62,46,0.6));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1rem;
  font-family: var(--font-serif);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #444;
  font-family: var(--font-sans);
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.scroll-cue {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  opacity: 0.7;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -10px); }
}

/* Grid utilities */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.card {
  background: #fff;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover { transform: translateY(-4px); }
.card img { width: 100%; height: auto; transition: transform 0.4s;}
.card:hover img { transform: scale(1.05); }
.card-body {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(15,62,46,0.7);
  color: #fff;
  padding: 1rem;
  text-align: center;
}

.card-body h3 { margin-bottom: 0.5rem; color: #fff;}

/* Split Layout */
.split { display: flex; gap: 2rem; align-items: center; flex-wrap: wrap; }
.split img { flex: 1; border-radius: 8px; }
.split div { flex: 1; }

/* Featured */
.featured .card-body { text-align: center; }
.featured h3 { margin-bottom: 0.5rem; }

/*Testimonials*/
.testimonials { background: var(--green); color: #fff; padding: 4rem 1rem; text-align: center; }
.testimonials blockquote { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 1rem; }

.gallery img { border-radius: 8px; transition: transform 0.3s; }
.gallery img:hover { transform: scale(1.05); }

.contact-form { display: grid; gap: 1rem; max-width: 600px; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 0.8rem; border: 1px solid #ccc; border-radius: 6px;
}

/* CTA Banner */
.cta-banner {
  background: var(--dark-green);
  color: #fff;
  text-align: center;
  padding: 3rem 1rem;
}
.cta-banner h2 { margin-bottom: 1.5rem; }


input, textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: var(--font-sans);
}
input:focus, textarea:focus {
  border-color: var(--red);
  outline: none;
  box-shadow: 0 0 0 2px rgba(232,51,42,0.2);
}

/* Section*/
.section { padding: 4rem 0; }

@media (max-width: 768px) {
  .section {
    padding: 2rem 0;
  }
}

.section h2 {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  text-align: center;
  margin-bottom: 2rem;
  
}

.section.alt {
  background: #fffefc;
}
.section.blush {
  background: var(--blush);
}
.section.green {
  background: var(--green);
  color: #fff;
}

.brand-quote {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  margin-top: 1.5rem;
  color: var(--deep-red);
}

/* About*/
.narrow {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.lead {
  font-size: 1.25rem;
  color: var(--dark-green);
  margin-bottom: 2rem;
}

.brand-quote {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--deep-red);
  margin: 1.5rem 0;
}

.value-card {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  text-align: center;
}
.value-card h3 {
  font-family: var(--font-serif);
  margin-bottom: 0.5rem;
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}
.timeline li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.5rem;
}
.timeline li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 1.2rem;
}

.about-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}


/* Gallery */
.gallery img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
  cursor: pointer;
}
.gallery img:hover {
  transform: scale(1.05);
}

/* Optional: Lightbox modal */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}
.modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .gallery img {
    height: 250px;
  }
}

/* Services */
.service-cards .card {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  text-align: left;
}
.service-cards h3 {
  font-family: var(--font-serif);
  margin-bottom: 0.5rem;
}

.process-steps {
  list-style: none;
  padding: 0;
  counter-reset: step;
}
.process-steps li {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}
.process-steps li::before {
  counter-increment: step;
  content: counter(step) ". ";
  font-weight: bold;
  color: var(--red);
}

.faq-list {
  margin-top: 2rem;
}
.faq-list details {
  margin-bottom: 1rem;
  padding: 1rem;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.faq-list summary {
  font-weight: 600;
  cursor: pointer;
  color: var(--dark-green);
}
.faq-list p {
  margin-top: 0.5rem;
  line-height: 1.5;
}

/* Shop */
.product-grid {
  column-gap: 1.5rem;
  row-gap: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.product-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin: 0.5rem;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.product-card:hover img {
  transform: scale(1.05);
}

.product-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.product-info {
  padding: 1rem;
  text-align: center;
}

.product-info h3 {
  font-family: var(--font-serif);
  margin-bottom: 0.5rem;
}

/* CTA Banner */ 
.cta-banner {
  text-align: center;
  color: #fff;
}

.cta-banner h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-banner p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--dark-green);
}


/* Contact */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}
.contact-form button {
  align-self: start;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}


.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  gap: 1rem;
}


.contact-info a {
  color: var(--dark-green);
  text-decoration: underline;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}

.icon {
  width: 1.2rem;
  height: 1.2rem;
  color: var(--dark-green); /* or use fill if needed */
  flex-shrink: 0;
}


.contact-info .icon {
  width: 1.2rem;
  height: 1.2rem;
  fill: var(--dark-green);
  flex-shrink: 0;
}


/* Footer */
.site-footer {
  background: var(--dark-green);
  color: #fff;
  padding: 3rem 1rem 1rem;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.site-footer h3, .site-footer h4 {
  font-family: var(--font-serif);
  margin-bottom: 1rem;
  color: var(--blush);
}

.footer-links ul, .footer-social ul {
  list-style: none;
  padding: 0;
}
.footer-links li, .footer-social li {
  margin-bottom: 0.5rem;
}
.footer-links a, .footer-social a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover, .footer-social a:hover {
  color: var(--deep-red);
}

.footer-legal {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1rem;
  grid-column: 1 / -1;
  text-align: center;
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.footer-legal p {
  margin: 0.25rem 0;
}

.footer-legal a {
  color: #fff;
  text-decoration: underline;
}

.footer-legal a:hover {
  color: var(--deep-red);
}

