body {
    padding: 0;
    margin: 0;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 25%, #6bcf7f 50%, #4d9de0 75%, #e15759 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    font-family: 'Comic Sans MS', cursive, sans-serif;
}

body.click {
    background: #f5f5f5;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    animation: none;
    overflow-y: auto;
    height: auto;
    position: static;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.park-header {
    text-align: center;
    padding: 1vh 2vw;
    background: linear-gradient(45deg, #ff6b6b, #ffd93d);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 25px 25px;
    margin-bottom: 0;
    height: 12vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.main-title {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    font-size: 3vh !important;
    color: #fff;
    text-shadow: 3px 3px 0px #ff1744, 6px 6px 10px rgba(0, 0, 0, 0.3);
    margin: 0 !important;
    font-weight: bold;
    line-height: 1;
}

.park-subtitle {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    font-size: 1.5vh;
    color: #fff;
    margin: 0.5vh 0 0 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1;
}

h1.title {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    font-size: 2vh !important;
    margin-bottom: 0.5vh !important;
    color: #ff1744;
    text-shadow: 1px 1px 0px #fff;
    font-weight: bold;
    line-height: 1;
}

@keyframes shimmer {
    20%, 100% {
        -webkit-mask-position:left
    }
}

.item_name {
    font-weight: bold;
    color: #d32f2f;
    font-size: 1.6vh;
}

.price {
    font-weight: bold;
    color: #1976d2;
    background: linear-gradient(45deg, #e3f2fd, #bbdefb);
    padding: 0.3vh 0.5vw;
    border-radius: 10px;
    border: 1px solid #2196f3;
    font-size: 1.4vh;
}

#main {
    height: 100vh;
    overflow: hidden;
    position: fixed;
    width: 100vw;
}

#caramel_img {
    filter: drop-shadow(0px 1px 2px rgb(0 0 0 / 0.6));
    max-width: 100%;
    height: 15vh;
    object-fit: contain;
    display: block;
    margin: auto;
}

#cotton_img {
    border-radius: 20px;
}

#fudge_img {
    filter: drop-shadow(0px 1px 2px rgb(0 0 0 / 0.6));
    max-width: 100%;
    height: 15vh;
    object-fit: contain;
    display: block;
    margin: auto;
    margin-top: 5vh;
    margin-bottom: 1vh;
}

#beverages {
    max-width: 80%;
    margin: auto;
    margin-top: 2vh;
}

#beverages .item_name {
    margin-right: 2vw;
}

#beverages .price {
    background: none;
    border: none;
    padding: 0;
    color: #757575;
    font-style: italic;
}


.group {
    margin-bottom: 0;
    border-radius: 20px;
    background: linear-gradient(145deg, #ffffff, #f0f8ff);
    padding: 1vh 1vw;
    height: calc(79.2vh - 12vh);
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 3px solid #ff6b6b;
    position: relative;
    overflow: hidden;
}

.group::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff6b6b, #ffd93d, #6bcf7f, #4d9de0);
    border-radius: 22px;
    z-index: -1;
    animation: borderGlow 3s linear infinite;
}

@keyframes borderGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.columns {
    align-items: stretch;
    height: 88vh;
    margin: 0;
    padding: 0 1vw;
    gap: 1vw;
}

.column {
    display: flex;
    flex-direction: column;
}

#special {
    background: linear-gradient(45deg, #ff6b6b, #ffd93d);
    border-radius: 20px;
    border: 4px solid #fff;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
    margin-top: 3vh;
    margin-bottom: 3vh;
    padding: 3vh 2vw;
    width: 90%;
    height: 16vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: center;
    animation: shimmer 5s infinite;
}

.special-text {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    font-size: 2vh;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 0px #000;
    margin: 0.5vh 0;
}

.fudge-special {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    font-size: 3.5vh;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 0px #d32f2f;
    margin: 1vh 0;
}

.click {
    padding: 20px;
    background: #ffffff;
}

.false {
    color: #757575;
    font-style: italic;
    background: linear-gradient(90deg, #f5f5f5, #e0e0e0) !important;
    border-color: #bdbdbd !important;
    opacity: 0.7;
    box-shadow: 0 2px 8px rgba(189, 189, 189, 0.3) !important;
}

body:not(.click) .button {
    width: 20vw;
    border-radius: 0 !important;
}

body.click .button {
    width: 120px;
    border-radius: 4px !important;
    font-weight: 600;
    font-size: 14px;
}

body.click .button.is-danger {
    background-color: #48c774;
    border-color: #48c774;
}

body.click .button.is-primary {
    background-color: #f14668;
    border-color: #f14668;
}

body:not(.click) .menu_item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    vertical-align: middle;
    font-size: 1.6vh;
    padding: 0.5vh 1vw;
    margin: 0.3vh 0;
    border-radius: 15px;
    background: linear-gradient(90deg, #fff3e0, #ffe0b2);
    border: 2px solid #ff8a65;
    box-shadow: 0 2px 8px rgba(255, 138, 101, 0.3);
}

body.click .menu_item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    padding: 12px 16px;
    margin: 0;
    border-radius: 6px;
    background: #ffffff;
    border: 1px solid #e1e5e9;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.items:nth-of-type(2) {
    margin-top: auto;
}

body:not(.click) .item_label {
    display: flex;
    justify-content: left;
    align-items: center;
    width: 90vw;
    background-color: aliceblue;
    font-size: 1rem;
}

body.click .item_label {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex: 1;
    background-color: transparent;
    font-size: 16px;
    color: #2c3e50;
    font-weight: 500;
}

body.click .field {
    margin: 0;
}

.field:not(:last-child) {
    margin: 0;
}





body:not(.click) .item_name {
    font-weight: bold;
    color: #d32f2f;
    font-size: 1.6vh;
}

body.click .item_name {
    font-weight: 500;
    color: #2c3e50;
}
