/* ========== BAKEORA — Artisan Bakery ========== */
:root {
  --warm-cream: #FDF4E8;
  --golden: #F5B7D5;
  --golden-dark: #B2497D;
  --caramel: #B2497D;
  --espresso: #79443B;
  --espresso-light: #9A5A4F;
  --cinnamon: #B8A0E8;
  --lavender: #B8A0E8;
  --pink-soft: #F5B7D5;
  --pink-rose: #B2497D;
  --cookie: #EACDA3;
  --white: #FFFFFF;
  --text: #5A3A38;
  --text-light: #8A6A66;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --shadow-sm: 0 2px 8px rgba(121, 68, 59, 0.10);
  --shadow-md: 0 4px 24px rgba(178, 73, 125, 0.14);
  --shadow-lg: 0 8px 40px rgba(178, 73, 125, 0.18);
  --radius: 12px;
  --transition: 0.3s ease;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--warm-cream); line-height: 1.7; overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.announcement-bar { background: var(--espresso); color: var(--golden); text-align: center; padding: 8px 16px; font-size: 0.85rem; letter-spacing: 0.3px; }

.header { position: sticky; top: 0; z-index: 100; background: rgba(253, 244, 232, 0.95); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(245, 183, 213, 0.3); padding: 16px 0; transition: var(--transition); }
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { text-decoration: none; display: flex; align-items: center; gap: 12px; }
.logo-img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.logo-text-wrap { display: flex; flex-direction: column; }
.logo-text { font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; color: var(--pink-rose); letter-spacing: 3px; line-height: 1; }
.logo-tagline { font-size: 0.6rem; color: var(--espresso); letter-spacing: 2.5px; text-transform: uppercase; }
.nav { display: flex; gap: 32px; align-items: center; }
.nav a { text-decoration: none; color: var(--text); font-size: 0.9rem; font-weight: 500; transition: var(--transition); position: relative; }
.nav a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--golden); transition: var(--transition); }
.nav a:hover::after { width: 100%; }
.nav a:hover { color: var(--caramel); }
.nav-cta { margin-left: 8px; }
.mobile-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--espresso); }

.btn { display: inline-block; padding: 12px 28px; border-radius: 50px; font-family: var(--font-body); font-size: 0.9rem; font-weight: 600; text-decoration: none; cursor: pointer; transition: var(--transition); border: 2px solid transparent; }
.btn-primary { background: var(--caramel); color: var(--white); border-color: var(--caramel); }
.btn-primary:hover { background: var(--lavender); border-color: var(--lavender); color: var(--espresso); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.6); }
.btn-outline:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--white); transform: translateY(-2px); }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

.hero { position: relative; min-height: 85vh; background: linear-gradient(135deg, #79443B 0%, #9A5A4F 35%, #B2497D 70%, #B8A0E8 100%); display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: url('hero.jpg') center/cover no-repeat; opacity: 0.35; z-index: 0; }
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(121,68,59,0.85) 0%, rgba(178,73,125,0.7) 60%, rgba(184,160,232,0.6) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 700px; padding: 80px 0; }
.hero-subtitle { font-family: var(--font-body); color: var(--pink-soft); font-size: 0.85rem; font-weight: 500; letter-spacing: 5px; text-transform: uppercase; margin-bottom: 20px; }
.hero-title { font-family: var(--font-display); font-size: clamp(3rem, 6vw, 5rem); font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 24px; }
.hero-desc { font-size: 1.1rem; color: rgba(255, 255, 255, 0.75); max-width: 520px; margin-bottom: 36px; line-height: 1.8; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.features-strip { background: var(--white); border-bottom: 1px solid rgba(245, 183, 213, 0.3); padding: 40px 0; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.feature-icon { display: flex; justify-content: center; align-items: center; margin-bottom: 12px; color: var(--pink-rose); }
.feature-icon svg { width: 40px; height: 40px; }
.feature-item:hover .feature-icon { color: var(--lavender); transition: color 0.3s ease; }
.feature-label { font-size: 0.85rem; font-weight: 600; color: var(--espresso); letter-spacing: 0.3px; }

.section { padding: 100px 0; }
.section-dark { background: var(--espresso); color: var(--white); }
.section-dark .section-title, .section-dark .section-label { color: var(--white); }
.section-dark .section-desc, .section-dark p { color: rgba(255, 255, 255, 0.75); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-label { font-family: var(--font-body); font-size: 0.75rem; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--golden-dark); margin-bottom: 12px; }
.section-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 600; color: var(--espresso); line-height: 1.2; margin-bottom: 16px; }
.section-desc { color: var(--text-light); font-size: 1.05rem; max-width: 500px; margin: 0 auto; }

.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 28px; }
.menu-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); display: flex; flex-direction: column; }
.menu-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.menu-img { height: 220px; overflow: hidden; }
.menu-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.menu-card:hover .menu-img img { transform: scale(1.06); }
.menu-info { padding: 24px; }
.menu-info h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; color: var(--espresso); margin-bottom: 8px; }
.menu-info p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 14px; line-height: 1.6; }
.price { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--caramel); }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-content p { margin-bottom: 16px; font-size: 1rem; line-height: 1.8; }
.about-image img { width: 100%; height: 100%; min-height: 450px; object-fit: cover; border-radius: 16px; }
.about-stats { display: flex; gap: 40px; margin-top: 32px; }
.stat { display: flex; flex-direction: column; }
.stat-number { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--golden); line-height: 1; }
.stat-label { font-size: 0.8rem; color: rgba(255, 255, 255, 0.7); margin-top: 6px; letter-spacing: 0.5px; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-item { aspect-ratio: 1; border-radius: 12px; overflow: hidden; transition: var(--transition); cursor: pointer; }
.gallery-item:hover { transform: scale(1.03); box-shadow: var(--shadow-lg); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }

.section-cta { background: linear-gradient(135deg, var(--pink-rose), var(--lavender)); text-align: center; }
.section-cta .section-title { color: var(--white); }
.section-cta p { color: rgba(255, 255, 255, 0.85); max-width: 550px; margin: 0 auto 32px; font-size: 1.05rem; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-btns .btn-outline { color: var(--white); border-color: rgba(255, 255, 255, 0.5); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-detail { margin-bottom: 24px; display: flex; align-items: flex-start; gap: 14px; }
.contact-detail .ci { flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%; background: rgba(178,73,125,0.10); display: flex; align-items: center; justify-content: center; color: var(--pink-rose); margin-top: 2px; }
.contact-detail .ci svg { width: 20px; height: 20px; }
.contact-detail strong { display: block; font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase; color: var(--golden-dark); margin-bottom: 6px; }
.contact-detail p { color: var(--text); font-size: 1rem; }
.contact-map { background: linear-gradient(135deg, #79443B, #B2497D); min-height: 350px; border-radius: 16px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; text-align: center; }

.footer { background: var(--espresso); color: rgba(255, 255, 255, 0.7); padding: 64px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--golden); letter-spacing: 3px; margin-bottom: 12px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; }
.footer-links h4 { font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase; color: var(--golden-dark); margin-bottom: 16px; }
.footer-links a { display: block; color: rgba(255, 255, 255, 0.6); text-decoration: none; font-size: 0.9rem; margin-bottom: 10px; transition: var(--transition); }
.footer-links a:hover { color: var(--golden); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 24px; text-align: center; font-size: 0.85rem; color: rgba(255, 255, 255, 0.4); }

@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--warm-cream); flex-direction: column; padding: 24px; gap: 16px; border-bottom: 1px solid rgba(245, 183, 213, 0.3); box-shadow: var(--shadow-md); }
  .nav.active { display: flex; }
  .nav-cta { margin-left: 0; width: 100%; text-align: center; }
  .mobile-toggle { display: block; }
  .hero { min-height: 70vh; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-grid { grid-template-columns: 1fr; }
  .about-stats { flex-wrap: wrap; gap: 24px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .section { padding: 60px 0; }
}