:root {
  --bg: #fef9f5;
  --accent: #c76b3e;
  --dark: #3e2f2f;
  --highlight: #ffe4c4;
  --font: 'Quicksand', sans-serif;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--dark);
  font-family: var(--font);
  overflow-x: hidden;
}

/* === Header === */
header {
  background-image: url('/coffee-landing/images/coffee-img1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 60vh;
  height: auto;
  padding: 6rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
}

header::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

header > * {
  position: relative;
  z-index: 1;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

header p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

/* === CTA Button === */
.cta-button {
  background: var(--accent);
  color: white;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease;
  white-space: nowrap;
  max-width: 100%;
  text-align: center;
}

.cta-button:hover {
  transform: scale(1.05);
  background: #a94f2c;
}

/* === Images === */
img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.drink-card img,
.bundle-card img,
.testimonial-card img {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
}

.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

/* === Featured Drinks Grid Fix === */



/* === Seasonal Mood Board === */
.mood-board {
  background: #fffaf0;
  padding: 3rem 2rem;
  text-align: center;
}

.mood-board h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.mood-board p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.mood-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.mood-card {
  width: 180px;
  height: 220px;
  padding: 1rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

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

.mood-card img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 0.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.mood-card.warmth { background: #ffe4c4; }
.mood-card.spice { background: #c76b3e; color: white; }
.mood-card.joy { background: #f8ba6d; }
.mood-card.depth { background: #3e2f2f; color: white; }




/* === Coffee Bundles Section === */
.bundle-section {
  padding: 3rem 2rem;
  background: #f9f3ee;
  text-align: center;
}

.bundle-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.bundle-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.bundle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.bundle-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bundle-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.bundle-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #3e2f2f;
}

.bundle-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 0.5rem;
}

.bundle-card strong {
  font-size: 1.1rem;
  color: #c76b3e;
}









/* === Testimonials Section === */
.testimonial-section {
  background: #fff;
  padding: 3rem 2rem;
  text-align: center;
}

.testimonial-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.testimonial-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: #fef9f5;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-card .quote {
  font-style: italic;
  margin-bottom: 0.5rem;
}

.testimonial-card .author {
  font-size: 0.9rem;
  color: #555;
}

/* === Share & Win Section === */
.share-section {
  background: #fffaf0;
  padding: 3rem 2rem;
  text-align: center;
}

.share-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.share-section p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.share-img {
  width: 100%;
  max-width: 800px;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  margin: 1.5rem auto;
  display: block;
}

.share-button {
  background: #c76b3e;
  color: white;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.share-button:hover {
  background: #a94f2c;
}
/* === Footer === */
.site-footer {
  background: #3e2f2f;
  color: #f9f3ee;
  padding: 3rem 1.5rem;
  text-align: center;
  min-height: 200px;
}

.site-footer .footer-img {
  width: 60px;
  border-radius: 50%;
}

.site-footer .top-icon {
  margin-bottom: 1rem;
}

.site-footer .bottom-icon {
  margin-top: 1rem;
}

.site-footer p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.site-footer p strong {
  color: #f9f3ee;
}

.site-footer hr {
  border: none;
  height: 1px;
  background-color: #f9f3ee;
  margin: 1.5rem auto;
  width: 80%;
}

.site-footer .footer-nav {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.site-footer .footer-nav a {
  color: #f9f3ee;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.site-footer .footer-nav a:hover {
  color: #e88ab0; /* soft pink hover */
}

.site-footer .footer-credit {
  margin-top: 2rem;
  font-size: 0.9rem;
  opacity: 0.8;
}
