/* Suite Detail Page Styles */
.suite-detail {
    margin-top: 0;
}

.suite-hero {
    position: relative;
    height: 60vh;
    overflow: hidden;
}

.suite-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.suite-hero-content {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--secondary-color);
    background-color: rgba(0,0,0,0.5);
    padding: 30px 50px;
    backdrop-filter: blur(5px);
}

.suite-hero-content h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.suite-size {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.suite-info {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin: 80px 0;
}

.suite-description h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.suite-description p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.1rem;
}

.suite-features h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.suite-features ul {
    list-style: none;
}

.suite-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: var(--text-gray);
    position: relative;
    padding-left: 20px;
}

.suite-features li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.suite-gallery {
    margin: 80px 0;
}

.suite-gallery h3 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 40px;
    text-align: center;
}

.gallery-grid {
    columns: 2;
    column-gap: 20px;
    margin: 0;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
    object-fit: cover;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.gallery-grid img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.gallery-grid img:nth-child(1) {
    height: 400px;
    object-fit: cover;
}

.gallery-grid img:nth-child(2) {
    height: 350px;
    object-fit: cover;
}

.gallery-grid img:nth-child(3) {
    height: 450px;
    object-fit: cover;
}

.gallery-grid img:nth-child(4) {
    height: 380px;
    object-fit: cover;
}

.suite-actions {
    text-align: center;
    margin: 60px 0;
}

.suite-actions .book-btn {
    margin-bottom: 20px;
    padding: 15px 50px;
    font-size: 1.1rem;
}

.back-link {
    display: inline-block;
    color: var(--text-gray);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--primary-color);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: opacity 0.3s ease;
}

.lightbox-close:hover {
    opacity: 0.7;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 60px;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
    z-index: 10001;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.lightbox-nav:hover {
    opacity: 0.7;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 16px;
    z-index: 10001;
}

/* Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
    .gallery-grid {
        columns: 2;
        column-gap: 15px;
    }
    
    .gallery-grid img:nth-child(1),
    .gallery-grid img:nth-child(2),
    .gallery-grid img:nth-child(3),
    .gallery-grid img:nth-child(4) {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .suite-hero {
        height: 40vh;
    }
    
    .suite-hero-content h1 {
        font-size: 2rem;
    }
    
    .suite-hero-content {
        padding: 20px 30px;
        bottom: 20px;
    }
    
    .suite-info {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .suite-features {
        order: 2;
    }
    
    .gallery-grid {
        columns: 1;
    }
    
    .gallery-grid img:nth-child(1),
    .gallery-grid img:nth-child(2),
    .gallery-grid img:nth-child(3),
    .gallery-grid img:nth-child(4) {
        height: 300px;
    }
}