/* ==========================================
   Featured Rooms
========================================== */

.nc-room-showcase {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.nc-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.nc-section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin: 0;
}

.nc-section-header h2 em {
    font-style: italic;
    color: #999;
}

.nc-subtitle {
    font-size: 13px;
    color: #666;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nc-gold-divider {
    width: 40px;
    height: 1px;
    background: #d4af37;
    margin: 20px auto;
}

.nc-room-grid {
    display: flex;
    gap: 25px;
}

.nc-room-card {
    flex: 1;
    text-align: center;
}

.nc-card-link {
    color: inherit;
    text-decoration: none;
}

.nc-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    margin-bottom: 25px;
}

.nc-room-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 15px;

    background: rgba(255,255,255,.85);
    backdrop-filter: blur(4px);

    font-size: 10px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;

    z-index: 2;
}

.nc-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform 1.2s cubic-bezier(.25,.46,.45,.94);
}

.nc-room-card:hover img {
    transform: scale(1.08);
}

.nc-card-content h3 {
    font-size: 1.5rem;
    color: #222;
    margin-bottom: 12px;
}

.nc-btn-simple {
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #962021;
    border-bottom: 1px solid transparent;
    transition: border-color .3s;
}

.nc-room-card:hover .nc-btn-simple {
    border-color: #962021;
}

@media (max-width: 800px) {

    .nc-room-grid {
        flex-direction: column;
    }

}