@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;
}