html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Times New Roman", serif;
    background: #f5f5f5;
    color: #111;
}

header {
    background: #E50914;
    color: white;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
}

.logo {
    height: 60px;
    margin-right: 15px;
}

header h1 {
    margin: 0;
    font-size: 32px;
}

header nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    font-weight: bold;
}

.menu-grid {
    display: grid;
    grid-template-columns: 460px 460px 560px;
    gap: 45px;
    padding: 40px 20px;
    width: max-content;
    margin: auto;
    position: relative;
}

.menu-grid::before {
    content: "";
    position: fixed;
    top: 50%;
    left: 50%;
    width: 900px;
    height: 900px;
    background-image: url('logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.22;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

.menu-column {
    min-height: 1500px;
    background: rgba(255,255,255,0.28);
    backdrop-filter: blur(6px);
    padding: 40px;
    border-radius: 20px;
    border: 3px solid rgba(255,255,255,0.45);
    box-shadow: 0 0 25px rgba(0,0,0,0.10);
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}

.menu-title {
    font-size: 30px;
    color: #E50914;
    border-bottom: 3px solid #E50914;
    padding-bottom: 8px;
    margin-top: 25px;
    margin-bottom: 20px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding: 12px 0;
    font-size: 20px;
}

.item-name {
    color: #111;
    font-weight: bold;
}

.item-name small {
    display: block;
    margin-top: 4px;
    line-height: 1.5;
    font-style: italic;
    font-weight: normal;
    color: #666;
}

.price {
    color: #E50914;
    font-weight: bold;
    min-width: 100px;
    text-align: right;
    white-space: nowrap;
    flex-shrink: 0;
}

.note-text {
    text-align: center;
    font-weight: bold;
    line-height: 1.6;
}

.menu-plus {
    color: #E50914;
    font-weight: bold;
    text-align: center;
    font-size: 22px;
    margin-top: -10px;
}

footer {
    background: #E50914;
    color: white;
    text-align: center;
    padding: 12px;
}

@media (max-width: 900px) {
    .menu-grid {
        grid-template-columns: 1fr;
        width: 95%;
    }

    .menu-column {
        min-height: auto;
    }

    header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    header nav a {
        margin: 0 10px;
    }
}
.home {
    min-height: calc(100vh - 150px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.home-hero {
    text-align: center;
    max-width: 900px;
    width: 100%;
}

.home-logo {
    width: 420px;
    max-width: 90%;
    margin-bottom: 25px;
}

.home-hero h2 {
    font-size: 42px;
    color: #E50914;
    margin-bottom: 15px;
}

.home-hero p {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.home-btn {
    display: inline-block;
    background: #E50914;
    color: white;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 22px;
    font-weight: bold;
}

.home-btn:hover {
    background: #b80000;
}
.btn {
    background: #E50914;
    color: white;
    padding: 16px 34px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 10px;
    display: inline-block;
    margin-top: 15px;
    transition: 0.3s;
    font-size: 22px;
    min-width: 260px;
    text-align: center;
}

.btn:hover {
    transform: scale(1.05);
    opacity: 0.9;
}
.delivery-box {
    width: 500px;
    max-width: 90%;
    margin: 80px auto;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(6px);
    border-radius: 25px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 0 30px rgba(0,0,0,0.15);
    border: 3px solid rgba(255,255,255,0.4);
    position: relative;
    overflow: hidden;
}

.delivery-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('logo.png') center center no-repeat;
    background-size: 70%;
    opacity: 0.08;
    z-index: 0;
}

.delivery-box * {
    position: relative;
    z-index: 2;
}

.delivery-box h1 {
    color: #E50914;
    font-size: 48px;
    margin-bottom: 25px;
}

.delivery-phone {
    font-size: 38px;
    color: #E50914;
    font-weight: bold;
    margin-bottom: 30px;
}

.order-btn {
    display: inline-block;
    background: #E50914;
    color: white;
    padding: 16px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 40px;
    transition: 0.3s;
}

.order-btn:hover {
    transform: scale(1.05);
}

.delivery-section h2 {
    color: #E50914;
    font-size: 36px;
    margin-bottom: 20px;
}

.delivery-section p {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.5;
    margin: 20px 0 10px;
}

.price {
    color: #E50914;
    font-size: 38px;
    font-weight: bold;
    margin-bottom: 25px;
}