﻿
.ev-layout {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 40px;
}

.day-nav {
    position: sticky;
    top: 120px;
    height: 80vh;
    overflow: auto;
}

.day-link {
    display: block;
    padding: 14px 18px;
    margin-bottom: 8px;
    border-radius: 14px;
    font-weight: 500;
    color: #444;
    text-decoration: none;
    transition: .25s ease;
}

    .day-link:hover {
        background: #f4f6fb;
        transform: translateX(4px);
    }

    .day-link.active {
        background: #0d6efd;
        color: white;
    }

.day-hero {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    margin-bottom: 18px;
}

    .day-hero img {
        width: 100%;
        height: 460px;
        object-fit: cover;
        transition: 1s ease;
    }

    .day-hero:hover img {
        transform: scale(1.04);
    }

.day-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 55px;
    background: linear-gradient( transparent, rgba(0,0,0,.9) );
    color: white;
}

.day-card {
    background: white;
    border-radius: 22px;
    padding: 46px;
    margin-bottom: 70px;
    box-shadow: 0 12px 34px rgba(0,0,0,.08);
}

.transport {
    background: #f6f8fc;
    border-left: 4px solid #0d6efd;
    padding: 16px 18px;
    margin-top: 12px;
    border-radius: 12px;
}

.activity-chip {
    background: #eef4ff;
    padding: 7px 16px;
    border-radius: 30px;
    margin: 6px;
    display: inline-block;
    font-size: 14px;
}

.hotel-card {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,.12);
    transition: .35s ease;
}

    .hotel-card:hover {
        transform: translateY(-6px);
    }

    .hotel-card img {
        height: 170px;
        width: 100%;
        object-fit: cover;
    }

.gallery img {
    cursor: pointer;
    transition: .4s ease;
}

    .gallery img:hover {
        transform: scale(1.05);
    }


.map-card {
    border-radius: 26px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 18px 48px rgba(0,0,0,.12);
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

    .lightbox img {
        max-width: 90%;
        max-height: 85%;
        border-radius: 16px;
    }

.toggle-btn {
    border: none;
    background: #eef2ff;
    padding: 8px 16px;
    border-radius: 12px;
    margin-top: 10px;
}

@@media(max - width:1100px) {

    .ev-layout {
        grid-template-columns: 1fr;
    }

    .day-nav {
        display: none;
    }

    .day-card {
        padding: 28px;
    }
}

.org-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255,255,255,0);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0,0,0,.06);
    padding: 12px 0;
    min-height: 70px; /* 🔥 ensures same height always */
    display: flex;
    align-items: center; /* vertical centering */
}

.org-logo-placeholder {
    width: 42px;
    height: 42px;
    display: inline-block;
}

.org-logo {
    height: 42px;
    width: auto;
    border-radius: 6px;
}

.org-name {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    color: #111;
}

.org-brand:hover {
    opacity: 0.85;
    transition: 0.2s ease;
}

.org-subtitle {
    font-size: 13px;
    color: #666;
}

.org-link {
    font-size: 14px;
    text-decoration: none;
    color: #0d6efd;
}

.back-btn {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: #111;
    padding: 6px 12px;
    border-radius: 10px;
    background: rgba(0,0,0,0.05);
    transition: 0.2s ease;
}

    .back-btn:hover {
        background: rgba(0,0,0,0.1);
        transform: translateX(-2px);
    }

.hero-wrap {
    height: calc(100vh);
    overflow: hidden;
}

.hero-img {
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 80px 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.2), transparent);
    color: white;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-desc {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
}

/* BADGES */
.hero-badges {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    padding: 10px 16px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    font-weight: 500;
}

    .badge-item span.material-symbols-rounded {
        font-size: 20px;
    }

/* ===== SIDEBAR CONTAINER (3D GLASS) ===== */
.day-nav {
    position: sticky;
    top: 110px;
    height: 78vh;
    overflow: auto;
    padding: 14px;
    border-radius: 22px;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.5);
    scroll-behavior: smooth;
}

    /* ===== CUSTOM SCROLLBAR ===== */
    .day-nav::-webkit-scrollbar {
        width: 6px;
    }

    .day-nav::-webkit-scrollbar-thumb {
        background: rgba(0,0,0,0.2);
        border-radius: 10px;
    }

    .day-nav::-webkit-scrollbar-track {
        background: transparent;
    }

/* ===== LINKS ===== */
.day-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    margin-bottom: 10px;
    border-radius: 14px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: all .25s ease;
    position: relative;
}

    /* ICON */
    .day-link .material-symbols-rounded {
        font-size: 20px;
        opacity: 0.7;
    }

    /* ===== HOVER (FLOAT EFFECT) ===== */
    .day-link:hover {
        background: rgba(255,255,255,0.7);
        transform: translateX(6px) translateY(-2px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.8);
    }

    /* ===== ACTIVE (3D PRESSED STYLE) ===== */
    .day-link.active {
        background: linear-gradient(135deg, #0d6efd, #4a8cff);
        color: white;
        transform: translateX(6px);
        box-shadow: 0 10px 25px rgba(13,110,253,0.4), inset 0 2px 6px rgba(255,255,255,0.3);
    }

        /* ACTIVE ICON */
        .day-link.active .material-symbols-rounded {
            opacity: 1;
        }

    /* ===== LEFT INDICATOR BAR ===== */
    .day-link::before {
        content: "";
        position: absolute;
        left: -8px;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 0;
        background: #0d6efd;
        border-radius: 10px;
        transition: 0.25s ease;
    }

    .day-link.active::before {
        height: 60%;
    }

.material-symbols-rounded {
    vertical-align: middle;
    line-height: 1;
}