/* ==========================================================================
   SafarScape — Exact CSS from webdesign HTML files (merged, deduplicated)
   ========================================================================== */

/* Material Symbols — from all pages */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
}

/* From home.html */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.hero-gradient {
    background: linear-gradient(135deg, rgba(0, 15, 34, 0.8) 0%, rgba(10, 37, 64, 0.4) 100%);
}
.premium-shadow {
    box-shadow: 0 40px 40px -5px rgba(25, 28, 29, 0.05);
}

/* From about_us.html, tour_packages.html, destination_page.html */
.editorial-shadow {
    box-shadow: 0 40px 40px -5px rgba(25, 28, 29, 0.05);
}
.glass-nav {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* From booking.html */
.glass-panel {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

/* From destination_page.html */
.text-gradient {
    background: linear-gradient(135deg, #000f22 0%, #0a2540 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.btn-gradient {
    background: linear-gradient(135deg, #000f22 0%, #0a2540 100%);
}

/* From tour_packages.html */
.text-gradient-primary {
    background: linear-gradient(135deg, #000f22 0%, #0a2540 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* From contact.html */
.font-notoserif { font-family: 'Noto Serif', serif; }
.font-manrope { font-family: 'Manrope', sans-serif; }

/* ==========================================================================
   WordPress-specific additions (not in original HTML files)
   ========================================================================== */

/* WP Admin Bar offset */
.admin-bar header.sticky {
    top: 32px;
}
@media screen and (max-width: 782px) {
    .admin-bar header.sticky {
        top: 46px;
    }
}

/* Mobile Nav Overlay — handled by Tailwind classes in header.php */

/* Wishlist Sidebar */
.wishlist-sidebar {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
}
.wishlist-sidebar.active {
    pointer-events: auto;
}
.wishlist-sidebar__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s;
}
.wishlist-sidebar.active .wishlist-sidebar__overlay {
    opacity: 1;
}
.wishlist-sidebar__panel {
    position: absolute;
    top: 0; right: 0;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: white;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}
.wishlist-sidebar.active .wishlist-sidebar__panel {
    transform: translateX(0);
}

/* Inquiry Modal */
.inquiry-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.inquiry-modal.active {
    display: flex;
}
.inquiry-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.inquiry-modal__panel {
    position: relative;
    z-index: 2;
    background: white;
    border-radius: 1.5rem;
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

/* Lightbox */
.lightbox, .gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    background: rgba(0, 0, 0, 0.92);
}
.lightbox.active, .gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

/* Back to top */
.back-to-top {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 900;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: #000f22;
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: #0a2540;
    transform: translateY(-3px);
}
