html,
body {
    width: 100%;
    min-height: 100%;
    margin: 0;
}

body {
    font-family: "Times New Roman", Times, serif;
    background: linear-gradient(-45deg, #31aea6, #0d59ad, #000000, #cf374d);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    color: #1a1a1a;
}

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

.page-shell {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px 16px;
    box-sizing: border-box;
}

.content-box {
    background-color: rgba(255, 255, 255, 0.92);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    width: min(900px, 100%);
    box-sizing: border-box;
}

.content-box.centered {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo {
    display: block;
    width: min(300px, 70%);
    height: auto;
    margin-inline: auto;
    margin-bottom: 12px;
}

.intro {
    max-width: 640px;
    margin-bottom: 36px;
    line-height: 1.6;
}

.buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

button {
    font-family: "Times New Roman", Times, serif;
    background: linear-gradient(135deg, #000000, #333333);
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

button:disabled {
    background: linear-gradient(135deg, #666666, #999999);
    color: #cccccc;
    cursor: not-allowed;
    box-shadow: none;
}

button:not(:disabled):hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.menu-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 180px;
    min-height: 120px;
    justify-content: center;
    padding: 20px;
}

.menu-button .icon {
    font-size: 40px;
}

.section {
    max-width: 760px;
    margin: 0 auto 24px;
    line-height: 1.6;
    text-align: center;
}

.section h2 {
    margin: 0 0 10px;
}

.section p {
    margin: 0;
}

.venue-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: stretch;
    margin-top: 16px;
    padding: 20px;
    border-radius: 14px;
    background: linear-gradient(135deg, #f4f4f4, #ffffff);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.venue-photo img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    border-radius: 10px;
}

.venue-address {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    gap: 8px;
}

.venue-address i {
    font-size: 36px;
    color: #cf374d;
}

.venue-address p {
    margin: 0;
}

.hotels {
    max-width: 760px;
}

.hotel-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
    background: linear-gradient(135deg, #f0f0f0, #ffffff);
    padding: 16px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 12px;
}

.hotel-icon {
    font-size: 22px;
    color: #333333;
    margin-top: 2px;
}

.hotel-info {
    flex: 1;
}

.back-row {
    text-align: center;
    margin-top: 8px;
}

@media (max-width: 768px) {
    .page-shell {
        align-items: flex-start;
        padding: 16px 12px;
    }

    .content-box {
        padding: 22px 16px;
    }

    .venue-details {
        grid-template-columns: 1fr;
    }

    .venue-photo img {
        min-height: 180px;
    }

    .venue-address {
        text-align: center;
        align-items: center;
    }

    .hotel-card {
        flex-direction: column;
    }
}
