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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #2a2a2a;
   /* --accent-color: #d4af37; */
    --accent-color: #c6ac83;;
    --text-light: #cccccc;
    --text-dark: #ffffff;
    --border-light: #333333;
    --bg-dark: #0f0f0f;
}

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

body {
    font-family: 'Cochin', serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-dark);
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    padding: 8px 0;
    transition: all 0.4s ease;
}
a.navbar-brand img {
width: 260px;
}
.navbar-brand {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark) !important;
    letter-spacing: 2px;
    font-family: 'Cochin', serif;
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 400;
    font-size: 12px;
    margin: 0 1rem;
    letter-spacing: 0.5px;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -8px;
    left: 50%;
    background: var(--accent-color);
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-color) !important;
}

.navbar-nav .nav-link:hover::before {
    width: 100%;
    left: 0;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Hero Section with Image Slider */
.hero-section {
    height: 75vh;
    position: relative;
    overflow: hidden;
    margin-top: 150px;
}


.hero-slider {
    width: 100%;
    height: 100%;
}

.hero-slide {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}
.form-control {
    background: none;
    color: #fff;
    border: 1px solid #7f7d7d;
    border-radius: 0px;
}
.form-control:focus {
    color: #fff;
    background-color: #000000;
    border-color: #f3f8ff;
    outline: 0;
    box-shadow: none;
}
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    color: white;
}

.hero-content h1 {
    font-size: 30px;
    font-weight: normal;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    opacity: 0;
    animation: fadeInUp 1.2s ease 0.3s forwards;
    text-transform: uppercase;
}
.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-weight: 400;
    letter-spacing: 1px;
    opacity: 0;
    animation: fadeInUp 1.2s ease 0.6s forwards;
}

.hero-cta {
    opacity: 0;
    animation: fadeInUp 1.2s ease 0.9s forwards;
}

.btn-elegant {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);

    padding: 10px 26px;
    font-family: 'Cochin', serif;
    font-size: 13px;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    text-transform: uppercase;
}

.btn-elegant:hover {
    background: var(--accent-color);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: var(--accent-color);
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

.swiper-pagination-bullet-active {
    background: var(--accent-color);
}

/* Section Styling */
.section {
    padding: 55px 0;
    background: var(--bg-dark);
}

.section-title {
    text-align: center;
    font-size: 34px;
    font-weight: 7n00;
    color: var(--text-dark);
    margin-bottom: 3rem;
    letter-spacing: 2px;
    position: relative;
    text-transform: uppercase;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 2px;
    background: var(--accent-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 5rem;
    font-weight: 400;
}

/* Menu Cards */
.menu-card {
    background: var(--secondary-color);
    padding: 3rem 2rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border-light);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.menu-card:hover::before {
    left: 100%;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
    border-color: var(--accent-color);
}

.menu-card-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.menu-card h4 {
    font-size: 19px;
    font-weight: normal;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
}

.menu-card p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.menu-card .btn-outline {
    background: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 10px 25px;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.menu-card .btn-outline:hover {
    background: var(--accent-color);
    color: var(--bg-dark);
    border-color: var(--accent-color);
}

/* Gallery Slider */
.gallery-section {
    background: var(--primary-color);
    padding: 80px 0;
}

.gallery-slider {
    padding: 0 20px;
}

.gallery-slide {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    height: 500px;
}
img#logo_footer {
    width: 250px;
}
.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-slide:hover img {
    transform: scale(1.05);
}

/* Contact Section */
.contact-section {
    background: var(--secondary-color);
    border-top: 1px solid var(--border-light);
}

.contact-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--bg-dark);
    border: 1px solid var(--border-light);
    height: 100%;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.1);
}

.contact-card-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.contact-card h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.contact-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-light);
}

.footer-brand {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-family: 'Cochin', serif;
    letter-spacing: 2px;
}

.footer-address {
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 18px;
}

.footer-hours h6 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-hours p {
    margin-bottom: 0.5rem;
    font-size: 18px;
}

.social-links {
    margin-top: 2rem;
}

.social-links a {
    color: var(--text-light);
    font-size: 1.5rem;
    margin: 0 15px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 25px;
    }
    .navbar-nav .nav-link {
        margin: 0.5rem 0;
        text-align: center;
    }


    .btn-elegant {

        padding: 6px 22px;
        font-family: 'Cochin', serif;
        font-size: 11px;
        letter-spacing: 1px;

    }


    .section {
        padding: 80px 0;
    }

    .menu-card {
        padding: 2rem 1.5rem;
    }

    .gallery-slide {
        height: 491px;
    }

    .footer-brand {
        font-size: 2rem;
    }
    .swiper-button-next, .swiper-button-prev {
        color: var(--accent-color);
        background: rgba(0, 0, 0, 0.5);
        border-radius: 50%;
        width: 35px;
        height: 35px;
    }
    .swiper-button-next:after, .swiper-button-prev:after {
        font-size: 10px;
    }

    .footer-hours{ text-align: center !important;}

}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .navbar-brand {
        font-size: 1.8rem;
    }

    .social-links a {
        margin: 0 10px;
        font-size: 1.3rem;
    }
}

.swiper-button-next:after, .swiper-button-prev:after {

    font-size: 17px;
}


.menu-category {
            margin-bottom: 4rem;
            background: var(--primary-color);
            border-radius: 15px;
            padding: 2rem;
            border: 1px solid var(--border-light);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .category-title {
            font-size: 2rem;
            color: var(--accent-color);
            margin-bottom: 2rem;
            text-align: center;
            font-weight: 600;
            border-bottom: 2px solid var(--accent-color);
            padding-bottom: 1rem;
        }

        .menu-item {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            padding: 1.5rem 0;
            border-bottom: 1px solid var(--border-light);
            transition: all 0.3s ease;
        }

        .menu-item:last-child {
            border-bottom: none;
        }

        .menu-item:hover {
            background: rgba(212, 175, 55, 0.05);
            padding-left: 1rem;
            border-radius: 8px;
        }

        .item-info {
            flex: 1;
            margin-right: 2rem;
        }

        .item-name {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }

        .item-description {
            color: var(--text-light);
            font-size: 1rem;
            line-height: 1.5;
        }

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

        .pdf-menu-section {
            background: var(--secondary-color);
            padding: 60px 0;
            border-top: 2px solid var(--accent-color);
        }


        .hero-section {
            /*height: 40vh;*/
            position: relative;
            background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-color) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 100px;
            border-bottom: 2px solid var(--accent-color);
        }

        .hero-content {
            text-align: center;
            z-index: 2;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--accent-color);
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: var(--text-light);
            margin-bottom: 2rem;
        }

        .menu-section {
            padding: 80px 0;
            background: var(--bg-dark);
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: var(--accent-color);
            margin-bottom: 3rem;
            font-weight: 700;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: var(--accent-color);
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .menu-item {
                flex-direction: column;
                gap: 1rem;
            }

            .item-info {
                margin-right: 0;
            }

            .item-price {
                align-self: flex-end;
            }
        }
