/* ==========================================================================
   CSS Variables & Resets
   ========================================================================== */
:root {
    --dark-red: #6b0f0f;
    --wine-red: #861515;
    --cream: #faf5ed;
    --brown: #5a3421;
    --dark-brown: #2a1810;
    --gold: #d4af37;
    --white: #ffffff;
    --text-main: #333333;
    --text-light: #666666;
    
    --font-heading: 'Lobster', cursive;
    --font-ui: 'Poppins', sans-serif;
    --font-accent: 'Playfair Display', serif;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 24px;
    
    --shadow-soft: 0 10px 30px rgba(90, 52, 33, 0.08);
    --shadow-hover: 0 20px 40px rgba(90, 52, 33, 0.15);
    --shadow-text: 2px 2px 4px rgba(0,0,0,0.5);
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-ui);
    color: var(--text-main);
    background-color: var(--cream);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(42, 24, 16, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1;
}

.logo-subtext {
    font-family: var(--font-ui);
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-btn {
    border: 1px solid var(--white);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.nav-btn:hover {
    background: var(--white);
    color: var(--dark-red);
    box-shadow: 0 0 15px rgba(255,255,255,0.5);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%; /* For parallax */
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(42,24,16,0.7) 0%, rgba(42,24,16,0.4) 50%, rgba(42,24,16,0.9) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding-top: 80px;
}

.hero-logo-wrapper {
    width: 150px;
    margin: 0 auto 10px;
}

.hero-logo-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.5));
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 6rem;
    font-weight: normal;
    text-shadow: var(--shadow-text);
    margin: 0;
    line-height: 1;
}

.hero-subtitle {
    font-family: var(--font-ui);
    font-size: 1.2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.hero-ribbon {
    background: var(--dark-red);
    color: var(--white);
    display: inline-block;
    padding: 12px 40px;
    position: relative;
    font-family: var(--font-accent);
    font-size: 1.1rem;
    font-style: italic;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    margin-bottom: 30px;
}

.hero-ribbon::before, .hero-ribbon::after {
    content: '';
    position: absolute;
    top: 0;
    width: 0;
    height: 0;
    border-top: 24px solid transparent;
    border-bottom: 24px solid transparent;
}

.hero-ribbon::before {
    left: -20px;
    border-right: 20px solid var(--dark-red);
}

.hero-ribbon::after {
    right: -20px;
    border-left: 20px solid var(--dark-red);
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e0d8cd;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    margin-bottom: 40px;
}

.scroll-down {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
    animation: bounce 2s infinite;
}

.scroll-down:hover {
    background: var(--white);
    color: var(--dark-red);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Decor Images */
.hero-decor {
    position: absolute;
    bottom: -50px;
    z-index: 5;
    pointer-events: none;
}

.hero-decor img {
    width: 300px;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.6));
}

.hero-decor-left {
    left: 5%;
}

.hero-decor-right {
    right: 5%;
}

/* Coffee Steam Animation */
.steam-container {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 100px;
    z-index: -1;
}

.steam {
    position: absolute;
    bottom: 0;
    background: #FFF;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    opacity: 0;
    filter: blur(8px);
    animation: steaming 4s infinite ease-out;
}

.s1 { left: 10px; animation-delay: 0s; }
.s2 { left: 25px; animation-delay: 1.5s; width: 20px; height: 20px; }
.s3 { left: 40px; animation-delay: 0.8s; }

@keyframes steaming {
    0% { transform: translateY(0) scale(1); opacity: 0.6; }
    100% { transform: translateY(-80px) scale(3); opacity: 0; }
}

/* ==========================================================================
   Features Section
   ========================================================================== */
.features {
    background: var(--cream);
    padding: 60px 0;
    border-bottom: 1px solid rgba(90, 52, 33, 0.1);
    position: relative;
    z-index: 20;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feature-card {
    text-align: center;
    flex: 1;
    padding: 20px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2rem;
    color: var(--dark-red);
    margin-bottom: 15px;
}

.feature-title {
    font-family: var(--font-ui);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 8px;
}

.feature-desc {
    font-size: 0.8rem;
    color: var(--text-light);
    max-width: 200px;
    margin: 0 auto;
}

.feature-divider {
    width: 1px;
    height: 60px;
    background: rgba(90, 52, 33, 0.2);
}

/* ==========================================================================
   Menu Section
   ========================================================================== */
.menu-section {
    padding: 80px 20px;
    background: var(--cream);
    background-image: radial-gradient(rgba(90, 52, 33, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
}

.menu-header {
    text-align: center;
    margin-bottom: 60px;
}

.menu-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--dark-red);
    position: relative;
    display: inline-block;
}

.menu-title::before, .menu-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 2px;
    background: var(--dark-red);
    border-radius: 50%;
}

.menu-title::before { left: -80px; }
.menu-title::after { right: -80px; }

.menu-subtitle {
    font-family: var(--font-accent);
    color: var(--brown);
    font-size: 1.1rem;
    margin-top: 10px;
}

.menu-heart {
    color: var(--dark-red);
    font-size: 0.8rem;
    margin-top: 10px;
}

.menu-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.menu-card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    position: relative;
    transition: var(--transition);
}

.menu-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.card-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.badge {
    position: absolute;
    background: var(--cream);
    color: var(--brown);
    font-size: 0.7rem;
    font-weight: 700;
    text-align: center;
    padding: 8px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    line-height: 1.2;
}

.badge-tr { top: 15px; right: 15px; }
.badge-br { bottom: 30px; right: 15px; }
.badge-bl { bottom: 30px; left: 15px; }

.card-content {
    padding: 30px 25px;
    position: relative;
}

.card-banner {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--dark-red);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 4px;
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(107, 15, 15, 0.4);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.menu-item {
    display: flex;
    align-items: baseline;
    width: 100%;
}

.item-text {
    display: flex;
    flex-direction: column;
    max-width: 75%;
}

.item-name {
    font-family: var(--font-ui);
    font-weight: 600;
    color: var(--brown);
    font-size: 0.9rem;
}

.item-desc {
    font-size: 0.75rem;
    color: var(--text-light);
    line-height: 1.3;
}

.item-dots {
    flex-grow: 1;
    border-bottom: 1px dotted #ccc;
    margin: 0 10px;
    position: relative;
    top: -4px;
}

.item-price {
    font-weight: 700;
    color: var(--dark-red);
    font-size: 0.95rem;
    white-space: nowrap;
}

/* Info Box / Extras */
.info-box {
    background: var(--cream);
    padding: 15px;
    border-radius: var(--radius-sm);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.info-box p {
    font-size: 0.8rem;
    color: var(--brown);
    font-weight: 500;
    margin: 0;
}

.info-box p.en {
    font-size: 0.75rem;
    color: var(--text-light);
}

.bg-icon {
    position: absolute;
    right: -10px;
    bottom: -10px;
    font-size: 4rem;
    color: var(--dark-red);
    opacity: 0.05;
}

/* Dark Card (Beverages) */
.dark-card {
    background: #1a1a1a;
    color: var(--white);
}

.dark-card .card-banner {
    background: var(--dark-red);
}

.beverage-table {
    width: 100%;
    font-size: 0.85rem;
}

.table-header {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.7rem;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 5px;
}

.table-header span { width: 50px; text-align: right; }
.table-header span:first-child { flex-grow: 1; text-align: left; }

.table-row {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: #ccc;
}

.drink-name {
    flex-grow: 1;
    color: var(--white);
}

.table-row span:not(.drink-name) {
    width: 50px;
    text-align: right;
    font-weight: 600;
}

.coffee-info {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: var(--radius-sm);
}

.small-cup {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.coffee-info p {
    font-size: 0.8rem;
    color: #ccc;
    margin: 0;
    line-height: 1.4;
}

.menu-divider {
    height: 1px;
    background: rgba(0,0,0,0.1);
    margin: 15px 0;
}

/* ==========================================================================
   Location CTA Section
   ========================================================================== */
.location-cta {
    position: relative;
    background: linear-gradient(135deg, #4a0a0a 0%, var(--dark-red) 100%);
    padding: 60px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.location-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('data:image/svg+xml,%3Csvg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="%23ffffff" fill-opacity="0.05" fill-rule="evenodd"%3E%3Ccircle cx="3" cy="3" r="3"/%3E%3Ccircle cx="13" cy="13" r="3"/%3E%3C/g%3E%3C/svg%3E');
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: left;
    color: var(--white);
    max-width: 500px;
    padding-right: 40px;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 15px;
    text-shadow: var(--shadow-text);
}

.cta-title .highlight {
    color: var(--white);
}

.cta-desc {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #e0d8cd;
}

.btn-primary {
    background: var(--cream);
    color: var(--dark-red);
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.3), 0 0 15px rgba(250, 245, 237, 0.5);
    background: var(--white);
}

.cta-map {
    position: relative;
    width: 600px;
    height: 350px;
    z-index: 2;
}

.map-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border: 4px solid rgba(255,255,255,0.1);
}

.map-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
}

.pin-marker {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--dark-red);
    border-radius: 50%;
    border: 4px solid var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.pin-marker img {
    width: 60%;
    height: 60%;
    object-fit: contain;
}

.pin-marker::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 15px 10px 0;
    border-style: solid;
    border-color: var(--white) transparent transparent transparent;
    z-index: -1;
}

.pin-pulse {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--dark-red);
    border-radius: 50%;
    z-index: 1;
    animation: pulse 2s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2.5); opacity: 0; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: var(--dark-red);
    color: var(--white);
    padding: 20px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-item i {
    color: #e0d8cd;
    font-size: 1.1rem;
}

.social-link {
    transition: var(--transition);
}

.social-link:hover {
    color: var(--cream);
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

/* ==========================================================================
   Responsive Design (Mobile First principles applied above, specific fixes below)
   ========================================================================== */
@media (max-width: 1200px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cta-map {
        width: 500px;
    }
}

@media (max-width: 992px) {
    .hero-title { font-size: 4.5rem; }
    .hero-decor { width: 200px; }
    
    .features-container {
        flex-wrap: wrap;
        gap: 30px;
    }
    .feature-card { min-width: 40%; }
    .feature-divider { display: none; }
    
    .location-cta {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
    }
    .cta-content {
        padding-right: 0;
        margin-bottom: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .nav-links { display: none; } /* Hamburger menu needed for real production, hidden for simplicity matching prompt scope */
    
    .hero-decor { display: none; }
    .hero-title { font-size: 3.5rem; }
    .hero-ribbon { font-size: 0.9rem; padding: 10px 20px; }
    
    .menu-grid { grid-template-columns: 1fr; }
    
    .cta-map { width: 100%; height: 250px; }
    .cta-title { font-size: 2.5rem; }
    
    .footer-container {
        flex-direction: column;
        gap: 15px;
    }
}