/* =============================================
   BAKERY BOUZÉL – Stylesheet
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pink: #c06c84;
  --pink-light: #f9a8d4;
  --pink-bg: #fce4ec;
  --cream: #fff9f7;
  --text: #3d1f1f;
  --text-mid: #5a3333;
  --text-soft: #9d6b6b;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(192,108,132,0.12);
  --radius: 16px;
  --radius-lg: 24px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', 'Segoe UI', sans-serif;
  background-color: var(--cream);
  color: var(--text);
  line-height: 1.6;
}

h1,h2,h3,h4 { font-family: 'Poppins', 'Nunito', sans-serif; font-weight: 700; }

a { color: var(--pink); }

img { max-width: 100%; display: block; }

/* ---- BUTTONS ---- */
.btn-primary {
  background-color: var(--pink);
  color: #fff !important;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  border: none;
  cursor: pointer;
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  box-shadow: 0 4px 16px rgba(192,108,132,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(192,108,132,0.45); }

.btn-outline {
  background-color: var(--white);
  color: var(--pink) !important;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  border: 2px solid var(--pink-light);
  cursor: pointer;
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  transition: background 0.2s;
}
.btn-outline:hover { background-color: var(--pink-bg); }

.btn-outline-white {
  background-color: transparent;
  color: var(--pink-light) !important;
  padding: 8px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  border: 1px solid var(--pink-light);
  cursor: pointer;
  display: inline-block;
}

.btn-lg { padding: 14px 36px; font-size: 15px; }
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-full { width: 100%; text-align: center; padding: 15px; font-size: 15px; }

/* ---- COOKIE BANNER ---- */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background-color: #3d1f1f; color: #fff;
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  z-index: 9999; font-size: 13px;
}
.cookie-btns { display: flex; gap: 10px; }
.hidden { display: none !important; }

/* ---- NAV ---- */
.navbar {
  background-color: transparent;
  padding: 12px 32px;
  display: flex; justify-content: space-between; align-items: center;
  position: sticky; top: 0; z-index: 100;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background-color: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(192,108,132,0.15);
}
.nav-logo { height: 52px; object-fit: contain; }
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a { color: var(--pink); text-decoration: none; font-size: 14px; font-weight: 600; }
.hamburger { display: none; background: none; border: none; font-size: 26px; cursor: pointer; color: var(--pink); }

.mobile-menu {
  background-color: var(--white);
  padding: 16px 24px;
  display: flex; flex-direction: column; gap: 16px;
  box-shadow: 0 4px 16px rgba(249,168,212,0.2);
}
.mobile-menu a { color: var(--pink); text-decoration: none; font-size: 16px; font-weight: 600; }

/* ---- HERO ---- */
.hero {
  background: linear-gradient(160deg, #fce4ec 0%, var(--cream) 55%, #fce4ec 100%);
  padding: 80px 24px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-bg-circle { position: absolute; border-radius: 50%; }
.hero-circle-1 { top: -80px; left: -80px; width: 260px; height: 260px; background: rgba(249,168,212,0.18); }
.hero-circle-2 { bottom: -50px; right: -50px; width: 200px; height: 200px; background: rgba(192,108,132,0.1); }
.hero-circle-3 { top: 40px; right: 80px; width: 100px; height: 100px; background: rgba(249,168,212,0.12); }
.hero-content { position: relative; }
.hero-logo {
  height: 200px; object-fit: contain; margin: 0 auto 20px;
  filter: drop-shadow(0 8px 24px rgba(192,108,132,0.25));
}
.hero h1 { font-size: 46px; font-weight: 700; color: var(--pink); margin-bottom: 6px; }
.hero-sub { font-size: 18px; color: var(--text-soft); font-style: italic; margin-bottom: 8px; }
.hero-address { font-size: 14px; color: #b08080; margin-bottom: 20px; }
.hero-stars { display: flex; justify-content: center; align-items: center; gap: 10px; margin-bottom: 32px; }
.stars { color: var(--pink-light); font-size: 22px; letter-spacing: 2px; }
.rating-num { color: var(--pink); font-weight: 700; font-size: 20px; }
.rating-count { color: var(--text-soft); font-size: 14px; }
.hero-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-badges { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.badge { text-align: center; }
.badge span {
  font-size: 24px; background: var(--white); width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 6px;
  box-shadow: 0 3px 12px rgba(192,108,132,0.15);
}
.badge small { font-size: 12px; color: var(--pink); font-weight: 600; display: block; }

/* ---- INFO BANNER ---- */
.info-banner {
  background-color: var(--pink); color: #fff;
  padding: 14px 24px; text-align: center; font-size: 14px;
}

/* ---- SECTIONS ---- */
.section { padding: 72px 24px; }
.section-light { background-color: var(--cream); }
.section-pink { background-color: var(--pink-bg); }

.container { max-width: 960px; margin: 0 auto; }

.section-title { text-align: center; margin-bottom: 40px; }
.section-title h2 { color: var(--pink); font-size: 32px; margin-bottom: 10px; }
.section-title p { color: var(--text-soft); font-size: 15px; }

/* ---- TABS / MENU ---- */
.tabs { display: flex; gap: 8px; justify-content: center; margin-bottom: 32px; flex-wrap: wrap; }
.tab-btn {
  padding: 10px 22px; border-radius: 50px; border: 2px solid var(--pink-light);
  background-color: var(--white); color: var(--pink);
  font-weight: 700; font-size: 14px; cursor: pointer;
  font-family: 'Nunito', sans-serif; transition: all 0.2s;
}
.tab-btn.active { background-color: var(--pink); color: #fff; border-color: var(--pink); }

.menu-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow); border: 1px solid var(--pink-bg);
  max-width: 700px; margin: 0 auto;
}
.tab-content { display: none; }
.tab-content.active { display: block; }
.menu-header { text-align: center; margin-bottom: 20px; }
.menu-emoji { font-size: 52px; margin-bottom: 8px; }
.menu-header h3 { color: var(--pink); font-size: 22px; margin-bottom: 6px; }
.menu-header p { color: var(--text-soft); font-size: 14px; line-height: 1.7; }
.menu-items { border-top: 1px solid var(--pink-bg); padding-top: 20px; }
.menu-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--pink-bg); font-size: 15px; color: var(--text-mid);
}
.menu-item:last-child { border-bottom: none; }
.price { color: var(--pink); font-weight: 700; }
.price-note { color: #b08080; font-size: 12px; margin-top: 16px; text-align: center; }

/* ---- GRID ---- */
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 20px; margin-bottom: 36px; }

/* ---- CARDS ---- */
.card {
  background: var(--white); border-radius: 20px; padding: 28px 20px;
  box-shadow: var(--shadow); text-align: center;
}
.card-icon { font-size: 46px; margin-bottom: 12px; }
.card h3 { color: var(--pink); font-size: 17px; margin-bottom: 8px; }
.card p { color: var(--text-soft); font-size: 13px; line-height: 1.7; margin-bottom: 16px; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.tag { background: var(--pink-bg); color: var(--pink); padding: 4px 12px; border-radius: 50px; font-size: 11px; font-weight: 600; }

/* ---- CATERING CTA ---- */
.catering-cta {
  background: var(--white); border-radius: 20px; padding: 32px;
  text-align: center; max-width: 600px; margin: 0 auto; box-shadow: var(--shadow);
}
.catering-cta h3 { color: var(--pink); font-size: 20px; margin-bottom: 10px; }
.catering-cta p { color: var(--text-soft); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---- ABOUT ---- */
.about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; align-items: center; }
.about-img img { max-width: 320px; margin: 0 auto; object-fit: contain; }
.about-text p { font-size: 15px; line-height: 1.9; color: var(--text-mid); margin-bottom: 16px; }
.stats { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 8px; }
.stat { text-align: center; }
.stat strong { display: block; font-size: 22px; color: var(--pink); }
.stat small { font-size: 12px; color: var(--text-soft); }

/* ---- REVIEWS ---- */
.review-carousel { text-align: center; }
.review-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 36px 32px;
  box-shadow: 0 6px 28px rgba(192,108,132,0.12); margin-bottom: 24px; min-height: 160px;
}
.review-card .stars { font-size: 22px; color: var(--pink-light); }
.review-text { color: var(--text-mid); font-size: 16px; line-height: 1.8; margin: 16px 0; font-style: italic; }
.review-author { color: var(--pink); font-weight: 700; font-size: 14px; }
.review-dots { display: flex; justify-content: center; gap: 8px; }
.dot {
  width: 10px; height: 10px; border-radius: 50%; border: none;
  cursor: pointer; background-color: var(--pink-light); transition: all 0.3s; padding: 0;
}
.dot.active { width: 24px; background-color: var(--pink); }

/* ---- HOURS ---- */
.hours-table {
  background: var(--white); border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--pink-bg);
}
.hours-row {
  display: flex; justify-content: space-between; padding: 14px 24px;
  border-bottom: 1px solid var(--pink-bg); font-size: 15px;
}
.hours-row:last-child { border-bottom: none; }
.hours-row:nth-child(odd) { background-color: var(--white); }
.hours-row:nth-child(even) { background-color: var(--cream); }
.hours-sunday { color: var(--pink); font-weight: 600; background-color: var(--pink-bg) !important; }

/* ---- CONTACT ---- */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; }
.contact-info { display: flex; flex-direction: column; gap: 12px; }
.info-item {
  background: var(--white); border-radius: 14px; padding: 14px 18px;
  display: flex; align-items: center; gap: 16px;
  box-shadow: 0 2px 10px rgba(192,108,132,0.08);
}
.info-item span { font-size: 24px; flex-shrink: 0; }
.info-item small { display: block; font-size: 11px; color: var(--pink); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3px; }
.info-item a, .info-item span:not(:first-child) { color: var(--text-mid); text-decoration: none; font-size: 15px; }
.map-wrapper { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin-top: 4px; }

.contact-form-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px 28px;
  box-shadow: 0 6px 28px rgba(192,108,132,0.1);
}
.contact-form-card h3 { color: var(--pink); margin-bottom: 22px; font-size: 20px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 11px; color: var(--pink); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 11px 14px; border-radius: 10px;
  border: 1.5px solid var(--pink-light); font-size: 14px;
  color: var(--text); background-color: var(--cream);
  font-family: 'Nunito', sans-serif; outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--pink);
}
.form-group textarea { resize: vertical; }
.form-note { color: #b08080; font-size: 11px; text-align: center; margin-top: 12px; }
.form-success { text-align: center; padding: 40px 0; }
.form-success h4 { color: var(--pink); margin-top: 16px; font-size: 20px; }
.form-success p { color: var(--text-soft); font-size: 14px; line-height: 1.7; margin-top: 8px; }

/* ---- FOOTER ---- */
.footer {
  background-color: var(--pink); color: #fff;
  padding: 40px 24px; text-align: center;
}
.footer-logo { height: 68px; object-fit: contain; margin: 0 auto 14px; }
.footer h3 { font-size: 22px; margin-bottom: 4px; }
.footer-sub { opacity: 0.85; font-size: 14px; font-style: italic; margin-bottom: 20px; }
.footer-links { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 20px; font-size: 14px; }
.footer-links a { color: #fff; text-decoration: none; opacity: 0.9; }
.footer-copy { border-top: 1px solid rgba(255,255,255,0.25); padding-top: 16px; font-size: 12px; opacity: 0.65; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .hero h1 { font-size: 32px; }
  .hero-logo { height: 140px; }
  .section { padding: 48px 16px; }
  .hero { padding: 60px 16px 48px; }
  .about-grid { gap: 24px; }
  .stats { gap: 16px; }
  .hero-btns { gap: 10px; }
  .hero-btns .btn-lg { padding: 12px 22px; font-size: 14px; }
}

/* ---- FLOATING BUTTONS ---- */
.floating-call {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 56px;
  height: 56px;
  background-color: var(--pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(192,108,132,0.5);
  z-index: 500;
  transition: transform 0.2s;
}
.floating-call:hover { transform: scale(1.1); }

.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 500;
  transition: transform 0.2s;
}
.floating-whatsapp:hover { transform: scale(1.1); }

/* Only show floating buttons on mobile */
@media (min-width: 769px) {
  .floating-call, .floating-whatsapp { display: none; }
}

/* ---- PHOTO STRIP ---- */
.photo-strip {
  overflow: hidden;
  background: #fff;
  border-top: 3px solid var(--pink-bg);
  border-bottom: 3px solid var(--pink-bg);
}
.photo-strip-inner {
  display: flex;
  gap: 0;
}
.photo-strip-inner img {
  width: 25%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.photo-strip-inner img:hover {
  transform: scale(1.04);
  z-index: 1;
  position: relative;
}

/* ---- GALLERY GRID ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}
.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-large {
  grid-column: span 2;
}
.gallery-large img {
  height: 320px;
}
.gallery-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(60,20,20,0.7));
  color: #fff;
  padding: 24px 16px 14px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

/* ---- ABOUT REAL IMAGE ---- */
.about-real-img {
  width: 100%;
  max-width: 420px;
  height: 360px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(192,108,132,0.2);
}

@media (max-width: 768px) {
  .photo-strip-inner img { height: 140px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .gallery-large { grid-column: span 2; }
  .gallery-item img { height: 180px; }
  .gallery-large img { height: 220px; }
  .about-real-img { height: 260px; max-width: 100%; }
}
