/* Room Pages Specific Styles */

/* Room Hero Section */
.room-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    overflow: hidden;
}

.room-hero-content {
    position: relative;
    z-index: 2;
    flex: 1;
    padding: 2rem 0;
}

.room-hero-image {
    position: relative;
    flex: 1;
    min-height: 80vh;
    overflow: hidden;
}

.room-hero-image .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.room-hero:hover .hero-image {
    transform: scale(1.05);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #b8860b;
}

.breadcrumb a {
    color: #b8860b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #daa520;
}

.breadcrumb span {
    color: #666;
}

.room-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #fff;
}

.room-name-greek {
    display: block;
    color: #b8860b;
}

.room-name-english {
    display: block;
    font-size: 2rem;
    font-weight: 400;
    color: #ccc;
    font-style: italic;
    margin-top: 0.5rem;
}

.room-subtitle {
    font-size: 1.2rem;
    color: #999;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.room-quick-info {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.quick-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-size: 1rem;
}

.quick-info-item .icon {
    font-size: 1.2rem;
}

.room-cta {
    margin-top: 2rem;
}

/* Room Gallery */
.room-gallery {
    padding: 4rem 0;
    background: #f8f9fa;
}

.room-gallery h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Room Description */
.room-description {
    padding: 4rem 0;
    background: #fff;
}

.room-description h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.description-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
}

.description-text p {
    margin-bottom: 1.5rem;
}

/* Room Amenities */
.room-amenities {
    padding: 4rem 0;
    background: #f8f9fa;
}

.room-amenities h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.amenity-item {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.amenity-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.amenity-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.amenity-item h3 {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin: 0;
    font-weight: 600;
}

/* Room Facilities */
.room-facilities {
    padding: 4rem 0;
    background: #fff;
}

.room-facilities h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.facility-category {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #b8860b;
}

.facility-category h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.facility-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.facility-category li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.facility-category li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #b8860b;
    font-weight: bold;
}

/* Room Policy */
.room-policy {
    padding: 4rem 0;
    background: #f8f9fa;
}

.room-policy h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.policy-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.policy-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.policy-item h3 {
    font-size: 1rem;
    color: #1a1a1a;
    margin: 0;
    font-weight: 600;
}

/* Related Rooms */
.related-rooms {
    padding: 4rem 0;
    background: #fff;
}

.related-rooms h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.room-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.room-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.room-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.room-card:hover img {
    transform: scale(1.05);
}

.room-info {
    padding: 1.5rem;
}

.room-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.room-info p {
    color: #666;
    font-style: italic;
    margin: 0;
}

/* Room Contact CTA */
.room-contact-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    text-align: center;
}

.room-contact-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.room-contact-cta p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 2rem;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Gallery Lightbox */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.gallery-lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #b8860b;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #b8860b;
}

.lightbox-prev {
    left: -60px;
}

.lightbox-next {
    right: -60px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .room-hero {
        flex-direction: column;
        min-height: auto;
    }
    
    .room-hero-image {
        min-height: 50vh;
        order: -1;
    }
    
    .room-title {
        font-size: 2.5rem;
    }
    
    .room-name-english {
        font-size: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .facilities-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .room-hero-content {
        padding: 1.5rem 0;
    }
    
    .room-title {
        font-size: 2rem;
    }
    
    .room-name-english {
        font-size: 1.2rem;
    }
    
    .room-quick-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .amenities-grid,
    .facilities-grid {
        grid-template-columns: 1fr;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .lightbox-nav {
        display: none;
    }
    
    .policy-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .room-hero {
        min-height: auto;
    }
    
    .room-hero-image {
        min-height: 40vh;
    }
    
    .room-title {
        font-size: 1.8rem;
    }
    
    .room-name-english {
        font-size: 1rem;
    }
    
    .room-amenities h2,
    .room-facilities h2,
    .room-gallery h2,
    .room-description h2,
    .room-policy h2,
    .related-rooms h2,
    .room-contact-cta h2 {
        font-size: 2rem;
    }
    
    .amenity-item,
    .facility-category {
        padding: 1.5rem;
    }
    
    .gallery-lightbox {
        padding: 1rem;
    }
}

/* RTL Support for Room Pages */
[dir="rtl"] .breadcrumb {
    direction: rtl;
}

[dir="rtl"] .facility-category {
    border-left: none;
    border-right: 4px solid #b8860b;
}

[dir="rtl"] .facility-category li {
    padding-left: 0;
    padding-right: 1.5rem;
}

[dir="rtl"] .facility-category li:before {
    left: auto;
    right: 0;
}

[dir="rtl"] .lightbox-prev {
    left: auto;
    right: -60px;
}

[dir="rtl"] .lightbox-next {
    right: auto;
    left: -60px;
}

/* Print Styles */
@media print {
    .room-hero,
    .room-contact-cta,
    .related-rooms,
    .gallery-lightbox {
        display: none;
    }
    
    .room-gallery,
    .room-amenities,
    .room-facilities,
    .room-description,
    .room-policy {
        page-break-inside: avoid;
        margin-bottom: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .amenities-grid,
    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

