/*--------------------------------------------------------------
# Single Destination Page Styles (Matched to Hotel Design)
--------------------------------------------------------------*/

/* --- Banner --- */
.destination-banner {
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 40px 20px;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
    position: relative;
    margin-bottom: 0;
}
.destination-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
}
.destination-banner .banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
}
.destination-banner h1 {
    font-size: 3.5rem;
    margin: 0;
    line-height: 1.1;
    color: #fff;
}

/* --- Container --- */
.destination-single-page .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 40px 15px;
}

/* --- Header & Meta --- */
.destination-header {
    margin-bottom: 25px;
}
.destination-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 10px;
}
.destination-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    font-size: 0.95rem;
    color: #555;
}
.destination-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    padding-left: 15px;
}
.destination-meta span:first-child { padding-left: 0; }
.destination-meta span:not(:first-child)::before {
    content: '•';
    position: absolute;
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}
.destination-meta i { font-size: 0.9em; color: #888; }

/* --- Gallery (Exact Hotel Grid) --- */
.destination-gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto;
    gap: 10px;
    margin-bottom: 40px;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
}
.gallery-main-image, .gallery-thumbnails { display: grid; gap: 10px; }
.gallery-main-image img, .gallery-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.gallery-thumbnails {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}

/* --- Layout Wrapper (Left/Right) --- */
.destination-content-wrapper { display: flex; gap: 60px; }
.destination-main-content { flex: 2; }
.destination-sidebar-content { flex: 1; }

/* --- Overview Box --- */
.overview-box {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    border: 1px solid #eee;
}
.overview-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 100px;
}
.overview-item i { color: #D94AAB; font-size: 1.2rem; margin-bottom: 5px; }
.overview-item span { font-size: 0.85rem; color: #777; text-transform: uppercase; letter-spacing: 0.5px; }
.overview-item strong { font-size: 1rem; color: #333; }

/* --- Content Sections --- */
.dest-section { margin-bottom: 40px; border-bottom: 1px solid #eee; padding-bottom: 30px; }
.dest-section:last-child { border-bottom: none; }
.dest-section-title { font-size: 1.5rem; margin-bottom: 20px; font-weight: 700; position: relative; display: inline-block; }

/* Highlights List */
.highlights-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.highlights-list li { display: flex; align-items: center; gap: 10px; font-size: 1rem; color: #444; }
.highlights-list li i { color: #25D366; /* Green check */ font-size: 1rem; }

/* FAQ Accordion */
.faq-item { border: 1px solid #e0e0e0; border-radius: 6px; margin-bottom: 10px; overflow: hidden; }
.faq-question { background: #fff; padding: 15px 20px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; transition: background 0.3s; }
.faq-question:hover { background: #f9f9f9; }
.faq-answer { display: none; padding: 20px; border-top: 1px solid #e0e0e0; background: #fcfcfc; color: #555; line-height: 1.6; }
.faq-item.active .faq-answer { display: block; }
.faq-item.active .faq-question i { transform: rotate(180deg); }

/* --- Responsive --- */
@media (max-width: 992px) {
    .destination-content-wrapper { flex-direction: column; }
    .destination-gallery-grid { height: 350px; }
}
@media (max-width: 768px) {
    .destination-banner { height: 300px; }
    .destination-banner h1 { font-size: 2.5rem; }
    .destination-gallery-grid { grid-template-columns: 1fr; grid-template-rows: 2fr 1fr; height: auto; }
    .gallery-thumbnails { grid-template-columns: repeat(4, 1fr); }
    .highlights-list { grid-template-columns: 1fr; }
}