/* ===================== LUXURY DARK COFFEE PALETTE ===================== */
:root {
  --coffee-dark: #120d0a;
  --coffee-medium: #1f140f;
  --coffee-card: #1c1410;
  --cream-light: #f5efe6;
  --gold-accent: #c9a24d;
  --gold-soft: #e5c97b;
  --text-light: #f5efe6;
  --text-muted: #d6cbb8;
}

/* ===================== RESET ===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--coffee-dark);
  color: var(--text-light);
  line-height: 1.6;
}

/* ===================== GLOBAL ===================== */
a {
  text-decoration: none;
  color: inherit;
}

section {
  padding: 100px 8%;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.7rem;
  color: var(--gold-accent);
}

.section-header p {
  color: var(--text-muted);
}

/* ===================== NAVBAR ===================== */
header {
  background: linear-gradient(135deg, #0e0907, #1f140f);
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 8%;
}

.logo h1 {
  color: var(--gold-accent);
  font-size: 1.9rem;
  letter-spacing: 1px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--text-light);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--gold-accent);
}

.nav-cta a {
  background: linear-gradient(135deg, var(--gold-accent), var(--gold-soft));
  color: #120d0a;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
}

/* ===================== HERO ===================== */
.hero {
  height: 92vh;
  background:
    linear-gradient(rgba(18,13,10,0.85), rgba(18,13,10,0.85)),
    url("https://images.unsplash.com/photo-1509042239860-f550ce710b93")
    center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero h2 {
  font-size: 3.5rem;
  margin-bottom: 15px;
  color: var(--cream-light);
}

.hero p {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: var(--text-muted);
}

.hero-buttons a {
  display: inline-block;
  margin: 0 10px;
  padding: 14px 36px;
  border-radius: 30px;
  font-weight: 600;
}

.hero-buttons a:first-child {
  background: linear-gradient(135deg, var(--gold-accent), var(--gold-soft));
  color: #120d0a;
}

.hero-buttons a:last-child {
  border: 2px solid var(--gold-accent);
  color: var(--cream-light);
}

/* ===================== CAFE / BAKERY / CATERING ===================== */
#cafe,
#bakery,
#catering {
  background: transparent;
}

.cafe-items,
.bakery-items,
.catering-services {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

/* ===================== CARDS ===================== */
article {
  background: var(--coffee-card);
  padding: 32px;
  border-radius: 28px;
  text-align: center;
  border: 1px solid rgba(201,162,77,0.3);
  box-shadow: 0 25px 70px rgba(0,0,0,0.6);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

article:hover {
  transform: translateY(-16px);
  box-shadow: 0 45px 100px rgba(0,0,0,0.9);
}

article img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 22px;
  transition: transform 0.5s ease;
}

article:hover img {
  transform: scale(1.1);
}

article h3 {
  color: var(--gold-accent);
  margin-bottom: 10px;
}

article p {
  color: var(--text-muted);
}

/* ===================== ABOUT ===================== */
#about {
  background: linear-gradient(135deg, #0e0907, #1a120d);
  text-align: center;
}

#about p {
  max-width: 820px;
  margin: 20px auto 0;
  color: var(--text-muted);
}

/* ===================== REVIEWS ===================== */
.reviews-section {
  background: transparent;
  text-align: center;
}

.review-card {
  background: var(--coffee-card);
  padding: 35px 30px;
  border-radius: 28px;
  display: flex;               
  flex-direction: column;        
  align-items: center;    
  border: 1px solid rgba(201,162,77,0.35);
  box-shadow: 0 30px 80px rgba(0,0,0,0.8);
}

.review-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--gold-accent);
  margin-bottom: 15px;
  display: block;
  margin-bottom: 15px;
}

.stars {
  color: var(--gold-accent);
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.review-text {
  font-style: italic;
  color: var(--text-muted);
}

/* ===================== REVIEWS GRID FIX ===================== */
.reviews-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px; /* THIS IS THE KEY */
}

@media (max-width: 600px) {
  .reviews-grid {
    gap: 30px;
  }
}


/* ===================== CONTACT ===================== */

/* ===================== PREMIUM CTA ===================== */
.cta-section {
  padding: 120px 8%;
  background: linear-gradient(
    135deg,
    #0e0907,
    #1a120d
  );
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-box {
  background: linear-gradient(
    135deg,
    #1c1410,
    #120d0a
  );
  border: 1px solid rgba(201,162,77,0.4);
  border-radius: 36px;
  padding: 70px 60px;
  text-align: center;
  max-width: 900px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.9);
}

.cta-box h2 {
  font-size: 2.8rem;
  color: var(--gold-accent);
  margin-bottom: 18px;
}

.cta-box p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

/* Primary CTA */
.cta-primary {
  background: linear-gradient(
    135deg,
    var(--gold-accent),
    var(--gold-soft)
  );
  color: #120d0a;
  padding: 16px 42px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(201,162,77,0.6);
}

/* Secondary CTA */
.cta-secondary {
  border: 2px solid var(--gold-accent);
  color: var(--cream-light);
  padding: 16px 38px;
  border-radius: 40px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-secondary:hover {
  background: var(--gold-accent);
  color: #120d0a;
}


#contact {
  background: transparent;
}

/* ===================== CONTACT INFO CARDS ===================== */
.contact-cards {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 35px;
}

.contact-card {
  background: var(--coffee-card);
  padding: 35px 30px;
  border-radius: 28px;
  text-align: center;
  border: 1px solid rgba(201,162,77,0.35);
  box-shadow: 0 25px 70px rgba(0,0,0,0.8);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.contact-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 40px 90px rgba(0,0,0,0.9);
}

.contact-icon {
  display: inline-flex;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
  background: linear-gradient(
    135deg,
    var(--gold-accent),
    var(--gold-soft)
  );
  color: #120d0a;
}

.contact-card h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--gold-accent);
}

.contact-card p {
  color: var(--text-muted);
  font-size: 1rem;
  word-break: break-word;
}

/* ===================== MAP ===================== */
/* ===================== GOOGLE MAP FULL SIZE FIX ===================== */
.map-container {
  margin-top: 60px;
  width: 100%;
  height: 420px;              /* controls visible height */
  border-radius: 28px;
  overflow: hidden;           /* VERY IMPORTANT */
  border: 2px solid rgba(201,162,77,0.5);
  box-shadow: 0 30px 80px rgba(0,0,0,0.8);
  padding: 0;                 /* REMOVE inner spacing */
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;             /* removes tiny gaps */
}

@media (max-width: 768px) {
  .map-container {
    height: 300px;
  }
}


/* ===================== FOOTER ===================== */
footer {
  background: #0b0705;
  color: var(--text-muted);
  text-align: center;
  padding: 30px;
}

/* ===================== SCROLL REVEAL ===================== */
.cafe-card,
.bakery-items article,
.catering-services article,
.review-card {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.9s ease;
}

.cafe-card.active,
.bakery-items article.active,
.catering-services article.active,
.review-card.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== RESPONSIVE ===================== */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

iframe {
  max-width: 100%;
}

/* ===================== RESPONSIVE ===================== */

/* Large screens (1200px+) */
@media (min-width: 1200px) {
  section {
    padding-left: 10%;
    padding-right: 10%;
  }
}

/* Tablets (992px and below) */
@media (max-width: 992px) {
  .hero h2 {
    font-size: 3rem;
  }

  section {
    padding: 80px 6%;
  }

  .nav-links {
    gap: 22px;
  }
}

/* Small tablets & large phones (768px and below) */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 15px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .hero {
    height: auto;
    padding: 120px 6% 80px;
  }

  .hero h2 {
    font-size: 2.4rem;
  }

  .hero-buttons a {
    margin: 10px 0;
    display: block;
  }

  .cafe-items,
  .bakery-items,
  .catering-services,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .map-container {
    height: 300px;
  }
}

/* Mobile phones (480px and below) */
@media (max-width: 480px) {
  .logo h1 {
    font-size: 1.6rem;
  }

  .section-header h2 {
    font-size: 2.1rem;
  }

  section {
    padding: 70px 5%;
  }

  article {
    padding: 26px;
  }

  article img {
    height: 200px;
  }
}

.hero {
  min-height: 100vh;
}
/* CTA resopsive */
@media (max-width: 768px) {
  .cta-box {
    padding: 55px 30px;
  }

  .cta-box h2 {
    font-size: 2.2rem;
  }

  .cta-buttons {
    flex-direction: column;
  }
}

/* contact card */
@media (max-width: 768px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }
}
