@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Lato:wght@300;400;700&display=swap');

:root {
  --red: #D32F2F;
  --dark-red: #8B0000;
  --terra: #BF360C;
  --cream: #FFF8E7;
  --peach: #FFE0B2;
  --light-peach: #FFF3E0;
  --brown: #5D4037;
  --dark-brown: #2C1810;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Lato', system-ui, sans-serif; color: var(--dark-brown); line-height: 1.6; }
h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', Georgia, serif; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* NAVBAR */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: background 0.4s ease, box-shadow 0.4s ease; }
.navbar.scrolled, .navbar.solid { background: var(--cream); box-shadow: 0 1px 8px rgba(0,0,0,0.08); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 3rem; height: 72px; display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: 12px; cursor: pointer; }
.nav-logo { height: 48px; width: auto; object-fit: contain; }
.nav-brand-text { display: flex; flex-direction: column; }
.nav-brand-name { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; transition: color 0.3s; }
.nav-brand-sub { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; transition: color 0.3s; }
.navbar:not(.scrolled):not(.solid) .nav-brand-name,
.navbar:not(.scrolled):not(.solid) .nav-links a { color: #fff; }
.navbar:not(.scrolled):not(.solid) .nav-brand-sub { color: rgba(255,255,255,0.75); }
.navbar.scrolled .nav-brand-name, .navbar.solid .nav-brand-name { color: var(--dark-red); }
.navbar.scrolled .nav-brand-sub, .navbar.solid .nav-brand-sub { color: var(--red); }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { font-size: 0.875rem; font-weight: 500; letter-spacing: 0.02em; position: relative; transition: color 0.3s; }
.navbar.scrolled .nav-links a, .navbar.solid .nav-links a { color: var(--dark-brown); }
.navbar.scrolled .nav-links a:hover, .navbar.solid .nav-links a:hover, .nav-links a.active { color: var(--red); }
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; height: 2px; width: 0; background: var(--red); transition: width 0.3s; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; transition: all 0.3s; }
.navbar.scrolled .nav-toggle span, .navbar.solid .nav-toggle span { background: var(--dark-red); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile { display: none; background: var(--cream); border-top: 1px solid var(--peach); }
.nav-mobile.open { display: block; }
.nav-mobile a { display: block; padding: 1rem 2rem; font-size: 0.875rem; font-weight: 500; color: var(--dark-brown); border-bottom: 1px solid rgba(255,224,178,0.5); transition: color 0.2s, background 0.2s; }
.nav-mobile a:hover, .nav-mobile a.active { color: var(--red); background: rgba(255,224,178,0.2); }

/* HERO */
.hero { position: relative; height: 100vh; min-height: 600px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-image: url('../images/hero.jpg'); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.3), rgba(0,0,0,0.6)); }
.hero-content { position: relative; z-index: 2; text-align: center; padding: 0 1rem; width: 100%; max-width: 860px; margin: 0 auto; }
.hero-logo { height: 100px; margin: 0 auto 1.5rem; filter: drop-shadow(0 4px 16px rgba(0,0,0,0.4)); }
.hero-title { font-size: clamp(2.5rem, 7vw, 5rem); color: #fff; font-weight: 900; text-shadow: 0 2px 8px rgba(0,0,0,0.3); margin-bottom: 0.5rem; }
.hero-subtitle { display: block; font-size: clamp(1.1rem, 3vw, 1.8rem); font-weight: 300; color: var(--peach); margin-top: 0.5rem; }
.hero-desc { color: rgba(255,255,255,0.85); font-size: 1rem; margin: 1rem 0 0.5rem; letter-spacing: 0.04em; }
.hero-addr { color: rgba(255,255,255,0.6); font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 2.5rem; }
.hero-scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.6); font-size: 1.5rem; animation: bounce 2s infinite; }

/* BUTTONS */
.btn-primary { display: inline-block; background: var(--cream); color: var(--dark-red); font-weight: 700; font-size: 0.9rem; padding: 1rem 2.5rem; border-radius: 50px; transition: all 0.3s; box-shadow: 0 4px 16px rgba(0,0,0,0.2); white-space: nowrap; cursor: pointer; }
.btn-primary:hover { background: #fff; transform: scale(1.05); }
.btn-outline { display: inline-block; border: 2px solid #fff; color: #fff; font-weight: 600; font-size: 0.9rem; padding: 0.9rem 2rem; border-radius: 50px; transition: all 0.3s; white-space: nowrap; cursor: pointer; }
.btn-outline:hover { background: #fff; color: var(--dark-red); }
.btn-red { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--red); color: #fff; font-weight: 700; font-size: 0.875rem; padding: 0.85rem 2rem; border-radius: 50px; transition: all 0.3s; white-space: nowrap; cursor: pointer; }
.btn-red:hover { background: var(--dark-red); }

/* SECTIONS */
.section-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); margin-bottom: 0.75rem; }
.section-title { font-size: clamp(1.8rem, 4vw, 3rem); color: var(--dark-brown); line-height: 1.25; margin-bottom: 1rem; }
.section-desc { color: var(--brown); font-size: 1rem; max-width: 700px; }
.section-center { text-align: center; }
.section-center .section-desc { margin: 0 auto; }

/* ABOUT */
.about-section { background: var(--cream); padding: 5rem 0; }
.about-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 4rem; align-items: center; }
.about-img-wrap { position: relative; }
.about-img { width: 100%; height: 480px; object-fit: cover; object-position: top; border-radius: 16px; }
.about-badge { position: absolute; bottom: -1rem; right: -1rem; background: var(--red); color: #fff; border-radius: 12px; padding: 1rem 1.25rem; text-align: center; box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.about-badge strong { display: block; font-size: 1.5rem; font-family: 'Playfair Display', serif; }
.about-badge span { font-size: 0.75rem; }
.about-tags { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1.5rem 0 2rem; }
.about-tag { background: rgba(255,224,178,0.5); color: var(--dark-red); font-size: 0.85rem; padding: 0.4rem 1rem; border-radius: 50px; }
.about-text-body { color: var(--brown); line-height: 1.8; margin-bottom: 1rem; }

/* GALLERY */
.gallery-section { background: var(--light-peach); padding: 5rem 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3rem; }
.gallery-item { position: relative; overflow: hidden; border-radius: 12px; cursor: pointer; }
.gallery-item img { width: 100%; height: 240px; object-fit: cover; object-position: top; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(139,0,0,0.6); opacity: 0; transition: opacity 0.3s; display: flex; align-items: center; justify-content: center; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-icon { width: 44px; height: 44px; border: 2px solid #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.2rem; }
.lightbox { display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.92); align-items: center; justify-content: center; padding: 1rem; }
.lightbox.open { display: flex; }
.lightbox-img { max-width: 100%; max-height: 88vh; border-radius: 12px; object-fit: contain; }
.lightbox-close { position: absolute; top: 1rem; right: 1.25rem; background: none; border: none; color: rgba(255,255,255,0.8); font-size: 2rem; cursor: pointer; transition: color 0.2s; }
.lightbox-close:hover { color: #fff; }

/* CTA */
.cta-section { position: relative; height: 480px; display: flex; align-items: center; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-image: url('../images/cta.jpg'); }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(139,0,0,0.82), rgba(139,0,0,0.55), transparent); }
.cta-content { position: relative; z-index: 2; max-width: 520px; }
.cta-content .section-label { color: var(--peach); }
.cta-content .section-title { color: #fff; }
.cta-content p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 1rem; }

/* FOOTER */
footer { background: var(--dark-red); color: var(--cream); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.5rem; padding-bottom: 3rem; }
.footer-logo { height: 52px; margin-bottom: 1rem; filter: brightness(200%); }
.footer-brand-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 600; margin-bottom: 0.25rem; }
.footer-brand-sub { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,248,231,0.55); margin-bottom: 0.75rem; }
.footer-desc { font-size: 0.85rem; color: rgba(255,248,231,0.65); line-height: 1.7; }
.footer-heading { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 600; margin-bottom: 1rem; color: var(--cream); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { font-size: 0.85rem; color: rgba(255,248,231,0.65); transition: color 0.2s; }
.footer-links a:hover { color: var(--cream); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 0.75rem; }
.footer-contact-item i { color: var(--peach); margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a, .footer-contact-item span { font-size: 0.85rem; color: rgba(255,248,231,0.65); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--cream); }
.social-links { display: flex; gap: 0.75rem; margin-bottom: 1.25rem; }
.social-link { width: 40px; height: 40px; border: 1px solid rgba(255,248,231,0.25); border-radius: 50%; color: rgba(255,248,231,0.65); display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: all 0.3s; }
.social-link:hover { background: var(--cream); color: var(--dark-red); }
.footer-hours p { font-size: 0.85rem; color: rgba(255,248,231,0.65); margin-bottom: 0.2rem; }
.footer-hours .closed { color: rgba(255,248,231,0.4); }
.footer-bottom { border-top: 1px solid rgba(255,248,231,0.1); padding: 1rem 0; }
.footer-bottom-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.5rem; }
.footer-copyright { font-size: 0.75rem; color: rgba(255,248,231,0.35); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.75rem; color: rgba(255,248,231,0.35); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,248,231,0.65); }

/* PAGE HEADER */
.page-header { position: relative; height: 320px; display: flex; align-items: flex-end; overflow: hidden; }
.page-header-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-header-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(139,0,0,0.8), rgba(139,0,0,0.4), transparent); }
.page-header-content { position: relative; z-index: 2; padding-bottom: 2.5rem; width: 100%; }

/* ABOUT PAGE */
.about-story { background: var(--cream); padding: 5rem 0; }
.highlights-section { background: #fff; padding: 5rem 0; }
.highlight-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
.highlight-card { background: var(--cream); border-radius: 16px; padding: 2rem 1.5rem; text-align: center; }
.highlight-icon { width: 56px; height: 56px; background: rgba(211,47,47,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 1.5rem; color: var(--red); }
.highlight-card h3 { font-size: 1.15rem; margin-bottom: 0.75rem; color: var(--dark-brown); }
.highlight-card p { font-size: 0.875rem; color: rgba(93,64,55,0.7); line-height: 1.7; }
.flavors-section { background: rgba(255,224,178,0.25); padding: 4rem 0; }
.flavors-center { max-width: 760px; margin: 0 auto; text-align: center; }
.flavors-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; margin-top: 2rem; }
.flavor-tag { background: rgba(255,255,255,0.7); border: 1px solid var(--peach); color: var(--dark-brown); font-size: 0.85rem; font-weight: 500; padding: 0.6rem 0.75rem; border-radius: 10px; text-align: center; }
.flavors-note { font-size: 0.75rem; color: rgba(93,64,55,0.45); margin-top: 1.25rem; }

/* CONTACT PAGE */
.contact-section { background: #fff; padding: 5rem 0; }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.contact-card { background: var(--cream); border-radius: 16px; padding: 2rem; }
.contact-card-icon { width: 48px; height: 48px; background: rgba(211,47,47,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--red); margin-bottom: 1.25rem; }
.contact-card h2 { font-size: 1.4rem; color: var(--dark-brown); margin-bottom: 1.25rem; }
.hours-table { width: 100%; }
.hours-row { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid rgba(255,224,178,0.5); font-size: 0.875rem; }
.hours-row:last-child { border-bottom: none; }
.hours-row.closed { opacity: 0.5; }
.hours-time { color: var(--brown); }
.hours-time.closed-text { color: var(--red); font-style: italic; }
.hours-note { font-size: 0.75rem; color: rgba(93,64,55,0.45); margin-top: 1rem; }
.address-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.75rem; }
.address-item i { color: var(--red); margin-top: 2px; }
.address-item a { font-size: 0.875rem; color: var(--brown); transition: color 0.2s; }
.address-item a:hover { color: var(--red); }
.address-item span { font-size: 0.875rem; color: var(--brown); }
.map-wrap { border-radius: 12px; overflow: hidden; height: 176px; margin: 1rem 0; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }
.btn-outline-red { display: flex; align-items: center; justify-content: center; gap: 0.5rem; width: 100%; padding: 0.7rem; border-radius: 12px; border: 2px solid var(--red); color: var(--red); font-weight: 600; font-size: 0.875rem; transition: all 0.3s; margin-top: 0.75rem; white-space: nowrap; cursor: pointer; }
.btn-outline-red:hover { background: var(--red); color: #fff; }
.form-label { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dark-brown); margin-bottom: 6px; }
.form-input, .form-textarea { width: 100%; border: 1px solid var(--peach); background: #fff; border-radius: 8px; padding: 0.65rem 1rem; font-size: 0.875rem; font-family: 'Lato', sans-serif; color: var(--dark-brown); outline: none; transition: border-color 0.2s; }
.form-input:focus, .form-textarea:focus { border-color: var(--red); }
.form-textarea { resize: none; }
.form-group { margin-bottom: 1rem; }
.btn-submit { width: 100%; background: var(--red); color: #fff; border: none; border-radius: 12px; font-family: 'Lato', sans-serif; font-weight: 700; font-size: 0.875rem; padding: 0.8rem; cursor: pointer; transition: background 0.3s; white-space: nowrap; }
.btn-submit:hover { background: var(--dark-red); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-error { background: #fef2f2; border: 1px solid #fecaca; border-radius: 8px; padding: 0.65rem 0.75rem; font-size: 0.8rem; color: #dc2626; margin-bottom: 0.75rem; }

/* LEGAL PAGES */
.legal-page { padding: 8rem 0 5rem; }
.legal-content { max-width: 800px; margin: 0 auto; }
.breadcrumb { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--red); margin-bottom: 2rem; transition: opacity 0.2s; }
.breadcrumb:hover { opacity: 0.75; }
.legal-title { font-size: clamp(2rem, 5vw, 3rem); color: var(--dark-brown); margin-bottom: 0.5rem; }
.legal-divider { width: 64px; height: 4px; background: var(--red); border-radius: 2px; margin-bottom: 2rem; }
.legal-date { font-size: 0.875rem; color: rgba(93,64,55,0.55); margin-bottom: 2.5rem; }
.legal-body { line-height: 1.9; color: var(--brown); }
.legal-body section { margin-bottom: 2.5rem; }
.legal-body h2 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--dark-brown); margin-bottom: 0.75rem; }
.legal-body h3 { font-weight: 700; color: var(--dark-brown); margin: 1.25rem 0 0.5rem; }
.legal-body p { margin-bottom: 0.75rem; }
.legal-body ul { padding-left: 1.5rem; }
.legal-body a { color: var(--red); }
.legal-body a:hover { text-decoration: underline; }
.cookie-card { background: var(--cream); border-radius: 12px; padding: 1.25rem; margin-bottom: 1rem; }
.cookie-card-header { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.75rem; }
.cookie-icon { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cookie-table { width: 100%; border-collapse: collapse; font-size: 0.8rem; margin-top: 0.75rem; }
.cookie-table th { text-align: left; padding: 6px 8px; border-bottom: 1px solid var(--peach); color: var(--dark-brown); font-weight: 700; }
.cookie-table td { padding: 6px 8px; border-bottom: 1px solid rgba(255,224,178,0.4); }

/* ANIMATIONS */
.anim-fade { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.anim-left { opacity: 0; transform: translateX(-50px); transition: opacity 0.8s ease, transform 0.8s ease; }
.anim-right { opacity: 0; transform: translateX(50px); transition: opacity 0.8s ease, transform 0.8s ease; }
.anim-fade.visible, .anim-left.visible, .anim-right.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .highlight-cards { grid-template-columns: repeat(2, 1fr); }
  .flavors-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img { height: 260px; }
  .about-badge { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .highlight-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .flavors-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-buttons { flex-direction: column; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .highlight-cards { grid-template-columns: 1fr; }
  .container { padding: 0 1rem; }
}
