* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background: #ffffff;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.02) 2px, rgba(0,0,0,0.02) 4px);
    min-height: 100vh;
    padding: 40px 20px;
    line-height: 1.7;
    color: #1a1a1a;
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border: 2px solid #000000;
    padding: 60px 50px;
    box-shadow: 
        0 0 0 8px #ffffff,
        0 0 0 10px #000000,
        0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 2px solid #000000;
    position: relative;
}

header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #000000;
}

.logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    filter: contrast(1.1);
    transition: transform 0.3s ease;
    animation: logoFadeIn 1s ease-out 0.2s both;
}

@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.logo:hover {
    transform: scale(1.05);
}

.contact-info {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-info p {
    margin: 0;
    color: #000000;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    font-family: 'Georgia', serif;
}

.pre-order {
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.phone {
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin: 5px 0;
    position: relative;
    display: inline-block;
    cursor: pointer;
    transition: letter-spacing 0.3s ease;
    text-decoration: none;
    color: #000000;
}

.phone:hover {
    letter-spacing: 3px;
}

.phone::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #000000;
    transition: width 0.3s ease;
}

.phone:hover::after {
    width: 100%;
}

.hours {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.menu {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 0;
}

.menu-item {
    background: #ffffff;
    padding: 28px 0;
    border-bottom: 1px solid #e5e5e5;
    transition: all 0.3s ease;
    position: relative;
    opacity: 0;
    animation: itemFadeIn 0.5s ease-out forwards;
}

.menu-item:nth-child(1) { animation-delay: 0.1s; }
.menu-item:nth-child(2) { animation-delay: 0.15s; }
.menu-item:nth-child(3) { animation-delay: 0.2s; }
.menu-item:nth-child(4) { animation-delay: 0.25s; }
.menu-item:nth-child(5) { animation-delay: 0.3s; }
.menu-item:nth-child(6) { animation-delay: 0.35s; }
.menu-item:nth-child(7) { animation-delay: 0.4s; }
.menu-item:nth-child(8) { animation-delay: 0.45s; }
.menu-item:nth-child(9) { animation-delay: 0.5s; }
.menu-item:nth-child(10) { animation-delay: 0.55s; }
.menu-item:nth-child(11) { animation-delay: 0.6s; }
.menu-item:nth-child(12) { animation-delay: 0.65s; }
.menu-item:nth-child(13) { animation-delay: 0.7s; }
.menu-item:nth-child(14) { animation-delay: 0.75s; }

@keyframes itemFadeIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: #000000;
    transition: width 0.3s ease;
}

.menu-item:hover {
    background-color: #fafafa;
    padding-left: 15px;
}

.menu-item:hover::before {
    width: 3px;
}

.item-content {
    display: flex;
    flex-direction: column;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 15px;
}

.item-header h2 {
    font-size: 1.4rem;
    font-weight: 400;
    color: #000000;
    flex: 1;
    min-width: 200px;
    font-family: 'Georgia', serif;
    letter-spacing: 0.5px;
    transition: letter-spacing 0.3s ease;
    position: relative;
}

.menu-item:hover .item-header h2 {
    letter-spacing: 1px;
}

.price {
    font-size: 1.3rem;
    font-weight: 400;
    color: #000000;
    white-space: nowrap;
    font-family: 'Georgia', serif;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.menu-item:hover .price {
    transform: scale(1.05);
}

.ingredients {
    color: #4a4a4a;
    font-size: 0.95rem;
    line-height: 1.8;
    font-weight: 300;
}

.veg-badge {
    color: #000000;
    font-weight: 400;
    font-size: 0.85em;
    font-style: italic;
    letter-spacing: 0.5px;
}

.protein-note {
    color: #4a4a4a;
    font-weight: 400;
    font-size: 0.85em;
    font-style: italic;
}

footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 25px;
    padding-bottom: 15px;
    border-top: 1px solid #000000;
    position: relative;
}

footer::before {
    content: '◆';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    padding: 0 10px;
    color: #000000;
    font-size: 0.8rem;
}

.gf-note {
    color: #4a4a4a;
    font-size: 0.85rem;
    margin-bottom: 18px;
    font-style: italic;
    letter-spacing: 0.3px;
}

.visitor-counter {
    text-align: center;
    margin-bottom: 0;
    padding: 0;
    color: #4a4a4a;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.counter-label {
    color: #666666;
    font-style: italic;
    margin-right: 8px;
}

.counter-number {
    color: #000000;
    font-weight: 400;
    font-family: 'Georgia', serif;
    font-size: 1rem;
    letter-spacing: 1px;
}

.social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #000000;
    font-weight: 400;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    padding: 8px 15px;
    border: 1px solid transparent;
    border-radius: 2px;
}

.social-link:hover {
    letter-spacing: 1.5px;
    border-color: #000000;
    background: #fafafa;
}

.social-link:hover .social-icon {
    transform: rotate(15deg) scale(1.1);
}

.social-handle {
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.instagram-link .social-handle {
    text-transform: lowercase;
}

.social-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.credit {
    text-align: center;
    margin: 15px auto 25px;
    max-width: 900px;
    padding: 0 20px;
    color: #999999;
    font-size: 0.75rem;
    letter-spacing: 0.3px;
    font-style: italic;
}

.credit-link {
    color: #666666;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.credit-link:hover {
    color: #000000;
    border-bottom-color: #000000;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 20px 15px;
    }

    .container {
        padding: 40px 30px;
        border-width: 1px;
    }

    header {
        margin-bottom: 40px;
        padding-bottom: 20px;
    }

    .contact-info p {
        font-size: 0.95rem;
    }

    .phone {
        font-size: 1rem;
    }

    .logo {
        max-width: 140px;
    }

    .item-header h2 {
        font-size: 1.2rem;
        min-width: auto;
    }

    .price {
        font-size: 1.1rem;
    }

    .ingredients {
        font-size: 0.9rem;
    }

    .menu-item {
        padding: 22px 0;
    }
}

@media (max-width: 480px) {
    body {
        padding: 15px 10px;
    }

    .container {
        padding: 30px 20px;
    }

    .contact-info p {
        font-size: 0.85rem;
    }

    .phone {
        font-size: 0.95rem;
        letter-spacing: 1px;
    }

    .item-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .price {
        align-self: flex-start;
    }
}
