@font-face {
    font-family: 'DIN Condensed';
    src: url('DINCondensedBold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'DIN Pro';
    src: url('DINProMedium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

:root {
    --bg-color: #ffffff;
    --text-primary: #001f35;
    --text-secondary: #001f35;
    --accent-color: #001f35;
    --font-heading: 'DIN Condensed', sans-serif;
    --font-body: 'DIN Pro', sans-serif;
    --max-width: 900px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-weight: 500;
    line-height: 1.4;
    display: flex;
    justify-content: center;
    overflow-x: hidden;
}

.container {
    max-width: var(--max-width);
    width: 100%;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInDown 1s ease forwards;
}

.logo {
    height: 40px;
    width: auto;
    max-width: 100%;
}

main {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.menu-page {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.menu-section {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.menu-section:nth-child(2) {
    animation-delay: 0.1s;
}

.menu-section:nth-child(3) {
    animation-delay: 0.2s;
}

.menu-section:nth-child(4) {
    animation-delay: 0.3s;
}

.menu-section:nth-child(5) {
    animation-delay: 0.4s;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}



.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 20px;
    padding: 4px 0;
    transition: var(--transition);
}

.item-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.item-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.item-note {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-top: 4px;
    font-style: italic;
}

.item-price {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    text-align: right;
    white-space: nowrap;
}

/* Page Indicator for Digital Menu */
.page-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 40px 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-divider::after {
    content: "•";
    background: white;
    padding: 0 20px;
    color: #ccc;
}

footer {
    margin-top: 100px;
    padding: 60px 0;
    text-align: center;
}

.tagline {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 8px;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.instagram-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: var(--transition);
    opacity: 0.7;
}

.instagram-link:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.instagram-link svg {
    width: 20px;
    height: 20px;
}

.credit {
    margin-top: 30px;
    font-size: 0.65rem;
    opacity: 0.15;
    transition: var(--transition);
}

.credit a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 400;
}

.credit:hover {
    opacity: 0.4;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

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

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

/* Mobile Adjustments */
@media (max-width: 600px) {
    .container {
        padding: 40px 20px;
    }

    .logo {
        height: 40px;
    }

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

    .item-name,
    .item-price {
        font-size: 0.95rem;
    }
}