/*
Theme Name: ExploreBird Custom Theme
Author: Your Name
Description: Custom travel blog theme.
Version: 1.0
*/
        :root {
            --primary: #FFB81C;
            --dark: #1a1a1a;
            --white: #ffffff;
            --light-bg: #f8f9fa;
            --grey: #6c757d;
            --shadow: 0 10px 30px rgba(0,0,0,0.08);
            /* Added missing variables for slider */
            --primary-color: #FFB81C;
            --accent-color: #ffffff; 
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body { 
            font-family: 'Inter', sans-serif; 
            line-height: 1.6; 
            color: var(--dark); 
            overflow-x: hidden; 
            background-color: var(--white);
        }
        
        html { scroll-behavior: smooth; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

        /* =========================================
           2. HEADER & NAVIGATION
           ========================================= */
        .mainheader {
            display: flex; justify-content: space-between; align-items: center;
            padding: 20px 5%; position: fixed; top: 0; width: 100%; z-index: 1000;
            transition: 0.4s ease; background: transparent;
        }
        
        .mainheader.scrolled { 
            background: var(--white); 
            box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
            padding: 12px 5%; 
        }

      
.site-logo {
    height: 70px; width: auto; object-fit: contain; background: transparent; transition: transform 0.3s ease;}
.site-logo:hover {transform: scale(1.05);}
         nav ul { display: flex; list-style: none; gap: 30px; }
        nav ul li a { 
            text-decoration: none; color: var(--white); font-weight: 500; 
            padding: 5px 0; position: relative; transition: color 0.3s ease;
        }
        
        .mainheader.scrolled nav ul li a { color: var(--dark); }
        nav ul li a:hover { color: var(--primary); }
        nav ul li a::after {
            content: ''; position: absolute; bottom: 0; left: 0;
            width: 0; height: 2px; background: var(--primary);
            transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        nav ul li a:hover::after { width: 100%; }

        /* Dropdown */
        .dropdown { position: relative; display: inline-block; }
        .dropdown-content {
            display: block; opacity: 0; position: absolute; top: 100%; left: 0;
            background-color: #ffffff; min-width: 220px; box-shadow: 0px 8px 16px rgba(0,0,0,0.1);
            z-index: 1001; border-radius: 8px; list-style: none; padding: 10px 0;
            visibility: hidden; transform: translateY(10px); transition: all 0.3s ease;
            margin-top: 0; padding-top: 15px; 
        }
        .dropdown::before { content: ''; position: absolute; top: 100%; left: 0; width: 100%; height: 20px; background: transparent; }
        .dropdown:hover .dropdown-content { 
            display: block; opacity: 1; visibility: visible; transform: translateY(0);
        }
        .dropdown-content li { overflow: hidden; }
        .dropdown-content li a { 
            color: #333 !important; padding: 12px 20px; display: flex;
            justify-content: space-between; font-size: 14px; transition: all 0.3s ease;
        }
        .dropdown-content li a:hover { padding-left: 30px !important; background-color: var(--light-bg); color: var(--primary) !important; }

        /* Search */
        .search-container {
            display: flex; align-items: center; background: rgba(255, 255, 255, 0.1);
            padding: 5px 12px; border-radius: 50px; border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .search-container:focus-within {
            background: rgba(255, 255, 255, 0.2); border-color: var(--primary); box-shadow: 0 0 15px rgba(255, 184, 28, 0.3);
        }
        .search-input {
            width: 0; opacity: 0; border: none; background: transparent; color: white;
            outline: none; font-size: 0.9rem; padding: 0; transition: all 0.4s ease;
        }
        .search-container:hover .search-input, .search-input:focus { width: 200px; opacity: 1; padding: 0 10px; }
        .mainheader.scrolled .search-input { color: var(--dark); }
        .search-container:hover .search-btn { color: var(--primary); transform: scale(1.1); }
        
        .search-btn {
            background: none; border: none; cursor: pointer; color: var(--white);
            display: flex; align-items: center; transition: transform 0.3s ease;
        }
        .mainheader.scrolled .search-btn svg { stroke: var(--dark); }
        .search-input::placeholder { color: rgba(255, 255, 255, 0.6); }
        .mainheader.scrolled .search-input::placeholder { color: rgba(0, 0, 0, 0.4); }

        /* =========================================
           3. HERO SECTION & MAP DRAWER
           ========================================= */
        .hero {
            position: relative; width: 100%; height: 80vh; display: flex;
            align-items: center; justify-content: center; overflow: hidden;
            background: url(https://images.unsplash.com/photo-1506744038136-46273834b3fb?w=800) center/cover; 
        }
       .hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
    image-rendering: -webkit-optimize-contrast;
    filter: brightness(1) contrast(1.1); 
}
        .hero-overlay {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background: transparent; z-index: 1; 
        }
        .hero-content {
            position: relative; z-index: 10; text-align: center; pointer-events: none; padding: 0 20px;
        }
        .hero-content h1 {
            font-size: 3.5rem; font-weight: 800; color: #ffffff !important; 
            text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.7); letter-spacing: 1px; 
        }

        .scroll-indicator {
            position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
            display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 10;
        }
        .mouse {
            width: 30px; height: 50px; border: 3px solid #ffffff; border-radius: 20px;
            display: flex; justify-content: center; padding-top: 10px;
        }
        .wheel {
            width: 6px; height: 10px; background: #ffffff; border-radius: 3px;
            animation: scrollWheel 1.6s infinite cubic-bezier(0.4, 0, 1, 1);
        }
        .arrows span {
            display: block; width: 12px; height: 12px; border-bottom: 3px solid #ffffff;
            border-right: 3px solid #ffffff; transform: rotate(45deg); margin: -2px;
            animation: arrowBounce 1.6s infinite;
        }

        @keyframes scrollWheel { 0% { opacity: 0; transform: translateY(-5px); } 20% { opacity: 1; } 80% { opacity: 1; } 100% { opacity: 0; transform: translateY(20px); } }
        @keyframes arrowBounce { 0% { opacity: 0; transform: rotate(45deg) translate(-8px, -8px); } 50% { opacity: 1; } 100% { opacity: 0; transform: rotate(45deg) translate(8px, 8px); } }

        .view-map-btn {
            position: absolute; bottom: 30px; right: 5%; background: rgba(255,255,255,0.2); backdrop-filter: blur(10px);
            color: var(--white); padding: 12px 22px; border-radius: 50px; text-decoration: none; display: flex; gap: 8px;
            border: 1px solid rgba(255,255,255,0.3); transition: 0.3s; font-size: 0.9rem; cursor: pointer; z-index: 11;
        }
        .view-map-btn:hover { background: var(--primary); color: var(--dark); transform: translateY(-5px); }

        .map-drawer { 
            width: 100%; border-radius: 20px; max-height: 0; overflow: hidden; opacity: 0;
            transform: scaleY(0); transform-origin: top; transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); visibility: hidden;
            background: #f8f9fa; position: relative; scroll-margin-top: 100px;
        }
        .map-drawer.open { 
            max-height: 500px; opacity: 1; visibility: visible; transform: scaleY(1); margin: 20px auto; box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        .map-drawer iframe { width: 100%; height: 450px; border: 0; display: block; }
        .close-map-btn {
            position: absolute; top: 15px; right: 25px; width: 45px; height: 45px;
            background: rgba(0, 0, 0, 0.8); color: white; border: 2px solid white; border-radius: 50%; 
            font-size: 24px; cursor: pointer; z-index: 100; transition: all 0.3s ease;
        }
        .close-map-btn:hover { background: var(--primary); color: var(--dark); transform: scale(1.1) rotate(90deg); border-color: var(--primary); }

        /* =========================================
           4. BLOG GRID SECTION 
           ========================================= */
        .main-container-fluid { max-width: 1300px; margin: 40px auto; padding: 0 40px; }
        .section-header { text-align: center; margin-bottom: 60px; position: relative; }
        .section-title {
            font-size: 3rem; font-weight: 900; color: var(--dark); text-transform: uppercase;
            letter-spacing: 2px; display: inline-block; position: relative; margin-bottom: 15px; text-shadow:2px 3px 0px var(--primary);
        }
        .section-title::after {
            content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%);
            width: 80px; height: 4px; background: var(--primary); border-radius: 10px; transition: width 0.4s ease;
        }
        .section-header:hover .section-title::after { width: 150px; }
        .section-subtitle { color: var(--grey); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

        .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; width: 100%; }

        .premium-card { 
            position: relative; border-radius: 15px; background: var(--white);
            border: 1px solid rgba(0, 0, 0, 0.06); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
            overflow: hidden; transition: transform 0.5s ease, box-shadow 0.5s ease;
        }
        .premium-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); z-index: 10; }
        
        .image-wrapper { position: relative; height: 220px; overflow: hidden; }
        .image-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
        .premium-card:hover img { transform: scale(1.1); }

        .premium-content { padding: 20px; }
        .premium-content h3 { font-size: 1.3rem; margin-bottom: 10px; line-height: 1.3; }
        .premium-content p { color: #555; font-size: 0.95rem; margin-bottom: 15px; }

        .explore-btn {
            display: inline-flex; align-items: center; gap: 10px; text-decoration: none; 
            color: var(--primary); font-weight: 800; font-size: 0.85rem; text-transform: uppercase; position: relative;
        }
        .explore-btn::after {
            content: '→'; position: absolute; right: -20px; opacity: 0; transition: 0.3s;
        }
        .explore-btn:hover::after { opacity: 1; right: -25px; }

        .hidden-card { display: none; }
        
        .load-more-container { text-align: center; margin-top: 50px; }
        .btn-load-more {text-decoration: none;
            background: transparent; border: 2px solid var(--primary); color: var(--primary);
            padding: 12px 35px; font-size: 0.9rem; font-weight: 800; text-transform: uppercase;
            cursor: pointer; border-radius: 50px; transition: 0.3s;
        }
        .btn-load-more:hover { background: var(--primary); color: var(--dark); transform: translateY(-3px); }

        /* =========================================
           5. ANIMATED PHOTO GALLERY SECTION (Swiper)
           ========================================= */
        .shorts-slider-wrapper { max-width: 1280px; margin: 60px auto; padding: 0 60px; position: relative; }
        .section-heading {
            text-align: center; font-size: 2.5rem; font-weight: 800; color: var(--dark);
            margin-bottom: 40px; position: relative; display: inline-block; left: 50%; transform: translateX(-50%); text-shadow: 2px 1px 0px var(--primary);
        }
        .section-heading::after {
            content: ""; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%);
            width: 60px; height: 3px; background-color: var(--primary); transition: 0.4s ease;
        }
        .section-heading:hover::after { width: 100%; }

        .myShortsSlider {padding: 30px 10px !important; margin-top: -30px;  }
        .swiper-slide {
            aspect-ratio: 9/16; border-radius: 18px; overflow: hidden; position: relative;
            background: #eee; box-shadow: var(--shadow); transition: transform .4s ease;
        }
        .swiper-slide:hover { transform: translateY(-10px); }

        .slide-link { display: block; width: 100%; height: 100%; text-decoration: none; }
        .slide-link img { width: 100%; height: 100%; object-fit: cover; display: block; }
        .slide-content {
            position: absolute; bottom: 0; left: 0; right: 0; padding: 40px 15px 20px;
            background: linear-gradient(transparent, rgba(0,0,0,0.9)); z-index: 2;
        }
        .slide-title { margin: 0; color: var(--accent-color); font-size: 18px; font-weight: 700; line-height: 1.2; }

        .swiper-button-next, .swiper-button-prev {
            width: 50px; height: 50px; background-color: var(--dark); border-radius: 50%;
            color: var(--primary-color) !important; transition: all .3s ease;
        }
        .swiper-button-next:after, .swiper-button-prev:after { font-size: 20px !important; font-weight: 900; }
        .swiper-button-next:hover, .swiper-button-prev:hover { background-color: var(--primary-color); color: var(--dark) !important; }

        .swiper-pagination-bullet-active { background: var(--primary-color) !important; width: 25px; border-radius: 5px; }
        .explore-section { text-align: center; margin-top: 30px; }

        /* =========================================
           6. FOOTER SECTION
           ========================================= */
        .main-footer { background: #1a1c20; color: #999; padding: 80px 0 0; margin-top: 80px; border-top: 4px solid var(--primary); }
        .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.5fr; gap: 60px; padding-bottom: 60px; }
        .footer-col ul { list-style: none; }
        .footer-col ul li { margin-bottom: 15px; }
        .footer-col ul li a { color: #999; text-decoration: none; transition: 0.3s; }
        .footer-col ul li a:hover { color: var(--primary); padding-left: 5px; }
        
        .footer-col h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 25px; position: relative; display: inline-block; }
        .footer-col h3::after { content: ''; position: absolute; bottom: -8px; left: 0; width: 30px; height: 2px; background: var(--primary); }
        
        .footer-socials { display: flex; gap: 15px; margin-top: 25px; }
    

.social-icon {
    display: flex; align-items: center; justify-content: center; width: 50px; height: 50px; border-radius: 50%; color: white; text-decoration: none; font-size: 22px; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); margin: 0 10px;}
.facebook-custom {background-color: #1877F2; }
.facebook-custom:hover {transform: translateY(-5px) scale(1.1);
    box-shadow: 0 0 20px rgba(24, 119, 242, 0.8), 
                0 0 40px rgba(24, 119, 242, 0.4);}
.insta-neon {background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);}

.insta-neon:hover {transform: translateY(-5px) scale(1.1);
    box-shadow: 0 0 20px rgba(214, 36, 159, 0.8), 
                0 0 40px rgba(253, 89, 73, 0.5);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);}

        .footer-subscribe { display: flex; background: rgba(255, 255, 255, 0.05); padding: 5px; border-radius: 50px; margin-top: 15px; }
        .footer-subscribe input { background: transparent; border: none; padding: 10px 20px; color: white; outline: none; flex: 1; }
        .footer-subscribe button { background: var(--primary); color: var(--dark); border: none; padding: 10px 25px; border-radius: 50px; font-weight: 800; cursor: pointer; transition: 0.3s; }
        .footer-subscribe button:hover { background: white; }
        
        .footer-bottom { background: #1a1c20; padding: 20px; text-align: center; font-size: 0.85rem; border-top: 1px solid rgba(255, 255, 255, 0.05); }

        /* =========================================
           7. RESPONSIVE DESIGN (MOBILE & TABLET)
           ========================================= */
        @media (max-width: 992px) {
            .blog-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: 1fr; gap: 40px;}
        }

        @media (max-width: 768px) {
            .mainheader {
                position: absolute !important; display: grid !important; grid-template-columns: auto auto !important; 
                grid-template-areas: "logo toggle" "search search" !important; padding: 15px 5% !important; background: var(--white) !important;
            }
            .site-logo { height: 40px; }
            .menu-toggle {
                display: flex !important; flex-direction: column; justify-content: space-between;
                width: 30px; height: 21px; cursor: pointer; z-index: 9999; grid-area: toggle; justify-self: end;
            }
            .menu-toggle .bar { display: block; width: 100%; height: 3px; background-color: #333; transition: 0.3s; }
            .header-extras { grid-area: search; width: 100%; margin-top: 15px; }
            .search-container { background: rgba(0, 0, 0, 0.05); width: 100%; justify-content: center; }
            .search-input { width: 100%; opacity: 1; color: var(--dark); text-align: center; }
            .search-btn { color: var(--dark); }
            
            .nav-menu {
                position: fixed; top: 0; left: -100%; width: 280px; height: 100vh; background: #fff;
                display: flex; flex-direction: column; padding: 100px 0; transition: 0.4s; z-index: 999;
            }
            .nav-menu.active { left: 0; box-shadow: 10px 0 30px rgba(0,0,0,0.2); }
            .nav-menu li { width: 100%; text-align: center; margin: 15px 0; }
            .nav-menu li a { color: var(--dark); font-size: 1.2rem; }
            
            #mobile-menu.is-active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
            #mobile-menu.is-active .bar:nth-child(2) { opacity: 0; }
            #mobile-menu.is-active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
            
            .dropdown-content { position: static; box-shadow: none; display: none; }
            .dropdown.open .dropdown-content { display: block; }
            
            .hero { margin-top: 120px; height: 50vh; }
            .hero-content h1 { font-size: 1.7rem; }
            .scroll-indicator { display: none; }
            .main-container-fluid {margin: 20px 0 !important; padding: 0 !important; max-width: 100% !important; width: 100% !important;}
            
            .blog-grid { grid-template-columns: 1fr;  display: block !important; width: 100% !important; padding: 0 !important; margin: 0 !important; }
            .section-title { font-size: 1.5rem; }
            .section-subtitle { font-size: 0.8rem;}
            .section-heading { font-size: 1.2rem; padding: 0 20px;}
            .premium-card {width: 100% !important; margin-bottom: 20px !important; border-left: none !important; border-right: none !important; border-radius: 0 !important;}
             .premium-content h3 { font-size: 1rem; }
             .premium-content p {  font-size: 0.70rem; }
             .image-wrapper {
        height: 250px !important; /* Mobile par height thodi barha di hai */
    }
            .shorts-slider-wrapper {
        padding: 0 !important;
        margin: 40px 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    .myShortsSlider {
        padding: 20px 0 40px 0 !important; /* Top/Bottom padding for hover, sides 0 */
        width: 100% !important;
    }
    .swiper-slide {
        border-radius: 0 !important; /* Full width look ke liye 0 karein ya 10px rakhein */
    }

            .swiper-button-next, .swiper-button-prev { display: none; }
        }


/* =========================================
   SINGLE POST STYLES
   ========================================= */
.single-post-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 30px;
    background: #fff;
}

.post-meta-details {
    display: flex;
    gap: 15px;
    justify-content: center;
    color: var(--grey);
    font-size: 0.95rem;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.post-meta-details span.post-cat a {
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
}

.single-post-thumbnail img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
}

.actual-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
}

.actual-content h2, .actual-content h3 {
    color: var(--dark);
    margin: 30px 0 15px 0;
}

.actual-content p {
    margin-bottom: 25px;
}

.actual-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
}

.post-tags-container {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 2px solid #eee;
    font-weight: 600;
}

.post-tags-container a {
    color: var(--primary);
    text-decoration: none;
    background: var(--light-bg);
    padding: 5px 12px;
    border-radius: 20px;
    margin-left: 5px;
}

        