* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --brown: #6F4E37;
    --light-brown: #A67C52;
    --cream: #F5E6D3;
    --dark: #3E2723;
    --white: #FFFFFF;
}

body {
    font-family: 'Georgia', serif;
    color: var(--dark);
    background: var(--cream);
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(111, 78, 55, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--cream);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--cream);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--white);
}

.lang-switcher {
    background: var(--cream);
    color: var(--brown);
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.lang-switcher:hover {
    background: var(--white);
    transform: scale(1.05);
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(62, 39, 35, 0.9), rgba(111, 78, 55, 0.8)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="50">☕</text></svg>');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(166, 124, 82, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.cta-btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--light-brown), var(--brown));
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.4s;
    box-shadow: 0 5px 15px rgba(111, 78, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(111, 78, 55, 0.5);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

section {
    padding: 100px 0;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--brown);
}

.menu {
    background: var(--white);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.menu-item {
    background: var(--cream);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(166, 124, 82, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.menu-item:hover::before {
    opacity: 1;
}

.menu-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 30px rgba(111, 78, 55, 0.3);
}

.item-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.menu-item h3 {
    font-size: 1.5rem;
    color: var(--brown);
    margin-bottom: 10px;
}

.menu-item p {
    color: var(--dark);
    margin-bottom: 15px;
}

.price {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--light-brown);
}

.about {
    background: var(--cream);
}

.about-text {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.features {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.feature {
    text-align: center;
    transition: transform 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 10px;
    filter: drop-shadow(0 3px 5px rgba(0,0,0,0.2));
    transition: transform 0.3s;
}

.feature:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
}

.feature h4 {
    color: var(--brown);
    font-size: 1.2rem;
}

.contact {
    background: var(--brown);
    color: var(--cream);
}

.contact .section-title {
    color: var(--cream);
}

.contact-info {
    text-align: center;
    font-size: 1.2rem;
}

.contact-info p {
    margin: 15px 0;
}

footer {
    background: var(--dark);
    color: var(--cream);
    text-align: center;
    padding: 30px;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .navbar {
        padding: 15px 20px;
    }
    
    .nav-links {
        gap: 15px;
        font-size: 0.9rem;
    }
    
    .container {
        padding: 0 20px;
    }
}
