@font-face {
    font-family: 'clashdisplay';
    src: url('../fonts/ClashDisplay-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'clashdisplayregular';
    src: url('../fonts/ClashDisplay-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

:root {
    /* Gold Color Palette */
    --gold-light: #E8D7B0;
    --gold-mid: #C9B88A;
    --gold-dark: #B8A47A;
    
    /* Gold Gradient */
    --gold-gradient: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-mid) 50%, var(--gold-dark) 100%);
    
    /* Background Colors */
    --bg-black: #000;
    --bg-overlay: rgba(0, 0, 0, 0.2);
    --bg-overlay-dark: rgba(0, 0, 0, 0.3);
    --bg-overlay-darker: rgba(0, 0, 0, 0.8);
    
    /* Border Colors */
    --border-light: rgba(255, 255, 255, 0.1);
    --border-lighter: rgba(255, 255, 255, 0.2);
    
    /* Text Colors */
    --text-white: #fff;
    --text-white-muted: rgba(255, 255, 255, 0.8);
    --text-white-light: rgba(255, 255, 255, 0.7);
}

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

body {
    font-family: 'Inter', system-ui, sans-serif;
    background-color: var(--bg-black);
    color: var(--text-white);
    min-height: 100vh;
    background-image: url('../img/hideoutImage.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
}

.logo {
    position: absolute;
    left: 2rem;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.restaurant-title {
    text-align: center;
    margin-bottom: 2rem;
}

.restaurant-name {
    font-family: 'clashdisplay', sans-serif;
    font-size: 3rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.restaurant-subtitle {
    font-family: 'clashdisplayregular', sans-serif;
    font-size: 1.2rem;
    color: var(--text-white-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.nav-menu {
    display: flex;
    justify-content: center;
    background: var(--bg-overlay-dark);
    border-radius: 50px;
    padding: 4px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-light);
    max-width: 400px;
    margin: 0 auto;
}

.nav-item {
    color: var(--text-white);
    text-decoration: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'clashdisplayregular', sans-serif;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 2px;
    background: transparent;
    flex: 1;
    text-align: center;
    font-weight: 500;
}

.nav-item.active {
    background: linear-gradient(135deg, rgba(232, 215, 176, 0.15) 0%, rgba(201, 184, 138, 0.2) 100%);
    color: var(--gold-light);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(201, 184, 138, 0.1);
    border: 1px solid rgba(201, 184, 138, 0.3);
}

.nav-item:not(.active):hover {
    background: rgba(255, 255, 255, 0.1);
}

.main-content {
    flex: 1;
    padding: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.menu-container {
    background: var(--bg-overlay);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid var(--border-lighter);
    overflow: hidden;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.accordion-section {
    border-bottom: 1px solid var(--border-light);
}

.accordion-section:last-child {
    border-bottom: none;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.accordion-header:hover {
    background: var(--bg-overlay);
    box-shadow: inset 0 0 20px rgba(201, 184, 138, 0.1);
}

.section-title {
    font-family: 'clashdisplay', sans-serif;
    font-size: 1.5rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    font-weight: 700;
}

.accordion-arrow {
    transition: transform 0.3s ease;
    color: var(--text-white-light);
    font-size: 1rem;
}

.accordion-arrow.rotated {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: transparent;
}

.accordion-content.open {
    max-height: 1000px;
}

.menu-items {
    padding: 0 2rem 2rem;
}

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

.menu-item:hover {
    background: linear-gradient(90deg, rgba(232, 215, 176, 0.08) 0%, rgba(201, 184, 138, 0.05) 100%);
    border-radius: 8px;
    padding-left: 1rem;
    padding-right: 1rem;
    border-left: 2px solid var(--gold-mid);
}

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

.item-name {
    font-family: 'clashdisplayregular', sans-serif;
    font-size: 14px;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.item-price {
    font-family: 'clashdisplay', sans-serif;
    font-size: 14px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .logo {
        position: static;
        margin-bottom: 1rem;
    }

    .logo-img {
        height: 100px;
    }

    .nav-menu {
        max-width: 300px;
        padding: 3px;
    }

    .nav-item {
        padding: 0.8rem 2rem;
        font-size: 14px;
    }

    .main-content {
        padding: 1rem;
    }

    .restaurant-name {
        font-size: 2rem;
    }

    .accordion-header {
        padding: 1.2rem 1rem;
    }

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

    .menu-items {
        padding: 0 1rem 1rem;
    }

    .menu-item {
        padding: 0.8rem 0;
    }

    .menu-item:hover {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .item-name {
        font-size: 13px;
    }

    .item-price {
        font-size: 13px;
    }
}

.footer {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.9);
    border-top: 1px solid var(--border-light);
}

.footer-text {
    font-family: 'clashdisplayregular', sans-serif;
    color: var(--text-white-light);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}