* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #286B4A;
    --secondary-color: #3E8B62;
    --accent-color: #F2B544;
    --dark-bg: #173F2E;
    --light-bg: #E9F0E8;
    --text-dark: #F0F5EF;
    --text-light: #B9C9BE;
    --white: #FFFFFF;
    --border-radius: 8px;
    --shadow: 0 8px 24px rgba(5, 25, 17, 0.32);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    background-color: #141A18;
    line-height: 1.6;
    overflow-x: hidden;
}

img, embed, iframe, svg {
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.site-strip {
    background: #F2B544;
    color: #173F2E;
    font-size: 0.74rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.site-strip .container {
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.navbar {
    background: rgba(255, 255, 255, 0.97);
    color: #FFFFFF;
    padding: 0.7rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: #173F2E;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 0.02em;
}

.brand img {
    width: 52px;
    height: 52px;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #173F2E;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-link:hover {
    color: #C67D16;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #173F2E;
    margin: 5px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background-size: cover;
    background-position: center 45%;
    background-attachment: fixed;
    color: #FFFFFF;
    padding: 120px 20px;
    text-align: center;
    min-height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(90deg, rgba(10, 30, 20, 0.56) 0%, rgba(15, 55, 36, 0.22) 52%, rgba(10, 30, 20, 0.42) 100%),
        linear-gradient(180deg, rgba(10, 30, 20, 0.12) 0%, rgba(5, 22, 14, 0.54) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    padding: 2rem;
}

.hero-logo {
    width: 160px;
    height: 160px;
    display: block;
    margin: 0 auto 1.4rem;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.48));
}

.hero-content h1 {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 1.08;
    margin-bottom: 1rem;
    animation: fadeInDown 0.8s ease;
}

.hero-content p {
    font-size: 1.25rem;
    color: #E5F4DF;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary {
    background-color: var(--accent-color);
    color: #143B28;
    box-shadow: 0 8px 20px rgba(242, 181, 68, 0.3);
}

.btn-primary:hover {
    background-color: #FFD477;
    color: #102F25;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* About Section */
.about {
    padding: 80px 20px;
    background-color: #264B3E;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
}

.about > .container > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-card {
    background-color: #102F25;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
    border-top: 3px solid var(--accent-color);
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.info-card h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.info-card a {
    color: #90EE90;
    text-decoration: none;
}

.info-card a:hover {
    text-decoration: underline;
}

/* Drinks Section */
.menu {
    padding: 80px 20px;
    background-color: #0C2119;
}

.menu h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--accent-color);
}

/* PDF Viewer - Simple */
.pdf-simple-wrapper {
    padding: 2rem 0;
    display: flex;
    justify-content: center;
}

.pdf-frame {
    width: 90%;
    max-width: 900px;
    height: 700px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: #ffffff;
}

@media (max-width: 768px) {
    .pdf-frame {
        width: 95%;
        height: 500px;
    }
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-button {
    padding: 10px 20px;
    background-color: #2A3E37;
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    color: var(--text-dark);
}

.tab-button:hover {
    border-color: var(--accent-color);
    background-color: #3A5047;
}

.tab-button.active {
    background-color: var(--accent-color);
    color: #1B4332;
    border-color: var(--accent-color);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.menu-category {
    display: none;
}

.menu-category.active {
    display: contents;
}

.menu-item {
    background-color: #2A3E37;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-color);
    transition: all 0.3s;
}

.menu-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.menu-item h3 {
    color: var(--accent-color);
    margin: 0;
    flex: 1;
}

.menu-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.price {
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1rem;
    white-space: nowrap;
    margin-left: 1rem;
}

/* Gallery Section */
.gallery {
    padding: 80px 20px;
    background-color: #264B3E;
}

.gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--accent-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(27, 67, 50, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 67, 50, 0);
    z-index: 2;
    transition: background 0.4s;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(27, 67, 50, 0.3);
}

.gallery-item:hover::before {
    background: rgba(183, 227, 107, 0.12);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background-color: #0C2119;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--accent-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h3,
.contact-form h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.contact-info h3:first-child,
.contact-form h3:first-child {
    margin-top: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: #FFFFFF;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.2rem;
}

.social-icon:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 1rem;
    border: 1px solid #719481;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    background-color: #173D2E;
    color: var(--text-dark);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 5px rgba(255, 165, 0, 0.3);
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    color: #FFFFFF;
    text-align: center;
    padding: 2rem;
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 0.75rem;
}

.legal-links a {
    color: var(--accent-color);
    text-decoration: none;
}

.legal-links a:hover {
    text-decoration: underline;
}

/* Legal pages */
.legal-page {
    min-height: 100vh;
    background-color: #141A18;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 20px;
}

.legal-content h1,
.legal-content h2 {
    color: var(--accent-color);
}

.legal-content h1 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.legal-content h2 {
    margin: 2rem 0 0.75rem;
    font-size: 1.35rem;
}

.legal-content p,
.legal-content li {
    color: var(--text-dark);
}

.legal-content p {
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 0 0 1rem 1.5rem;
}

.legal-content a {
    color: #90EE90;
}

.legal-notice {
    padding: 1rem 1.25rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent-color);
    background-color: #253933;
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-strip .container {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        padding-top: 0.45rem;
        padding-bottom: 0.45rem;
        gap: 0.2rem;
    }

    .site-strip span:last-child {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .navbar .container {
        position: relative;
        gap: 0.75rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: calc(100% + 0.5rem);
        left: 20px;
        right: 20px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        border-radius: 12px;
        padding: 1rem;
        box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
        z-index: 1000;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        display: block;
        color: #173F2E;
        padding: 0.5rem 0.25rem;
    }

    .hero {
        padding: 80px 16px;
        min-height: 420px;
    }

    .hero-content {
        padding: 1rem 0.5rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .info-grid,
    .gallery-grid,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .tabs {
        gap: 0.5rem;
    }

    .tab-button {
        padding: 8px 12px;
        font-size: 0.9rem;
    }

    .about h2,
    .menu h2,
    .gallery h2,
    .contact h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .brand {
        font-size: 1rem;
        max-width: calc(100% - 60px);
    }

    .brand img {
        width: 44px;
        height: 44px;
    }

    .brand span {
        display: none;
    }

    .site-strip {
        font-size: 0.66rem;
    }

    .hero {
        padding: 60px 14px;
        min-height: 340px;
        background-attachment: scroll;
    }

    .hero-content {
        padding: 0.5rem 0.25rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .hero-logo {
        width: 86px;
        height: 86px;
    }

    .menu-item,
    .info-card,
    .contact-form input,
    .contact-form textarea {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .social-links {
        gap: 0.5rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}
