/* === Hero Section === */
.hero-full {
  height: 100vh;
  background: url('../images/heroCoffeeShop.jpg') center center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.25);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}

.hero-text h1 {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
  animation: fadeDown 0.8s ease-out;
}

.hero-text p {
  font-size: 1.2rem;
  color: var(--light-text);
  max-width: 600px;
  margin: auto;
  animation: fadeUp 1s ease-out;
}

.hero-text .btn-primary {
  margin-top: 1.5rem;
  animation: fadeIn 1.2s ease-out;
}

/* === About Section === */
.about-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 3rem 1rem;
}

.about-text h2 {
  color: var(--accent);
  margin-bottom: 1rem;
}

.about-img img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

@media (min-width: 768px) {
  .about-section {
    flex-direction: row;
    align-items: center;
  }

  .about-text, .about-img {
    flex: 1;
  }
}

/* === Signature Drinks === */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.feature-card {
  background: #1c1c1c;
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-card img {
  width: 100%;
  max-width: 250px;
  margin-bottom: 1rem;
  border-radius: 8px;
}

.feature-card h3 {
  color: var(--accent);
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* === Testimonials === */
.testimonials {
  margin-top: 3rem;
}

.testimonial-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}

.testimonial {
  background: #1a1a1a;
  padding: 1.5rem;
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  font-style: italic;
}

.testimonial span {
  display: block;
  margin-top: 0.75rem;
  font-weight: bold;
  color: var(--accent);
}

@media (min-width: 768px) {
  .testimonial-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* === CTA Banner === */
.cta-banner {
  background: linear-gradient(to right, #222, #111);
  padding: 3rem 1rem;
  text-align: center;
}

.cta-banner h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

/* === Animations === */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
