﻿/* ====================================
   Detail Page Specific Styles
   ==================================== */

.breadcrumb-nav {
    padding: 15px 20px;
    text-align: left;
    background-color: #eee;
    font-size: 0.9em;
}

.breadcrumb-nav a {
    color: #007bff;
    text-decoration: none;
}

.detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: left; /* Align content left for better reading */
}

/* --- Media Showcase --- */
.media-showcase h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.media-showcase note {
    font-size: 1em;
    color: #e74c3c;
    margin-bottom: 0px;
    text-align: left;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.media-caption {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-top: 5px;
}

/* --- Photo Gallery --- */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.photo-gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.3s;
    cursor: pointer;
}

.photo-gallery img:hover {
    transform: scale(1.02);
}

.photo-gallery-1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.photo-gallery-1 img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.3s;
    cursor: pointer;
}

.photo-gallery-1 img:hover {
    transform: scale(1.02);
}

.photo-gallery-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.photo-gallery-2 img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.3s;
    cursor: pointer;
}

.photo-gallery-2 img:hover {
    transform: scale(1.02);
}

.photo-gallery-3 img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.3s;
    cursor: pointer;
}

.photo-gallery-2 img:hover {
    transform: scale(1.02);
}


/* --- Description Block --- */
.description-block {
    padding: 30px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin: 40px 0;
}

.description-block h3 {
    color: #007bff;
    margin-bottom: 15px;
    font-size: 1.8em;
}

.description-block h4 {
    color: blue;
    margin-bottom: 0px;
    font-size: 1em;
}

.description-block ul {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
    columns: 2; /* Display list in two columns on large screens */
}

.description-block li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.description-block li::before {
    content: "•";
    color: #007bff;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.next-room-link {
    text-align: right;
    margin-top: 30px;
}

.next-room-link a {
    color: #e74c3c;
    text-decoration: none;
    font-weight: bold;
}

/* --- Responsive adjustments for smaller screens --- */
@media (max-width: 768px) {
    .detail-container {
        padding: 10px;
    }
    .description-block ul {
        columns: 1; /* Switch to single column list on mobile */
    }
}