body {
    background: #0f2a2a;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
}

.map-container {
    position: relative;
    /* height: 100vh; */
    background: url('https://i.pinimg.com/736x/b1/c2/73/b1c273bb618fdcc3432b8a3332a9228f.jpg') no-repeat center;
    background-size: 100% 100%;
}

.overlay-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 320px;
}

.card {
    background: rgba(0,0,0,0.6);
    border: none;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.sidebar {
    height: 100dvh;
    overflow-y: auto;
    background: #0c1f1f;
    padding: 20px;
}

.topic-card {
    border-radius: 15px;
    margin-bottom: 15px;
    padding: 15px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topic-card i {
    font-size: 20px;
}

.bg-green { background: #1f6f5e; }
.bg-orange { background: #a65d03; }
.bg-blue { background: #1c5d7a; }
.bg-purple { background: #5a3e85; }

.section-title {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 10px;
}

.list-item {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    padding: 5px 0;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
}

.dot-green { background: #00ff99; }
.dot-blue { background: #00cfff; }

/* SECTION */
.section-main {
    padding: 20px 20px 20px 80px;
}

.card-glass {
    background: rgba(255,255,255,0.08);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
}

.season-card {
    height: 180px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    color: #fff;
}

.season-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.season-card .content {
    position: absolute;
    bottom: 15px;
    left: 15px;
}

.right-panel {
    border-radius: 20px;
    padding: 15px;
}

.small-card {
    border-radius: 15px;
    overflow: hidden;
}

.small-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.festival-card {
    border-radius: 15px;
    padding: 10px;
    text-align: center;
}

.section-title {
    font-weight: bold;
    margin: 20px 0 10px;
}
.sidebarNav {
    width: 70px;
    height: 100vh;
    background: rgba(255,255,255,0.05);
    position: fixed;
    top: 0;
    left: 0;
    padding-top: 20px;
}

.sidebarNav i {
    display: block;
    text-align: center;
    margin: 20px 0;
    opacity: 0.6;
    cursor: pointer;
}

.sidebarNav [data-bs-toggle="tooltip"] {
    cursor: help;
}

/* Custom tooltip styling for dark theme */
.bs-tooltip-auto[data-popper-placement^=right] .tooltip-inner,
.bs-tooltip-right .tooltip-inner {
    background-color: rgba(0,0,0,0.9);
    color: #fff;
    border-radius: 8px;
    font-size: 0.85rem;
    padding: 6px 12px;
    backdrop-filter: blur(10px);
}

.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before,
.bs-tooltip-right .tooltip-arrow::before {
    border-right-color: rgba(0,0,0,0.9);
}
/* Details */

/* Main content fix */
.main-content {
    margin-left: var(--sidebar-width);
}

/* Glass UI */
.card-glass {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    padding: 15px;
}

.section-title {
    font-size: 14px;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 10px;
}

.small-img {
    width: 100%;
    height: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 12px;
}

.big-img {
    width: 100%;
    height: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 15px;
}

.badge-soft {
    background: rgba(255,255,255,0.1);
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 12px;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 20px;
}

input, select {
    background: rgba(255,255,255,0.08) !important;
    border: none !important;
    color: #fff !important;
}

/* Media Gallery Popup Styles */
.media-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.media-item:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0,255,153,0.3);
}

.media-item:hover .play-btn {
    transform: translate(-50%,-50%) scale(1.2);
    opacity: 1;
}

.play-btn {
    transition: all 0.3s ease;
    opacity: 0.8;
}

/* Modal */
.media-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(5px);
    z-index: 1;
}

.modal-content {
    position: relative;
    max-width: 95vw;
    width: 100%;
    max-height: 90dvh;
    background: rgba(255,255,255,0.05);
    border-radius: 0;
    backdrop-filter: blur(20px);
    border: none;
    z-index: 2;
    display: flex;
    flex-direction: column;
    padding-bottom: 30px;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 3;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.modal-close:hover {
    background: rgba(255,0,0,0.3);
    transform: rotate(90deg);
}

.slick-container {
    position: relative;
    flex: 1;
    overflow: hidden;
}

#slickGallery {
    height: 100dvh;
}

.slick-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px;
}

.slick-slide img,
.slick-slide video {
    width: 100%;
    height: 100dvh;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
}

.slick-slide video {
    width: 100%;
    height: auto;
}

.slick-prev,
.slick-next {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 10 !important;
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,0.25) !important;
    backdrop-filter: blur(15px) !important;
    border: 2px solid rgba(255,255,255,0.4) !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4) !important;
}

.slick-prev {
    left: 20px !important;
}

.slick-next {
    right: 20px !important;
}

.slick-prev:before,
.slick-next:before {
    color: #fff !important;
    font-size: 22px !important;
    opacity: 0.9 !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5) !important;
}

.slick-prev:hover,
.slick-next:hover {
    background: rgba(0,255,153,0.5) !important;
    transform: translateY(-50%) scale(1.1) !important;
    border-color: rgba(0,255,153,0.8) !important;
}

.slick-dots li button:before {
    color: rgba(255,255,255,0.5);
    font-size: 12px;
}

.slick-dots li.slick-active button:before {
    color: #00ff99;
}

.slide-caption {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(0,0,0,0.8);
    color: #fff;
    padding: 12px 20px;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    backdrop-filter: blur(15px);
    max-width: 90%;
    z-index: 2;
}

/* Responsive */
@media (max-width: 768px) {
    .modal-content {
        max-width: 100vw;
    }
    
    .slick-slide img,
    .slick-slide video {
        height: 100dvh;
    }
    
    .slide-caption {
        bottom: 20px;
        left: 20px;
        right: 20px;
        font-size: 14px;
        padding: 8px 15px;
    }
    
    .slick-prev,
    .slick-next {
        width: 55px !important;
        height: 55px !important;
        left: 15px !important;
        right: 15px !important;
    }
    
    .slick-prev:before,
    .slick-next:before {
        font-size: 20px !important;
    }
    
    .modal-close {
        top: 10px;
        right: 15px;
        font-size: 20px;
        width: 35px;
        height: 35px;
    }
}

.text-justify{
    text-align: justify;
}

/* Directions map for Local Info - matches glass card style */
#directions-map {
    height: 250px;
    width: 100%;
    border-radius: 15px;
    margin-top: 10px;
}
