:root {
    --color-dark: #1a1612;
    --color-brown: #3d2e24;
    --color-coffee: #6b4f3f;
    --color-cream: #f5f0e8;
    --color-warm: #e8dfd3;
    --color-accent: #c9a66b;
    --color-accent-light: #d4b88a;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--color-cream); color: var(--color-dark); line-height: 1.6; overflow-x: hidden; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.animate { opacity: 0; transform: translateY(30px); transition: all 0.7s ease; }
.animate.visible { opacity: 1; transform: translateY(0); }

header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 1rem 2rem; transition: all 0.4s ease; background: transparent; }
header.scrolled { background: rgba(26, 22, 18, 0.95); backdrop-filter: blur(20px); padding: 0.75rem 2rem; box-shadow: 0 4px 30px rgba(0,0,0,0.15); }

nav { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 1rem; text-decoration: none; color: white; }
.logo img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid var(--color-accent); transition: transform 0.3s; }
.logo:hover img { transform: scale(1.1); }
.logo-text { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; }

.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a { color: white; text-decoration: none; font-size: 0.95rem; position: relative; padding: 0.5rem 0; transition: color 0.3s; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--color-accent); transition: width 0.3s; }
.nav-links a:hover { color: var(--color-accent); }
.nav-links a:hover::after { width: 100%; }

.nav-phone { color: white; text-decoration: none; font-weight: 500; padding: 0.75rem 1.5rem; border: 1px solid var(--color-accent); border-radius: 50px; transition: all 0.3s; }
.nav-phone:hover { background: var(--color-accent); color: var(--color-dark); }

.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.mobile-menu-btn span { width: 28px; height: 2px; background: white; transition: all 0.3s; }

.hero { min-height: 100vh; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.4); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(26,22,18,0.3) 0%, rgba(26,22,18,0.5) 50%, rgba(26,22,18,0.8) 100%); }

.hero-content { position: relative; text-align: center; color: white; padding: 2rem; max-width: 900px; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(201,166,107,0.2); border: 1px solid var(--color-accent); padding: 0.5rem 1.25rem; border-radius: 50px; font-size: 0.9rem; margin-bottom: 2rem; animation: fadeInUp 0.8s ease; color: var(--color-accent); }
.hero h1 { font-family: var(--font-display); font-size: clamp(3rem, 8vw, 6rem); font-weight: 700; line-height: 1.1; margin-bottom: 1.5rem; animation: fadeInUp 0.8s ease 0.2s both; }
.hero-tagline { font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 300; color: rgba(255,255,255,0.85); margin-bottom: 2rem; animation: fadeInUp 0.8s ease 0.4s both; }
.hero-rating { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 2.5rem; animation: fadeInUp 0.8s ease 0.5s both; }
.stars { color: var(--color-accent); font-size: 1.5rem; letter-spacing: 2px; }
.rating-text { font-size: 1.1rem; color: rgba(255,255,255,0.9); }
.rating-text strong { color: var(--color-accent); font-size: 1.3rem; }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; animation: fadeInUp 0.8s ease 0.6s both; }

.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 1rem 2rem; font-size: 1rem; font-weight: 500; text-decoration: none; border-radius: 50px; transition: all 0.3s; cursor: pointer; border: none; }
.btn-primary { background: var(--color-accent); color: var(--color-dark); }
.btn-primary:hover { background: var(--color-accent-light); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201,166,107,0.3); }
.btn-secondary { background: transparent; color: white; border: 1px solid rgba(255,255,255,0.4); }
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: white; }

.features { padding: 6rem 2rem; background: var(--color-cream); }
.container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-label { display: inline-block; font-size: 0.85rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--color-accent); margin-bottom: 1rem; }
.section-title { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3rem); font-weight: 600; color: var(--color-dark); }

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.feature-card { background: white; padding: 2.5rem 2rem; border-radius: 20px; text-align: center; transition: all 0.4s; border: 1px solid rgba(107,79,63,0.1); }
.feature-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(61,46,36,0.12); }
.feature-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.feature-card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; margin-bottom: 0.75rem; color: var(--color-dark); }
.feature-card p { font-size: 0.95rem; color: var(--color-coffee); line-height: 1.7; }

.gallery { padding: 6rem 0; background: var(--color-dark); overflow: hidden; }
.gallery .section-title { color: white; }
.gallery .section-header { padding: 0 2rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, 250px); gap: 1rem; padding: 0 1rem; }
.gallery-item { position: relative; overflow: hidden; border-radius: 16px; cursor: pointer; }
.gallery-item.large { grid-column: span 2; grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.gallery-item:hover img { transform: scale(1.08); }

.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 2000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.3s; }
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90%; max-height: 90vh; border-radius: 8px; transform: scale(0.9); transition: transform 0.3s; }
.lightbox.active img { transform: scale(1); }
.lightbox-close { position: absolute; top: 2rem; right: 2rem; background: none; border: none; color: white; font-size: 2rem; cursor: pointer; }

.hours { padding: 6rem 2rem; background: var(--color-warm); }
.hours-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hours-image { border-radius: 24px; overflow: hidden; box-shadow: 0 30px 60px rgba(61,46,36,0.2); }
.hours-image img { width: 100%; height: 450px; object-fit: cover; }
.hours-info h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.5rem); margin-bottom: 1.5rem; color: var(--color-dark); }
.hours-list { list-style: none; margin-top: 1.5rem; }
.hours-list li { display: flex; justify-content: space-between; padding: 1rem 0; border-bottom: 1px solid rgba(107,79,63,0.15); font-size: 1rem; }
.hours-list .day { font-weight: 500; color: var(--color-dark); }
.hours-list .time { color: var(--color-coffee); }
.hours-list .today { background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light)); margin: 0 -1rem; padding: 1rem; border-radius: 12px; border: none; }
.hours-list .today .day, .hours-list .today .time { color: var(--color-dark); font-weight: 600; }

#statusBadge { margin-bottom: 1rem; }
.status-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.5rem; border-radius: 50px; font-weight: 600; font-size: 0.95rem; }
.status-open { background: rgba(76,175,80,0.15); color: #2e7d32; }
.status-closed { background: rgba(244,67,54,0.15); color: #c62828; }
.status-dot { width: 10px; height: 10px; border-radius: 50%; animation: pulse 1.5s ease-in-out infinite; }
.status-open .status-dot { background: #4caf50; }
.status-closed .status-dot { background: #f44336; }

.map-section { padding: 6rem 2rem; background: var(--color-cream); }
.map-content { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: center; }
.map-info h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.5rem); margin-bottom: 1.5rem; color: var(--color-dark); }
.map-info p { color: var(--color-coffee); margin-bottom: 2rem; font-size: 1.1rem; line-height: 1.8; }
.map-link { display: inline-flex; align-items: center; gap: 0.75rem; padding: 1.25rem 2rem; background: #fc3f1d; color: white; text-decoration: none; border-radius: 16px; font-weight: 600; font-size: 1.05rem; transition: all 0.3s; box-shadow: 0 8px 25px rgba(252,63,29,0.3); }
.map-link:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(252,63,29,0.4); }
.map-preview { border-radius: 24px; overflow: hidden; box-shadow: 0 20px 50px rgba(61,46,36,0.15); }
.map-preview img { width: 100%; height: 300px; object-fit: cover; transition: transform 0.3s; }
.map-preview:hover img { transform: scale(1.05); }

.contact { padding: 6rem 2rem; background: var(--color-dark); color: white; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-info h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; }
.contact-info > p { color: rgba(255,255,255,0.7); font-size: 1.1rem; margin-bottom: 2.5rem; }
.contact-item { display: flex; gap: 1.25rem; margin-bottom: 2rem; align-items: flex-start; }
.contact-icon { width: 56px; height: 56px; background: rgba(201,166,107,0.15); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }
.contact-item h4 { font-size: 0.85rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--color-accent); margin-bottom: 0.5rem; }
.contact-item p, .contact-item a { font-size: 1.15rem; color: white; text-decoration: none; transition: color 0.3s; }
.contact-item a:hover { color: var(--color-accent); }
.contact-image { border-radius: 24px; overflow: hidden; }
.contact-image img { width: 100%; height: 100%; object-fit: cover; min-height: 350px; }

footer { background: #0f0d0b; padding: 3rem 2rem; }
.footer-content { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.footer-logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; color: white; }
.footer-logo img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.footer-logo span { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; }
.footer-text { color: rgba(255,255,255,0.5); font-size: 0.9rem; }
.footer-rating { color: var(--color-accent); font-size: 0.95rem; }

.mobile-menu { position: fixed; inset: 0; background: rgba(26,22,18,0.98); z-index: 999; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; transform: translateX(100%); transition: transform 0.4s; }
.mobile-menu.active { transform: translateX(0); }
.mobile-menu a { color: white; text-decoration: none; font-size: 1.5rem; font-family: var(--font-display); transition: color 0.3s; }
.mobile-menu a:hover { color: var(--color-accent); }
.mobile-menu-close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; color: white; font-size: 2rem; cursor: pointer; }

@media (max-width: 1024px) {
    .hours-content, .map-content, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .hours-image { order: -1; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 200px); }
    .gallery-item.large { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 768px) {
    header { padding: 0.75rem 1rem; }
    .nav-links, .nav-phone { display: none; }
    .mobile-menu-btn { display: flex; }
    .hero-content { padding: 1.5rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn { width: 100%; justify-content: center; max-width: 280px; }
    .features, .hours, .map-section, .contact { padding: 4rem 1.5rem; }
    .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .gallery-item, .gallery-item.large { height: 250px; grid-column: span 1; }
    .hours-image img { height: 300px; }
    .footer-content { flex-direction: column; text-align: center; }
}
