/* Smaller dorm panels for booking page */
#book .card {
    padding: 0.15rem 0.1rem;
    font-size: 0.7rem;
    border-radius: 4px;
}
/* Smaller calendar for Rooms section */
.calendar-rooms {
    max-width: 340px;
    margin: 0 auto;
}
.map-iframe {
    width: 100%;
    height: 300px;
    border: 0;
}
.logo-header {
    max-height: 80px;
}
/* Header feature text custom style */
.header-feature-text {
    margin-left: 1.5rem;
    font-family: 'Quicksand', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 800;
    color: #1a202c;
}
.modern-feature-list li {
    font-family: 'Quicksand', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.08rem;
    line-height: 1.25;
    margin-bottom: 0.08rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}
.price-chip {
    background: var(--primary);
    color: #fff;
    font-size: 1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}
.feature-card {
    background: #f9f6f2;
    color: var(--text);
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    padding: 1.5rem 1rem;
    margin-bottom: 2rem;
    border: 1px solid #ececec;
}
.feature-card .font-bold {
    color: var(--primary);
}
/* Header bar styling */
.header-bar {
    background: rgba(255, 184, 0, 0.18); /* even more transparent accent */
    -webkit-backdrop-filter: blur(8px) saturate(180%);
    backdrop-filter: blur(8px) saturate(180%);
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.18);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
/* Custom CSS for Rowdy Place */
:root {
    --background: #F6F7FB;
    --primary: #0F6E6E;
    --accent: #FFB800;
    --text: #0F1A1C;
    --surface: #FFFFFF;
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--background);
    color: var(--text);
}
h1, h2, h3 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
}
.card {
    background-color: var(--surface);
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.btn-primary {
    background-color: var(--primary);
    color: white;
    transition: all 0.2s ease;
}
.btn-primary:hover {
    background-color: #0d5d5d;
    transform: translateY(-2px);
}
.btn-accent {
    background-color: var(--accent);
    color: var(--text);
    transition: all 0.2s ease;
}
.btn-accent:hover {
    background-color: #e6a600;
    transform: translateY(-2px);
}
.section {
    min-height: 100vh;
    padding-top: 80px;
    padding-bottom: 80px;
    display: none;
}
.section.active {
    display: block;
}
.nav-item.active {
    color: var(--primary);
}
.calendar-day {
    transition: all 0.2s ease;
}
.calendar-day:hover:not(.disabled):not(.selected) {
    background-color: rgba(15, 110, 110, 0.1);
}
.calendar-day.selected {
    background-color: var(--primary);
    color: white;
}
/* Filmstrip gallery styles */
#dynamic-gallery {
    width: 100vw;
    max-width: 100vw;
    margin: 0 auto 2rem auto;
    padding: 0;
    overflow: hidden;
    position: relative;
    height: 220px;
}
.filmstrip-track {
    display: flex;
    animation: filmstrip-scroll 20s linear infinite;
}
.gallery-image {
    width: 220px;
    height: 220px;
    object-fit: cover;
    margin: 0 2px;
    border-radius: 16px;
    display: block;
    border: 8px solid var(--primary);
    box-shadow: 0 4px 16px rgba(0,0,0,0.18), 0 0 0 4px var(--accent) inset;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
}

.frame-primary {
    border-color: var(--primary) !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18), 0 0 0 4px var(--primary) inset !important;
    background: linear-gradient(135deg, #fff 0%, var(--primary) 100%) !important;
}
.frame-accent {
    border-color: var(--accent) !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18), 0 0 0 4px var(--accent) inset !important;
    background: linear-gradient(135deg, #fff 0%, var(--accent) 100%) !important;
}
@keyframes filmstrip-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.calendar-day.disabled {
    color: #ccc;
    pointer-events: none;
}
.toast {
    animation: fadeInOut 2.5s ease-in-out;
}
@keyframes fadeInOut {
    0% { opacity: 0; transform: translateY(10px); }
    10% { opacity: 1; transform: translateY(0); }
    90% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-10px); }
}
.icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 4px;
}
.hero {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 20px;
}
.hero-card {
    background: linear-gradient(135deg, #FFFDF8 0%, #FFF7E6 100%);
    border-radius: 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border: 1px solid rgba(241,233,210,0.1);
    padding: 36px 28px 28px 28px;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    font-family: 'Inter', 'Roboto', Arial, sans-serif;
    animation: fadeInCard 0.8s cubic-bezier(.4,0,.2,1);
}
@keyframes fadeInCard {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 32px;
    list-style: none;
    padding: 0;
}
.feature-list li {
    color: #555;
    font-size: 18px;
    line-height: 1.7;
    font-family: inherit;
    font-weight: 500;
    background: none;
    border-radius: 0;
    padding: 0;
    border: none;
    opacity: 0;
    animation: fadeInLine 1s cubic-bezier(.4,0,.2,1) forwards;
}
.feature-list li:nth-child(1) { animation-delay: 0.1s; }
.feature-list li:nth-child(2) { animation-delay: 0.2s; }
.feature-list li:nth-child(3) { animation-delay: 0.3s; }
.feature-list li:nth-child(4) { animation-delay: 0.4s; }
@keyframes fadeInLine {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}
.feature-list .price {
    color: #F5B400;
    font-weight: bold;
    font-size: 20px;
    background: #FFF7E0;
    border-radius: 8px;
    padding: 6px 12px;
    margin-top: 2px;
    box-shadow: 0 2px 8px rgba(245,180,0,0.08);
    letter-spacing: 0.5px;
}
.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 18px;
}
@media (min-width: 481px) {
    .hero-actions {
        flex-direction: row;
        gap: 16px;
    }
}
.btn {
    border: none;
    outline: none;
    font-family: inherit;
    font-size: 18px;
    font-weight: 600;
    border-radius: 16px;
    height: 56px;
    box-shadow: 0 6px 14px rgba(15,107,99,0.12);
    transition: box-shadow 0.2s, transform 0.2s;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn.primary {
    background: #0F6B63;
    color: #fff;
    box-shadow: 0 6px 14px rgba(15,107,99,0.25);
}
.btn.secondary {
    background: #F5B400;
    color: #3B2E06;
    box-shadow: 0 6px 14px rgba(245,180,0,0.15);
}
.btn:active, .btn:focus {
    outline: 2px solid rgba(15,107,99,0.4);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(15,107,99,0.25);
}
.hero-caption {
    font-size: 14px;
    color: #7A6C4D;
    text-align: center;
    margin-top: 22px;
    line-height: 1.6;
    font-family: inherit;
}
@media (max-width: 480px) {
    .hero-card {
        box-shadow: 0 4px 12px rgba(0,0,0,0.06);
        padding: 28px 16px 20px 16px;
    }
    .feature-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .btn {
        height: 52px;
        font-size: 17px;
    }
}
