:root {
  --color-primary: #8B2635;
  --color-primary-dark: #5C1A23;
  --color-secondary: #D4A5A5;
  --color-accent: #C9A227;
  --color-gold: #D4A574;
  --color-cream: #FFF8F0;
  --color-coffee: #4A2C2A;
  --color-text: #2C2416;
  --color-text-light: #6B5B4F;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--color-text); background: var(--color-cream); line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }

/* Navigation */
.navbar { position: fixed; top: 0; width: 100%; z-index: 1000; padding: 1rem 0; transition: var(--transition); background: transparent; }
.navbar.scrolled { background: rgba(255,252,248,0.95); backdrop-filter: blur(10px); box-shadow: 0 2px 20px rgba(0,0,0,0.1); }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: white; transition: var(--transition); text-decoration: none; }
.navbar.scrolled .logo { color: var(--color-primary); }
.logo-icon { font-size: 1.75rem; }
.nav-menu { display: flex; list-style: none; gap: 2.5rem; }
.nav-link { color: white; font-weight: 500; text-decoration: none; transition: var(--transition); }
.navbar.scrolled .nav-link { color: var(--color-text); }
.nav-link:hover { color: var(--color-gold); }
.hamburger { display: none; flex-direction: column; cursor: pointer; }
.bar { width: 25px; height: 3px; background: white; margin: 3px 0; transition: var(--transition); border-radius: 3px; }
.navbar.scrolled .bar { background: var(--color-primary); }

/* Hero */
.hero { position: relative; height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.6); }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5)); z-index: -1; }
.hero-content { text-align: center; color: white; max-width: 800px; padding: 0 2rem; animation: fadeInUp 1s ease; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.rating-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.2); backdrop-filter: blur(10px); padding: 0.5rem 1rem; border-radius: 50px; margin-bottom: 1.5rem; }
.stars { color: #FFD700; letter-spacing: 2px; }
.hero-title { font-family: var(--font-heading); font-size: clamp(3rem, 8vw, 5rem); margin-bottom: 1rem; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
.hero-tagline { font-size: clamp(1.1rem, 2vw, 1.5rem); margin-bottom: 2rem; opacity: 0.95; }
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-location { font-size: 1rem; opacity: 0.9; }
.scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); color: white; text-align: center; animation: bounce 2s infinite; }
.scroll-arrow { width: 20px; height: 20px; border-right: 2px solid white; border-bottom: 2px solid white; transform: rotate(45deg); margin: 0.5rem auto 0; }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); } 40% { transform: translateX(-50%) translateY(-10px); } }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 1rem 2rem; border-radius: 50px; font-weight: 600; text-decoration: none; transition: var(--transition); border: 2px solid transparent; cursor: pointer; }
.btn-primary { background: var(--color-gold); color: var(--color-coffee); }
.btn-primary:hover { background: var(--color-accent); transform: translateY(-2px); }
.btn-secondary { background: transparent; color: white; border-color: white; }
.btn-secondary:hover { background: white; color: var(--color-coffee); }
.btn-outline { background: transparent; color: var(--color-primary); border-color: var(--color-primary); }
.btn-outline:hover { background: var(--color-primary); color: white; }
.btn-large { padding: 1.25rem 2.5rem; font-size: 1.1rem; }

/* Sections */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
section { padding: 6rem 0; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header.light { color: white; }
.section-tag { display: inline-block; color: var(--color-secondary); font-weight: 600; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 1rem; }
.section-header h2 { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); color: var(--color-coffee); margin-bottom: 1rem; }
.section-header.light h2 { color: white; }

/* About */
.about { background: var(--color-cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-content .lead { font-size: 1.35rem; color: var(--color-coffee); font-weight: 500; margin-bottom: 1rem; }
.about-content p { margin-bottom: 1rem; color: var(--color-text-light); }
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 2rem; }
.feature { display: flex; align-items: center; gap: 0.75rem; font-weight: 500; }
.feature-icon { font-size: 1.5rem; }
.about-image { border-radius: 20px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.about-image img { width: 100%; height: auto; display: block; transition: var(--transition); }
.about-image:hover img { transform: scale(1.05); }

/* Menu */
.menu { background: linear-gradient(135deg, var(--color-coffee) 0%, var(--color-primary-dark) 100%); color: white; }
.menu-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.menu-card { background: rgba(255,255,255,0.05); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 2rem; text-align: center; transition: var(--transition); }
.menu-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-10px); }
.menu-icon { font-size: 3rem; margin-bottom: 1rem; }
.menu-card h3 { color: var(--color-gold); margin-bottom: 0.5rem; font-family: var(--font-heading); }
.menu-card p { color: rgba(255,255,255,0.8); font-size: 0.95rem; }

/* Reviews */
.reviews { background: var(--color-cream); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.review-card { background: white; padding: 2rem; border-radius: 20px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); transition: var(--transition); }
.review-card:hover { transform: translateY(-5px); box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.review-card.featured { background: var(--color-coffee); color: white; transform: scale(1.05); }
.review-card.featured p { color: rgba(255,255,255,0.9); }
.review-stars { color: #FFD700; font-size: 1.25rem; margin-bottom: 1rem; }
.review-text { font-style: italic; margin-bottom: 1.5rem; line-height: 1.6; }
.review-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar { width: 45px; height: 45px; border-radius: 50%; background: var(--color-gold); color: var(--color-coffee); display: flex; align-items: center; justify-content: center; font-weight: 700; }
.review-card.featured .author-avatar { background: var(--color-gold); }
.author-name { font-weight: 600; display: block; }
.review-card.featured .author-name { color: white; }
.author-info span:last-child { font-size: 0.85rem; color: var(--color-text-light); }

/* Gallery */
.gallery { background: white; }
.gallery-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 250px 250px; gap: 1rem; }
.gallery-item { position: relative; border-radius: 15px; overflow: hidden; cursor: pointer; }
.gallery-item.large { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.gallery-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; background: linear-gradient(to top, rgba(0,0,0,0.7), transparent); color: white; transform: translateY(100%); transition: var(--transition); }
.gallery-item:hover .gallery-overlay { transform: translateY(0); }
.gallery-item:hover img { transform: scale(1.1); }

/* Contact */
.contact { background: linear-gradient(to bottom, var(--color-cream), white); }
.contact-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 3rem; align-items: start; }
.contact-info .section-header { text-align: left; }
.contact-lead { font-size: 1.2rem; color: var(--color-coffee); margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon { font-size: 1.5rem; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: var(--color-cream); border-radius: 10px; }
.contact-item strong { display: block; color: var(--color-coffee); margin-bottom: 0.25rem; }
.contact-item p { font-size: 1rem; }
.contact-item a { color: var(--color-secondary); text-decoration: none; }
.map-container { border-radius: 15px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.contact-cta-box { background: var(--color-coffee); color: white; padding: 2.5rem; border-radius: 20px; text-align: center; position: sticky; top: 100px; }
.contact-cta-box h3 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 1rem; color: var(--color-gold); }
.contact-cta-box p { color: rgba(255,255,255,0.8); margin-bottom: 1.5rem; }
.contact-cta-box .btn { width: 100%; margin-bottom: 0.75rem; }

/* Footer */
.footer { background: var(--color-coffee); color: white; padding: 3rem 0 1.5rem; }
.footer-content { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem; }
.footer-brand { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-heading); font-size: 1.5rem; text-decoration: none; }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { color: rgba(255,255,255,0.8); text-decoration: none; transition: var(--transition); }
.footer-links a:hover { color: var(--color-gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; text-align: center; color: rgba(255,255,255,0.6); font-size: 0.9rem; }

/* Responsive */
@media (max-width: 1024px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 200px); }
  .gallery-item.large { grid-row: span 1; grid-column: span 2; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-cta-box { position: static; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-menu { position: fixed; left: -100%; top: 70px; flex-direction: column; background: white; width: 100%; text-align: center; transition: 0.3s; padding: 2rem 0; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
  .nav-menu.active { left: 0; }
  .nav-link { color: var(--color-text) !important; padding: 1rem; display: block; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-image { order: -1; }
  .menu-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card.featured { transform: scale(1); order: -1; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: repeat(4, 200px); }
  .gallery-item.large { grid-column: span 1; }
  .features { grid-template-columns: 1fr; }
  .footer-content { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .btn { width: 100%; }
  section { padding: 4rem 0; }
}