@import url('https://fonts.googleapis.com/css2?family=Chewy&family=Bangers&display=swap');

/* Coming Soon Overlay */
.coming-soon {
    position: relative;
    overflow: hidden;
}

.coming-soon::after {
    content: "Coming Soon";
    font-family: 'Bangers', cursive;
    font-size: 2rem;
    color: white;
    background: rgba(0, 0, 0, 0.75);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    padding: 20px;

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 10;
}

/* Sold Out Overlay */
.sold-out::after {
    content: "Sold Out";
    font-family: 'Bangers', cursive;
    font-size: 2rem;
    color: white;
    background: rgba(0, 0, 0, 0.75);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    padding: 10px;
    border-radius: 5px;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;

    z-index: 10;
}

/* Body Setup */
body {
    font-family: 'Chewy', cursive;
    background: white;
    color: black;
    margin: 0;
    padding: 20px;
}

/* Container - NOT rotated */
.rotated-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 100px;
}

/* Columns */
.column {
    flex: 1 1 45%;
    padding: 20px;
    box-sizing: border-box;
    background: #f9f9f9;
    border: 2px solid #eee;
    border-radius: 10px;
}

/* Section Headers */
h2 {
    font-size: 2rem;
    border-bottom: 2px solid black;
    padding-bottom: 5px;
    margin-bottom: 10px;
    color: red;
}

/* Description Text */
.description {
    font-size: 1.25rem;
    color: gray;
    margin-bottom: 15px;
}

/* Menu Items */
.menu-item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed black;
    padding: 10px 0;
    align-items: center;
}

.menu-item.large {
    font-size: 1.5rem;
    font-weight: bold;
}

.menu-item.small {
    font-size: 1.25rem;
}

.menu-item.smaller {
    font-size: 1rem;
}

/* Flavors Grid */
.flavors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    font-size: 1.25rem;
    text-align: left;
}

.flavors .wide {
    grid-column: span 2;
}

/* Toppings Section */
.toppings, .candy-toppings {
    font-size: 1.5rem;
    color: black;
    margin-top: 10px;
    line-height: 1.5;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
    .column {
        flex: 1 1 100%;
    }

    h2 {
        font-size: 1.75rem;
    }

    .description {
        font-size: 1.1rem;
    }

    .menu-item.large {
        font-size: 1.25rem;
    }

    .menu-item.small,
    .menu-item.smaller {
        font-size: 1rem;
    }

    .flavors {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}
