/* ==================== ROOM 02 - MINIMALIST MODERN DESIGN ==================== */

/* Breadcrumbs positioning - ensure it's below fixed nav */
.breadcrumbs {
    margin-top: 80px;
}

* {
    font-family: 'Inter', 'Noto Sans', sans-serif;
}

/* Minimalist Hero */
.room-hero-minimal {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}

.room-hero-image {
    position: relative;
    overflow: hidden;
}

.room-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.room-hero-minimal:hover .room-hero-image img {
    transform: scale(1.05);
}

.room-hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    background: #f8f9fa;
}

.room-number {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #2563eb;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.room-hero-text h1 {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    color: #1a1a1a;
    margin: 0 0 20px;
}

.room-hero-text p {
    font-size: 18px;
    color: #6b7280;
    margin: 0;
}

/* Content Section */
.room-content-section {
    padding: 80px 0;
    background: white;
}

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

.room-main-content {
    margin-bottom: 60px;
}

.room-description-block {
    max-width: 800px;
    margin-bottom: 60px;
}

.room-description-block h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px;
}

.room-description-block p {
    font-size: 18px;
    line-height: 1.8;
    color: #4b5563;
}

.room-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
}

.feature-card .feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 10px;
}

.feature-card p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.room-sidebar {
    position: sticky;
    top: 100px;
}

.booking-card {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    border-radius: 20px;
    padding: 40px;
    color: white;
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.3);
}

.booking-price {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
    display: block;
}

.price-period {
    font-size: 16px;
    opacity: 0.8;
}

.booking-promo {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin-bottom: 30px;
}

.promo-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.promo-price {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
}

.promo-details {
    font-size: 13px;
    opacity: 0.9;
    line-height: 1.6;
}

.booking-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4),
                0 0 40px rgba(37, 99, 235, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

.booking-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.booking-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 35px rgba(37, 99, 235, 0.5),
                0 0 60px rgba(37, 99, 235, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
}

.booking-btn:hover::before {
    width: 400px;
    height: 400px;
}

.booking-btn:active {
    transform: translateY(-1px) scale(1);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

/* Gallery Minimal */
.room-gallery-minimal {
    padding: 80px 0;
    background: #f8f9fa;
}

.room-gallery-minimal h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 40px;
    text-align: center;
}

.gallery-minimal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-minimal-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    background: #e5e7eb;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.gallery-minimal-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.gallery-minimal-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.3),
                0 0 60px rgba(37, 99, 235, 0.15);
}

.gallery-minimal-item:hover::before {
    opacity: 1;
}

.gallery-minimal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                filter 0.6s ease;
    filter: brightness(0.95) contrast(1.05);
}

.gallery-minimal-item:hover img {
    transform: scale(1.15);
    filter: brightness(1.05) contrast(1.1);
}

/* Gallery Modal Minimal */
.gallery-modal-minimal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gallery-modal-minimal[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
}

.gallery-modal-minimal .gallery-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    cursor: pointer;
}

.gallery-modal-minimal .gallery-modal-content {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal-minimal .gallery-modal-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.gallery-modal-minimal .gallery-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.gallery-modal-minimal .gallery-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.gallery-modal-minimal .gallery-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 2;
}

.gallery-modal-minimal .gallery-modal-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.gallery-modal-minimal .gallery-modal-nav.prev {
    left: -70px;
}

.gallery-modal-minimal .gallery-modal-nav.next {
    right: -70px;
}

/* Responsive */
@media (max-width: 968px) {
    .room-hero-minimal {
        grid-template-columns: 1fr;
        height: auto;
    }

    .room-hero-text {
        padding: 40px 20px;
        min-height: 300px;
    }

    .room-sidebar {
        position: static;
        margin-top: 40px;
    }

    .room-content-section {
        padding: 60px 0;
    }

    .room-gallery-minimal {
        padding: 60px 0;
    }

    .gallery-modal-minimal .gallery-modal-nav.prev {
        left: 10px;
    }

    .gallery-modal-minimal .gallery-modal-nav.next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .room-features-grid {
        grid-template-columns: 1fr;
    }

    .gallery-minimal-grid {
        grid-template-columns: 1fr;
    }
}




