@font-face {
    font-family: TheBoldFont;
    src: url(THEBOLDFONT-FREEVERSION.ttf);
}


body {
    background: linear-gradient(180deg, #fff7eb 0%, #ffe8f0 50%, #e3f2ff 100%);
    font-family: TheBoldFont;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    width: 300px;
    height: 300px;
    margin: 25px 0 35px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.12));
}

.menu {
    display: flex;
    gap: 45px;
    justify-content: center;
    align-items: flex-start;
    padding-bottom: 50px;
}

.column {
    color: #3c3459;
    width: 300px;   
    flex-direction: column;
    align-items: center;  
}

.section-title {
    background-color: #c9e7ff;
    width: 100%;           
    font-size: 32px;
    padding: 12px 10px;
    color: #2c2940;
    border-radius: 16px 16px 0 0;
    text-shadow: 1px 1px 0 white;
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
    text-align: center;
}

.item-row {
    width: 100%;          
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    padding: 18px 16px;
    border-radius: 0 0 18px 18px;

    border-left: 3px solid #c9e7ff;
    border-right: 3px solid #c9e7ff;
    border-bottom: 3px solid #c9e7ff;

    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
    margin-bottom: 35px;

    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.item-row:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 14px rgba(0,0,0,0.15);
}

.items,
.prices {
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: 16px;
}

.items li {
    margin-bottom: 14px;
    padding-left: 26px;
    position: relative;
}

.items li::before {
    content: "🐾";
    position: absolute;
    left: 0;
    top: -2px;
    font-size: 16px;
}

.prices {
    text-align: right;
    color: #4b3f66;
}

.prices li {
    margin-bottom: 14px;
}

.items li:last-child,
.prices li:last-child {
    margin-bottom: 0;
}




@media (max-width: 900px) {
    .menu {
        gap: 25px;
    }

    .logo {
        width: 240px;
        height: 240px;
    }

    .section-title {
        font-size: 28px;
    }

    .items li,
    .prices li {
        font-size: 15px;
    }

    .column {
        width: 260px;
    }

    .item-row {
        padding: 16px 14px;
    }
}




@media (max-width: 650px) {
    .menu {
        flex-direction: column;      
        align-items: center;
        gap: 35px;
    }

    .column {
        width: 85%;                  
        max-width: 320px;
    }

    .section-title,
    .item-row {
        width: 100%;                 
    }

    .section-title {
        font-size: 26px;
        padding: 10px;
    }

    .item-row {
        padding: 16px;
        margin-bottom: 30px;
    }
}



@media (max-width: 450px) {
    body {
        background: linear-gradient(180deg, #fff7eb 0%, #ffeef5 50%, #e8f4ff 100%);
    }

    .logo {
        width: 180px;
        height: 180px;
        margin: 20px 0 25px;
    }

    .section-title {
        font-size: 22px;
        padding: 8px;
        border-radius: 14px 14px 0 0;
    }

    .item-row {
        padding: 14px;
        border-radius: 0 0 14px 14px;
    }

    .items li,
    .prices li {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .items li::before {
        font-size: 14px;
        top: -2px;
    }
}