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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background-color: #1a1612;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(139, 111, 71, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(166, 124, 82, 0.1) 0%, transparent 50%);
    color: #f5f1e8;
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #c9a961;
    text-transform: none;
    letter-spacing: 1px;
    font-style: italic;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.navbar .nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.navbar .nav-menu .nav-link {
    color: #f5f5f5;
    text-decoration: none;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.navbar .nav-menu .nav-link:hover {
    color: #d4af37;
}

.navbar .nav-menu .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #d4af37;
    transition: width 0.3s ease;
}

.navbar .nav-menu .nav-link:hover::after {
    width: 100%;
}

.navbar .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.navbar .hamburger span {
    width: 25px;
    height: 3px;
    background-color: #d4af37;
    transition: all 0.3s ease;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg, rgba(15, 13, 10, 0.95) 0%, rgba(42, 36, 31, 0.9) 100%),
        radial-gradient(ellipse at center, rgba(139, 111, 71, 0.2) 0%, transparent 70%);
    background-size: cover;
    background-position: center;
    text-align: center;
    position: relative;
    padding: 110px 20px 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(139, 111, 71, 0.03) 2px,
            rgba(139, 111, 71, 0.03) 4px);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(15, 13, 10, 0.6) 100%);
    pointer-events: none;
}

.hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.hero-logo-wrapper {
    position: relative;
    padding: 20px;
    background: rgba(15, 13, 10, 0.6);
    border-radius: 8px;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.5),
        inset 0 0 20px rgba(201, 169, 97, 0.1);
    animation: fadeInUp 1s ease;
}

.hero-logo-wrapper::before,
.hero-logo-wrapper::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid #c9a961;
}

.hero-logo-wrapper::before {
    top: -5px;
    left: -5px;
    border-right: none;
    border-bottom: none;
}

.hero-logo-wrapper::after {
    bottom: -5px;
    right: -5px;
    border-left: none;
    border-top: none;
}

.hero-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    filter: brightness(1.05) contrast(1.1);
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero .hero-title {
    font-size: 4.5rem;
    color: #c9a961;
    margin: 0;
    text-shadow:
        3px 3px 6px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(201, 169, 97, 0.3);
    font-weight: normal;
    font-style: italic;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease 0.2s both;
    position: relative;
}

.hero .hero-title::before,
.hero .hero-title::after {
    content: '~';
    color: #8b6f47;
    font-size: 2rem;
    margin: 0 15px;
    opacity: 0.6;
}

.hero .hero-subtitle {
    font-size: 1.4rem;
    color: #e8dcc6;
    margin: 0;
    line-height: 1.8;
    font-style: italic;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    animation: fadeInUp 1s ease 0.4s both;
    max-width: 600px;
}

.hero-decoration {
    position: absolute;
    bottom: 20px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 2;
    animation: fadeInUp 1s ease 0.6s both;
}

.decoration-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, transparent, #c9a961, transparent);
    opacity: 0.6;
}

.decoration-icon {
    font-size: 1.5rem;
    opacity: 0.7;
}

.hero .btn-primary {
    display: inline-block;
    padding: 16px 45px;
    background-color: transparent;
    color: #c9a961;
    text-decoration: none;
    border: 2px solid #c9a961;
    border-radius: 4px;
    text-transform: none;
    letter-spacing: 1px;
    font-size: 1.1rem;
    font-weight: normal;
    transition: all 0.4s ease;
    animation: fadeInUp 1s ease 0.6s both;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #c9a961;
    transition: left 0.4s ease;
    z-index: -1;
}

.hero .btn-primary:hover {
    color: #0f0d0a;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(201, 169, 97, 0.5);
}

.hero .btn-primary:hover::before {
    left: 0;
}

section {
    padding: 50px 0;
    position: relative;
}

.menu-title {
    font-size: 3rem;
    color: #c9a961;
    text-align: center;
    text-transform: none;
    letter-spacing: 2px;
    position: relative;
    font-style: italic;
    font-weight: normal;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.section-title {
    font-size: 3rem;
    color: #c9a961;
    text-align: center;
    text-transform: none;
    letter-spacing: 2px;
    position: relative;
    font-style: italic;
    font-weight: normal;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.section-title::before {
    content: '~';
    position: absolute;
    left: calc(50% - 100px);
    top: 50%;
    color: #8b6f47;
    opacity: 0.4;
    font-size: 2rem;
    transform: translateY(-50%);
    margin: 0 -24px;
}

.section-title::after {
    content: '~';
    position: absolute;
    right: calc(50% - 100px);
    top: 50%;
    color: #8b6f47;
    opacity: 0.4;
    font-size: 2rem;
    transform: translateY(-50%);
    margin: 0 -24px;
}

.menu-section {
    background-color: #0f0d0a;
    background-image:
        repeating-linear-gradient(45deg,
            transparent,
            transparent 10px,
            rgba(139, 111, 71, 0.02) 10px,
            rgba(139, 111, 71, 0.02) 20px);
}

.menu-section .menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.menu-section .menu-item {
    background: rgba(42, 36, 31, 0.4);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(201, 169, 97, 0.2);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.menu-section .menu-item:hover {
    border-color: rgba(201, 169, 97, 0.4);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    transform: translateY(-5px);
}

.menu-section .menu-item h3 {
    color: #d4af37;
    font-size: 1.9rem;
    margin-bottom: 35px;
    text-transform: none;
    letter-spacing: 1px;
    border-bottom: 2px solid rgba(201, 169, 97, 0.3);
    padding-bottom: 15px;
    font-style: italic;
    text-align: center;
    position: relative;
}

.menu-section .menu-item h3::before,
.menu-section .menu-item h3::after {
    content: '•';
    color: #8b6f47;
    margin: 0 10px;
    opacity: 0.5;
}

.menu-section .menu-dish {
    margin-bottom: 25px;
    padding: 20px;
    background-color: rgba(15, 13, 10, 0.5);
    border-left: 4px solid #c9a961;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
}

.menu-section .menu-dish::before {
    content: '';
    position: absolute;
    left: -4px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #c9a961, #d4af37);
    border-radius: 2px 0 0 2px;
}

.menu-section .menu-dish:hover {
    background-color: rgba(201, 169, 97, 0.08);
    transform: translateX(8px);
    box-shadow: 4px 0 15px rgba(201, 169, 97, 0.2);
}

.menu-section .menu-dish .dish-name {
    color: #c9a961;
    font-size: 1.4rem;
    font-weight: normal;
    margin-bottom: 8px;
    font-style: italic;
    letter-spacing: 0.5px;
}

.menu-section .menu-dish .dish-description {
    color: #e8dcc6;
    font-size: 1rem;
    margin-top: 8px;
    font-style: normal;
    line-height: 1.6;
    opacity: 0.9;
}

.about-section {
    background-color: #1a1612;
    background-image:
        radial-gradient(circle at 30% 50%, rgba(139, 111, 71, 0.1) 0%, transparent 50%);
}

.about-section .about-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    background: rgba(42, 36, 31, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(201, 169, 97, 0.2);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    margin-top: 60px;
}

.about-section .about-content p {
    font-size: 1.25rem;
    color: #e8dcc6;
    margin-bottom: 25px;
    line-height: 2;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.about-section .about-content p:first-child::first-letter {
    font-size: 4.5rem;
    color: #c9a961;
    float: left;
    line-height: 0.8;
    margin-top: 8px;
    font-style: normal;
    font-weight: bold;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0 0 15px rgba(201, 169, 97, 0.4);
    border-radius: 8px;
    padding: 8px 12px;
    margin-bottom: 10px;;
}

/* Gallery/Image Slider Section */
.gallery-section {
    background-color: #1a1612;
    background-image:
        radial-gradient(circle at 50% 50%, rgba(139, 111, 71, 0.08) 0%, transparent 70%);
    padding: 50px 0;
}

.image-slider {
    max-width: 1000px;
    margin: 60px auto 0;
    position: relative;
    width: 100%;
    padding: 0 20px;
}

.slider-wrapper {
    position: relative;
    border-radius: 12px;
    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.5),
        inset 0 0 30px rgba(201, 169, 97, 0.1);
    border: 2px solid rgba(201, 169, 97, 0.3);
    background: rgba(15, 13, 10, 0.6);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 850px;
    width: 100%;
    margin: 0 auto;
}

.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.card {
    flex: 0 0 calc(33.333% - 14px);
    margin-right: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(201, 169, 97, 0.2);
    background: rgba(15, 13, 10, 0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(201, 169, 97, 0.4);
    border-color: rgba(201, 169, 97, 0.5);
}

.card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.slider-btn {
    flex-shrink: 0;
    background: rgba(201, 169, 97, 0.8);
    border: 2px solid #c9a961;
    color: #0f0d0a;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    z-index: 100;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
}

.slider-btn:hover {
    background: #c9a961;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.6);
}

.slider-btn:active {
    transform: scale(0.95);
}

.slider-btn span {
    line-height: 1;
    font-weight: bold;
}

.contact-section {
    background-color: #0f0d0a;
}

.contact-section .contact-content {
    max-width: 850px;
    margin: 60px auto 0;
    display: flex;
    justify-content: space-between;
}

.contact-section .contact-info .contact-item {
    margin-bottom: 40px;
}

.contact-section .contact-info .contact-item h3 {
    color: #d4af37;
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-section .contact-info .contact-item p {
    color: #e8dcc6;
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-section .contact-info .contact-item p a {
    color: #c9a961;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-section .contact-info .contact-item p a:hover {
    color: #d4af37;
    text-decoration: underline;
}


.footer {
    background-color: #000000;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer a {
    color: #cccccc;
    font-size: 0.9rem;
    text-decoration: none;
}

.footer p {
    color: #cccccc;
    font-size: 0.9rem;
}

.contact-info {
    width: 100%;
    max-width: 850px;
    display: flex;
    justify-content: space-between;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

html {
    scroll-behavior: smooth;
}

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

    .menu-section  .menu-grid {
        grid-template-columns: 1fr !important;
        margin-top: 20px;
    }
    
    .navbar .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
    }

    .navbar .nav-menu.active {
        left: 0;
    }

    .navbar .hamburger {
        display: flex;
    }

    .navbar .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .navbar .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .navbar .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero {
        padding: 80px 20px 60px;
    }

    .hero-logo-wrapper {
        padding: 15px;
    }

    .hero-logo-wrapper .hero-logo {
        max-width: 280px;
    }

    .hero .hero-title {
        font-size: 2.8rem;
    }

    .hero .hero-title::before,
    .hero .hero-title::after {
        font-size: 1.5rem;
        margin: 0 10px;
    }

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

    .hero-decoration {
        bottom: 20px;
    }

    .hero-decoration .decoration-line {
        width: 50px;
    }

    .hero .hero-content {
        gap: 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .slider-wrapper {
        padding: 15px;
        gap: 10px;
        width: 100% !important;
        max-width: 100% !important;
    }

    .image-slider {
        max-width: 100%;
        margin: 40px auto 0;
    }

    .card {
        flex: 0 0 calc(100% - 20px) !important;
        margin-right: 20px;
        min-width: 0;
    }

    .card img {
        height: 250px;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
        flex-shrink: 0;
    }

    .footer .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer p,
    .footer a {
        margin: 0;
        font-size: 0.85rem;
    }
    .contact-info {
        flex-direction: column;
        gap: 10px;
    }
    .navbar .logo {
        font-size: 1.4rem;
    }
    .about-section .about-content {
        padding: 20px 10px;
    }
    section {
        padding: 35px 0;
    }
    .image-slider {
        padding: 0 6px;
    }
}