@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Roboto:wght@300;400;700&family=Permanent+Marker&display=swap');

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

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f1ea;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4c5a9' fill-opacity='0.2'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E" );
    color: #333;
    margin: 0;
    padding-top: 80px;
    min-height: 100vh;
}

.top-bar {
    background: #fff;
    padding: 15px 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.top-bar-title {
    font-family: 'Bangers', cursive;
    font-size: 1.8rem;
    color: #d9534f;
    text-decoration: none;
}

.top-bar-nav {
    display: flex;
    gap: 20px;
}

.top-bar-nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.top-bar-nav a:hover, .top-bar-nav a.active {
    background-color: #d9534f;
    color: #fff;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    margin: 5px 0;
    transition: all 0.3s;
}

.language-selector-container {
    margin-bottom: 20px;
}

.language-selector {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.language-selector a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 5px;
    background-color: #fff;
    border: 1px solid #ddd;
    transition: background-color 0.3s, color 0.3s;
}

.language-selector a:hover {
    background-color: #f0f0f0;
}

.language-selector a.active {
    background-color: #A94442;
    color: white;
    border-color: #A94442;
}

.menu-container {
    max-width: 1200px;
    margin: 20px auto;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ecf0f1;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    border: 3px solid #d9534f;
    position: relative;
    overflow: hidden;
}

.menu-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M20 20c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8zm0-20c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8z'/%3E%3C/g%3E%3C/svg%3E" );
    pointer-events: none;
}

.menu-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.menu-header img {
    max-width: 280px;
    margin-bottom: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.menu-header h1 {
    font-family: 'Bangers', cursive;
    font-size: 4rem;
    color: #f1c40f;
    margin: 0;
    text-shadow: 3px 3px 0px #d9534f, 6px 6px 10px rgba(0,0,0,0.3);
    letter-spacing: 2px;
}

.menu-subtitle {
    font-size: 1.2rem;
    color: #bdc3c7;
    margin-top: 10px;
    font-style: italic;
}

.menu-section {
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.section-title {
    font-family: 'Permanent Marker', cursive;
    font-size: 2.2rem;
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.menu-item {
    background: rgba(52, 73, 94, 0.8);
    border-radius: 15px;
    padding: 20px;
    border-left: 5px solid #f1c40f;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.menu-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    border-left-color: #d9534f;
}

.item-photo {
    display: flex;
    justify-content: center;
}

.item-photo img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f1c40f;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.item-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.item-name {
    font-weight: 700;
    font-size: 1.3rem;
    color: #f1c40f;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    flex: 1;
    min-width: 150px;
}

.item-price {
    font-weight: 700;
    font-size: 1.4rem;
    color: #fff;
    background: #A94442;
    padding: 5px 15px;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 3px 10px rgba(169, 68, 66, 0.3);
}

.item-description {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #ecf0f1;
    position: relative;
    z-index: 1;
}

.special-info {
    background: linear-gradient(135deg, #d9534f 0%, #c0392b 100%);
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
    text-align: center;
    box-shadow: 0 10px 25px rgba(217, 83, 79, 0.3);
    position: relative;
    z-index: 1;
}

.special-info h2 {
    font-family: 'Permanent Marker', cursive;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.special-info p {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 10px;
}

.phone-highlight {
    font-size: 1.4rem;
    font-weight: bold;
    color: #f1c40f;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.button-container {
    text-align: center;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-primary {
   background: linear-gradient(135deg, #A94442 0%, #933b39 100%);
   color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(217, 83, 79, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #f1c40f 0%, #d4ac0d 100%);
    color: #333;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(241, 196, 15, 0.4);
}

@media (max-width: 992px) {
    .top-bar-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        background: #fff;
        padding: 80px 20px 20px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        gap: 30px;
    }

    .top-bar-nav.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .top-bar-title {
        font-size: 1.5rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .menu-container {
        padding: 20px;
        margin: 10px auto;
        max-width: 100%;
    }

    .menu-header h1 {
        font-size: 2.5rem;
    }

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

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .menu-item {
        flex-direction: row;
        align-items: flex-start;
    }

    .item-photo img {
        width: 90px;
        height: 90px;
    }

    .item-header {
        flex-direction: column;
        align-items: flex-start;
    }

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

@media (max-width: 480px) {
    body {
        padding-top: 60px;
    }

    .menu-header img {
        max-width: 200px;
    }

    .menu-header h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.4rem;
        gap: 8px;
    }

    .menu-container {
        padding: 15px;
        border-radius: 10px;
    }

    .item-photo img {
        width: 80px;
        height: 80px;
    }

    .item-name {
        font-size: 1.1rem;
        min-width: 120px;
    }

    .item-price {
        font-size: 1.2rem;
    }

    .special-info h2 {
        font-size: 1.4rem;
    }

    .special-info p {
        font-size: 1rem;
    }
}