@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}
body {
    background: #f6f8fc;
    color: #222;
    overflow-x: hidden;
}


header {


    background-image: url('https://i.imgur.com/RNmAgEr.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    height: 710px;
    color: orangered;
    font-weight: bold;
    font-size: xxx-large;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    position: relative;
}


h1 {
    font-size: 20px;
    margin-bottom: 12px;
}

p {
    font-size: 60px;
    margin-bottom: 20px;
    font-weight: bolder;

}

button {
    background: #ff4d4d;
    border: none;
    color: white;
    font-weight: 600;
    padding: 12px 28px;
    height: 60px;
    width: 150px;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {


    background: #ff2e2e;
}

.menu-section {
    text-align: center;
    padding: 10px 20px;
}

.menu-section h2 {
    color: #ff4d4d;
    margin-bottom: 25px;
    font-size: 120px;
    font-weight: 700;
    text-shadow: 10px 0 0 #000, 0 -5px 0 #000, 0 5px 0 #000, -5px 0 0 #000;
}

.menu-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
}

.menu-item {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    width: 100%;

    max-width: 400px;

    overflow: hidden;
    transition: transform 0.3s;
}

.menu-item:hover {
    transform: translateY(-3px);
}

.menu-item img {
    width: 100%;
    display: block;
}

.item-header {
    background: cornflowerblue;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
}

.item-header span:last-child {
    transition: transform 0.3s;
}



.menu-item.active .item-header span:last-child {
    transform: rotate(180deg);
}


.menu-item ul {

    background: #eaf4ff;
    list-style: none;

    padding: 0 20px;

    font-size: 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
}

.menu-item.active ul {
    max-height: 200px;

    padding: 16px 20px 20px;
}
.menu-item ul li {
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    header {
        padding: 1px;
    }
    h1 {
        font-size: 2rem;
    }
    .menu-container {
        flex-direction: row;


        flex-wrap: wrap;
        justify-content: center;
        gap: 35px;
    }
    .menu-item {
        width: 320px;
    }
}






:root {
    --scale: 0.1;
    --space: 8vmin;
    --font-primary: 'Lato', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

.imagebanner{
    width: 100%;
    display: flex;
    margin: 0 auto;
    margin-top: 10px;

}
@media (prefers-reduced-motion) {
    :root {
        --scale: 0;
    }
}

* {
    box-sizing: border-box;
}

body {
    color: hsl(0, 0%, 95%);
    background-color: whitesmoke;
    font-size: clamp(1.2rem, 5vw, 1.5rem);
    line-height: 1.6;
}

a {
    color: hsl(65, 80%, 60%);
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: underline;
}

.page-title {
    text-align: center;
}

.page-title::after {
    content: '↓';
    display: block;
    font-size: 3em;
    opacity: 0;
    transform: translateY(-24px);
    animation: fadein 800ms 800ms cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.footer {
    display: grid;
    place-items: center;
    height: 100vh;
}

.section {
    transform-origin: center top;
    transform: scaleY(calc(1 - var(--scale)));
}

.section > * {
    transform-origin: center top;
    transform: scaleY(calc(1 / (1 - var(--scale))));
}

.section-title {
    font-size: 30px;
    font-weight: bold;
    line-height: 1.125;
}

.byline {
    display: block;
    font-size: 0.6em;
    margin: calc(var(--space) / 1.35) 0;
}

.content {
    margin: 70px auto 0;
    padding: var(--space);
    max-width: 55ch;
    background: cornflowerblue;
}


.image-container {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 90dvh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

@supports not (height: 100dvh) {
    .image-container { height: 100vh; }
}

.image-container img {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.menu-item.expanded .listwhite {
    background-color: cornflowerblue !important;
    color: white;
}

button {
    display: block;
    margin: 0 auto;
}

.paragraphsize
{
    font-size: 18px;

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