@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

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

:root {
    --bg-dark: #0f0805;
    --accent: #c49a6c;
    --accent-soft: rgba(196, 154, 108, 0.25);
    --text-main: #f7f2ea;
    --text-muted: #d3c4af;
    --card-bg: rgba(0, 0, 0, 0.55);
    --border-subtle: rgba(255, 255, 255, 0.07);
    --primary-color: #c49a6c;
    --secondary-color: #8B4513;
}

body {
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, #3b2316 0, transparent 50%),
        radial-gradient(circle at bottom right, #20100a 0, transparent 55%),
        var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
}

.coffee-pattern {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.12;
    background-image: url("data:image/svg+xml,%3Csvg width='160' height='160' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23c49a6c' stroke-width='2'%3E%3Cpath d='M18 26h22v12a8 8 0 0 1-8 8H26a8 8 0 0 1-8-8V26z'/%3E%3Cpath d='M40 28h5a5 5 0 0 1 0 10h-5'/%3E%3Cpath d='M20 24c0-4 3-6 3-9s-3-4-3-7' stroke-linecap='round'/%3E%3Cpath d='M27 24c0-4 3-6 3-9s-3-4-3-7' stroke-linecap='round'/%3E%3Cpath d='M14 41h30'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 140px 140px;
    background-repeat: repeat;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header */
.site-header {
    background: radial-gradient(circle at top, rgba(0, 0, 0, 0.3) 0, rgba(0, 0, 0, 0.9) 65%);
    border-bottom: 1px solid var(--border-subtle);
    backdrop-filter: blur(22px);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    min-height: 40px;
}

.logo {
    position: relative;
    z-index: 1002;
    flex-shrink: 0;
}

.logo a {
    text-decoration: none;
    color: var(--text-main);
    display: block;
}

.logo img {
    max-height: 60px;
    display: block;
    width: auto;
}

.logo h1 {
    font-size: 1.3rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-main);
    margin: 0;
    white-space: nowrap;
}

.logo h1 span {
    letter-spacing: 0.05em;
    color: var(--accent);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
    flex-shrink: 0;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.main-nav {
    transition: all 0.3s;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: block;
    position: relative;
}

.main-nav a:hover {
    color: var(--accent);
    background: rgba(196, 154, 108, 0.1);
}

.main-nav a.active {
    color: var(--accent);
    background: rgba(196, 154, 108, 0.2);
    /* border: 1px solid rgba(196, 154, 108, 0.4); */
    font-weight: 600;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.language-switcher {
    display: flex;
    gap: 0.5rem;
    margin-left: auto;
    margin-right: 70px;
}

.language-switcher a {
    padding: 0.4rem 0.8rem;
    text-decoration: none;
    color: var(--text-muted);
    border: 1px solid rgba(196, 154, 108, 0.35);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.35);
    font-size: 0.85rem;
    transition: all 0.3s;
}

.language-switcher a.active,
.language-switcher a:hover {
    background: var(--accent);
    color: var(--bg-dark);
    border-color: var(--accent);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-main);
    overflow: hidden;
    margin: 2rem 0;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.3;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(15, 8, 5, 0.7) 0, rgba(15, 8, 5, 0.95) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 3rem 2rem;
}

.hero-content h1 {
    font-size: clamp(2.6rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-content h1 span {
    color: var(--accent);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Shell Card */
.shell-card {
    background: radial-gradient(circle at top, rgba(0, 0, 0, 0.3) 0, rgba(0, 0, 0, 0.9) 65%);
    border-radius: 26px;
    border: 1px solid var(--border-subtle);
    box-shadow:
        0 22px 60px rgba(0, 0, 0, 0.75),
        0 0 0 1px rgba(255, 255, 255, 0.02);
    padding: 2.5rem 2.2rem;
    backdrop-filter: blur(22px);
    margin: 2rem 0;
}

/* Sections */
section {
    padding: 3rem 0;
    position: relative;
    z-index: 1;
}

.about {
    padding: 4rem 0;
}

.about h2,
.menu-page h1,
.contact-page h1 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--accent);
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 600;
}

.content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-subtle);
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-subtle);
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(196, 154, 108, 0.2);
}

.feature-card img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-muted);
}

/* Menu */
.menu-page {
    padding: 2rem 0;
}

.menu-section {
    margin-bottom: 3rem;
}

.menu-section h2 {
    color: var(--accent);
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
}

.menu-items {
    display: grid;
    gap: 1.5rem;
}

.menu-item {
    display: flex;
    gap: 1.5rem;
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-subtle);
    backdrop-filter: blur(10px);
    transition: transform 0.3s, box-shadow 0.3s;
}

.menu-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(196, 154, 108, 0.2);
}

.menu-item-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 15px;
    flex-shrink: 0;
}

.menu-item-content {
    flex: 1;
}

.menu-item-content h3 {
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1.3rem;
}

.menu-item-description {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.menu-item-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent);
}

/* Contact */
.contact-page {
    padding: 2rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-info,
.contact-form-wrapper {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-subtle);
    backdrop-filter: blur(10px);
}

.contact-info h2,
.contact-form-wrapper h2 {
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 1.5rem;
}

.info-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.info-item p {
    color: var(--text-muted);
    line-height: 1.6;
}

.info-item a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s;
}

.info-item a:hover {
    color: var(--text-main);
    text-decoration: underline;
}

.contact-form {
    background: transparent;
    padding: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-main);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.3);
    color: var(--text-main);
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(196, 154, 108, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    font-family: inherit;
}

.btn-primary {
    background: var(--accent);
    color: var(--bg-dark);
    border: 1px solid var(--accent);
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent);
    box-shadow: 0 0 20px rgba(196, 154, 108, 0.3);
}

.alert {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border: 1px solid;
}

.alert-success {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border-color: rgba(76, 175, 80, 0.5);
}

.map-container {
    margin-top: 3rem;
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-subtle);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 15px;
}

/* Footer */
.site-footer {
    background: radial-gradient(circle at top, rgba(0, 0, 0, 0.3) 0, rgba(0, 0, 0, 0.9) 65%);
    color: var(--text-muted);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
    border-top: 1px solid var(--border-subtle);
    backdrop-filter: blur(22px);
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent);
    font-weight: 600;
}

.footer-section p {
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    padding: 0.5rem 1rem;
    border: 1px solid rgba(196, 154, 108, 0.35);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.35);
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--accent);
    color: var(--bg-dark);
    border-color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .header-content {
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .logo {
        z-index: 1002;
        position: relative;
    }

    .logo img {
        max-height: 40px;
    }

    .logo h1 {
        font-size: 1.1rem;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: radial-gradient(circle at top, rgba(0, 0, 0, 0.95) 0, rgba(0, 0, 0, 0.98) 65%);
        backdrop-filter: blur(22px);
        border-left: 1px solid var(--border-subtle);
        padding: 5rem 2rem 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .main-nav ul li {
        width: 100%;
        border-bottom: 1px solid var(--border-subtle);
    }

    .main-nav a {
        padding: 1rem;
        display: block;
        width: 100%;
        border-radius: 0;
    }

    .main-nav a:hover {
        background: rgba(196, 154, 108, 0.15);
    }

    .main-nav a.active {
        background: rgba(196, 154, 108, 0.25);
        border-left: 3px solid var(--accent);
        color: var(--accent);
        font-weight: 600;
    }

    .main-nav a.active::after {
        display: none;
    }

    .header-actions {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: radial-gradient(circle at top, rgba(0, 0, 0, 0.95) 0, rgba(0, 0, 0, 0.98) 65%);
        backdrop-filter: blur(22px);
        border-top: 1px solid var(--border-subtle);
        padding: 1rem;
        display: flex;
        justify-content: center;
        z-index: 999;
    }

    .language-switcher {
        gap: 0.5rem;
    }

    .language-switcher a {
        font-size: 0.85rem;
        padding: 0.5rem 0.8rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .menu-item {
        flex-direction: column;
    }

    .menu-item-image {
        width: 100%;
        height: 200px;
    }

    .shell-card {
        padding: 1.5rem 1.2rem;
    }

    /* Mobile menu overlay */
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.7);
        z-index: 999;
        backdrop-filter: blur(2px);
    }

    .mobile-menu-overlay.active {
        display: block;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.1rem;
    }

    .main-nav {
        width: 100%;
        right: -100%;
    }

    .main-nav.active {
        right: 0;
    }
}
