/* ==================== ROOM 06 - MODERN STYLE DESIGN ==================== */

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

/* Modern Hero */
.room-hero-modern {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #9333ea 0%, #ec4899 100%);
}

.room-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.room-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.room-hero-text {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    color: white;
}

.room-number {
    font-size: clamp(48px, 6vw, 96px);
    font-weight: 700;
    margin-bottom: 20px;
    opacity: 0.9;
    letter-spacing: 4px;
}

.room-hero-text h1 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 700;
    margin: 0 0 15px;
    line-height: 1.2;
    letter-spacing: 2px;
}

.room-hero-text p {
    font-size: clamp(18px, 2.5vw, 28px);
    font-weight: 300;
    opacity: 0.95;
    margin: 0;
}

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

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

.room-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: start;
}

.room-main-content {
    flex: 1;
}

.room-description-block {
    margin-bottom: 50px;
}

.room-description-block h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px;
}

.room-description-block p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

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

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(147, 51, 234, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(147, 51, 234, 0.2);
    border-color: #9333ea;
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 15px;
    display: block;
}

.feature-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 8px;
}

.feature-card p {
    font-size: 15px;
    color: #666;
    margin: 0;
}

/* Booking Card */
.room-sidebar {
    position: sticky;
    top: 100px;
}

.booking-card {
    background: linear-gradient(135deg, #9333ea 0%, #ec4899 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(147, 51, 234, 0.3);
    color: white;
}

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

.price-amount {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.price-period {
    font-size: 16px;
    opacity: 0.9;
    font-weight: 400;
}

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

.promo-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.promo-price {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
}

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

.promo-details small {
    display: block;
    margin-top: 5px;
    opacity: 0.8;
}

.booking-additional {
    margin-bottom: 25px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
}

.price-item:last-child {
    border-bottom: none;
}

.price-item strong {
    font-weight: 700;
    font-size: 16px;
}

.booking-note {
    background: rgba(255, 255, 255, 0.1);
    border-left: 3px solid white;
    padding: 15px;
    border-radius: 8px;
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.booking-note strong {
    font-weight: 600;
}

.booking-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #ffffff 0%, #faf5ff 100%);
    color: #9333ea;
    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(147, 51, 234, 0.3),
                0 0 40px rgba(147, 51, 234, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    border: 2px solid rgba(147, 51, 234, 0.2);
}

.booking-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(147, 51, 234, 0.1);
    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(147, 51, 234, 0.4),
                0 0 60px rgba(147, 51, 234, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.6);
    background: linear-gradient(135deg, #faf5ff 0%, #ffffff 100%);
    border-color: rgba(147, 51, 234, 0.4);
}

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

.booking-btn:active {
    transform: translateY(-1px) scale(1);
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3);
}

.booking-btn svg {
    color: #9333ea;
}

/* Gallery Section */
.room-gallery-section {
    padding: 100px 0;
    background: #1a1a1a;
}

.room-gallery-section .section-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: white;
    text-align: center;
    margin: 0 0 60px;
}

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

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay svg {
    color: white;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay svg {
    transform: scale(1);
}

/* Gallery Modal */
.gallery-modal {
    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[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
}

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

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

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

.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%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.gallery-modal-close svg {
    width: 24px;
    height: 24px;
}

.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%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 2;
}

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

.gallery-modal-nav svg {
    width: 24px;
    height: 24px;
}

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

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

.gallery-modal-counter {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 18px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 968px) {
    .room-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .room-sidebar {
        position: static;
    }

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

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

    .gallery-modal-counter {
        bottom: -40px;
    }
}

@media (max-width: 768px) {
    .room-hero-modern {
        height: 60vh;
        min-height: 400px;
    }

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

    .room-features-grid {
        grid-template-columns: 1fr;
    }

    .booking-card {
        padding: 30px 20px;
    }

    .price-amount {
        font-size: 36px;
    }
}




