:root {
  --ruby: #8B1E3F;
  --blush: #FDE8E4;
  --ivory: #FAF8F5;
  --sand: #F3E9DC;
  --gold: #D4B08A;
  --rose: #B99675;
  --cocoa: #3A2F28;
}

/* ===== Base Styles ===== */
body {
  margin: 0;
  font-family: "Nunito", sans-serif;
  background: var(--ivory);
  color: var(--cocoa);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

/* ===== Header ===== */
.top-bar {
  background: var(--ruby);
  color: var(--gold);
  padding: 1rem 2rem;
  box-shadow: 0 2px 8px rgba(139, 30, 63, 0.2);
}

.bar-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Playfair Display", serif;
}

.logo {
  font-weight: bold;
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 0.5px;
  font-family: "Playfair Display", serif;
}

nav a {
  margin-left: 1.5rem;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--rose);
}

/* ===== Hero Section ===== */
.hero-jumbo {
  background: var(--ivory);
  padding: 6rem 2rem;
  text-align: center;
  color: var(--cocoa);
}

.hero-images {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-images img {
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.hero-content h1 {
  font-size: 4rem;
  font-family: "Playfair Display", serif;
  color: var(--ruby);
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.cta-button {
  background: var(--ruby);
  color: white;
  padding: 0.85rem 2.2rem;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(139, 30, 63, 0.3);
}

.cta-button:hover {
  background: var(--rose);
  transform: translateY(-2px);
}

/* ===== Collection Grid ===== */
.collection {
  background: var(--sand);
  padding: 4rem 2rem;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  color: var(--ruby);
  margin-bottom: 2rem;
  font-family: "Playfair Display", serif;
}

.grid {
  display: grid;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.product-card {
  background: var(--ivory);
  border-radius: 10px;
  text-align: center;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(139, 30, 63, 0.08);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  aspect-ratio: 4 / 3;
  max-height: 280px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1rem;
}

/* ===== Occasion Grid ===== */
.occasions {
  background: var(--sand);
  padding: 4rem 2rem;
}

.occasion-grid-elegant {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.occasion-card {
  background: var(--ivory);
  border-radius: 12px;
  padding: 2rem 1rem;
  box-shadow: 0 4px 12px rgba(139, 30, 63, 0.08);
}

.icon-frame {
  width: 110px;
  height: 110px;
  background: var(--ivory);
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04);
}

.icon-frame img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
}

/* ===== Crafted with Purpose ===== */
.craft-story {
  padding: 3rem 1.5rem; /* slightly more breathing room */
}

.craft-grid {
  flex-direction: column;
  align-items: center;
  gap: 1.5rem; /* relaxed spacing between text and image */
}

.craft-text {
  text-align: center;
  margin-bottom: 1rem;
}

.craft-text h2 {
  margin-bottom: 1rem;
}

.craft-text p {
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.cta-link {
  color: var(--rose); /* or var(--ruby) if you want it bolder */
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  margin-top: 0.5rem;
  margin-bottom: 1rem
}

.cta-link:hover {
  text-decoration: underline;
  color: var(--gold); /* optional hover color */
}

.craft-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  margin: 0 auto;
  display: block;
  object-fit: cover;
}


.testimonials {
  margin-top: -1rem; /* optional: reduce gap after image */
}




@media (max-width: 768px) {
  .craft-story {
    padding: 2.5rem 1.25rem; /* tighter vertical padding */
  }

  .craft-grid {
    flex-direction: column;
    align-items: center;
    gap: 1rem; /* reduce spacing between text and image */
  }

  .craft-text {
    text-align: center;
    margin-bottom: 0.5rem;
  }

  .craft-text h2 {
    margin-bottom: 0.75rem;
  }

  .craft-text p {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    line-height: 1.6;
  }

  .cta-link {
    margin-bottom: 0.5rem;
  }


  .craft-image img {
    max-width: 90%;
    height: auto;
    margin-bottom: 0;
  }
}


  .testimonials {
    margin-top: -1.5rem; /* optional: reduce gap after image */
  }




/* ===== Testimonials ===== */
.testimonials {
  background: var(--sand);
  padding: 4rem 2rem;
}

.testimonial-grid {
  display: grid;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.testimonial {
  font-style: italic;
  background: var(--ivory);
  padding: 1.5rem;
  border-left: 5px solid var(--gold);
  box-shadow: 0 4px 12px rgba(139, 30, 63, 0.08);
}

/* ===== Gifting Made Effortless ===== */

/* ===== Gifting Made Effortless ===== */
.gifting-ease {
  background: var(--sand);
  padding: 5rem 2rem;
  text-align: center;
}

.gifting-ease .section-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: var(--ruby);
  margin-bottom: 3rem;
}

.gifting-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.gift-block {
  background: var(--ivory);
  padding: 2.5rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(139, 30, 63, 0.08);
  transition: transform 0.3s ease;
}

.gift-block:hover {
  transform: translateY(-4px);
}

.gift-block img {
  width: 100%;
  max-width: 120px;
  margin: 0 auto 1.2rem;
  border-radius: 8px;
  display: block;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.gift-block h3 {
  margin: 1rem 0 0.5rem;
  color: var(--ruby);
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
}

.gift-block p {
  font-size: 0.95rem;
  color: var(--cocoa);
  line-height: 1.6;
}





/* ===== CTA Banner ===== */
.cta-banner {
  background: var(--sand);
  text-align: center;
  padding: 6rem 2rem;
  color: var(--cocoa);
}

.cta-banner h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: var(--ruby);
  margin-bottom: 1.5rem;
}

.cta-subtext {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--cocoa);
}


/* ===== Footer ===== */
.site-footer {
  background: var(--ivory);
  padding: 2rem 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--cocoa);
  border-top: 1px solid var(--sand);
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
}

.footer-content p {
  margin: 0.5rem 0 1rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.social-icons a {
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.1);
}

.social-icons img {
  width: 24px;
  height: 24px;
  filter: grayscale(100%) brightness(80%);
  transition: filter 0.3s ease;
}

.social-icons img:hover {
  filter: none;
}




/* ===== Responsive Styles ===== */
@media (max-width: 768px) {
  .bar-content,
  .hero-images,
  .hero-content,
  .grid,
  .occasion-grid-elegant,
  .testimonial-grid,
  .gifting-grid,
  .craft-grid,
  .footer-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }

  .hero-content h1,
  .cta-banner h2 {
    font-size: 2rem;
  }

  .cta-subtext {
    font-size: 1rem;
  }

  .product-card img,
  .gift-block img,
  .craft-image img,
  .hero-images img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .top-bar {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }

  nav a {
    display: block;
    margin: 0.5rem 0;
  }

  .site-footer {
    font-size: 0.85rem;
  }
}
