/* =====================================================
   ISHA GRAND EVENTS
   GALLERY.CSS - PART 1
   Royal Blue • Rose Gold • Cream • White
===================================================== */

/* ================= ROOT COLORS ================= */

:root {

    --royal-blue: #081C4B;
    --royal-blue-dark: #050E25;

    --rose-gold: #B76E79;
    --rose-gold-light: #D89CA5;

    --cream: #F5E6CC;
    --white: #FFFFFF;

    --glass:
        rgba(255,255,255,0.06);

    --border:
        rgba(255,255,255,0.12);

}

/* ================= PAGE ================= */

body {

    background:
        linear-gradient(
            180deg,
            #030817,
            #081C4B,
            #030817
        );

    color: var(--white);

    overflow-x: hidden;
}

/* =====================================================
   HERO VIDEO SECTION
===================================================== */

.gallery-hero {

    position: relative;

    width: 100%;
    height: 100vh;

    overflow: hidden;

    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-video {

    position: absolute;

    width: 100%;
    height: 100%;

    object-fit: cover;

    top: 0;
    left: 0;
}

.gallery-overlay {

    position: absolute;

    width: 100%;
    height: 100%;

    background:

        linear-gradient(
            to bottom,
            rgba(3,8,23,0.7),
            rgba(8,28,75,0.8)
        );

    z-index: 1;
}

.gallery-hero .hero-content {

    position: relative;

    z-index: 3;

    text-align: center;

    max-width: 900px;

    padding: 20px;
}

.gallery-hero span {

    color: var(--rose-gold-light);

    letter-spacing: 4px;

    text-transform: uppercase;

    font-size: 14px;
}

.gallery-hero h1 {

    font-family: 'Cinzel', serif;

    font-size: clamp(3rem,8vw,6rem);

    margin: 20px 0;

    color: var(--cream);

    text-shadow:
        0 0 25px rgba(183,110,121,0.5);
}

.gallery-hero p {

    color:
        rgba(255,255,255,0.85);

    font-size: 1.1rem;

    line-height: 1.9;
}

/* =====================================================
   SCROLL INDICATOR
===================================================== */

.scroll-indicator {

    position: absolute;

    bottom: 35px;

    left: 50%;

    transform: translateX(-50%);

    z-index: 10;

    text-align: center;

    color: var(--cream);

    animation: bounce 2s infinite;
}

.scroll-indicator i {

    display: block;

    margin-top: 8px;
}

@keyframes bounce {

    0%,100% {

        transform:
            translateX(-50%) translateY(0);
    }

    50% {

        transform:
            translateX(-50%) translateY(10px);
    }
}

/* =====================================================
   SECTION TITLE
===================================================== */

.section-title {

    text-align: center;

    margin-bottom: 70px;
}

.section-title span {

    color: var(--rose-gold);

    letter-spacing: 3px;

    text-transform: uppercase;
}

.section-title h2 {

    font-family: 'Cinzel', serif;

    color: var(--cream);

    font-size: clamp(2rem,5vw,4rem);

    margin-top: 15px;
}

.section-title p {

    max-width: 750px;

    margin: 20px auto 0;

    color:
        rgba(255,255,255,0.75);

    line-height: 1.9;
}

/* =====================================================
   STATISTICS
===================================================== */

.gallery-stats {

    position: relative;

    padding: 100px 0;
}

.stats-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit,minmax(220px,1fr));

    gap: 30px;
}

.stat-card {

    background: var(--glass);

    border: 1px solid var(--border);

    backdrop-filter: blur(15px);

    padding: 40px 25px;

    border-radius: 25px;

    text-align: center;

    transition: 0.4s;
}

.stat-card:hover {

    transform: translateY(-10px);

    border-color: var(--rose-gold);

    box-shadow:
        0 15px 35px rgba(183,110,121,0.25);
}

.stat-card h2 {

    font-size: 3rem;

    color: var(--rose-gold);

    margin-bottom: 10px;
}

.stat-card p {

    color: var(--cream);
}

/* =====================================================
   FEATURED EVENTS
===================================================== */

.featured-events {

    position: relative;

    padding: 120px 0;
}

.featured-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit,minmax(340px,1fr));

    gap: 35px;
}

.event-card {

    background: var(--glass);

    border: 1px solid var(--border);

    overflow: hidden;

    border-radius: 30px;

    transition: all 0.5s ease;

    backdrop-filter: blur(15px);
}

.event-card:hover {

    transform:
        translateY(-12px);

    border-color: var(--rose-gold);

    box-shadow:
        0 20px 40px rgba(183,110,121,0.25);
}

.event-image {

    height: 280px;

    overflow: hidden;
}

.event-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.6s;
}

.event-card:hover img {

    transform: scale(1.08);
}

.event-content {

    padding: 30px;
}

.event-date {

    color: var(--rose-gold-light);

    font-size: 14px;

    text-transform: uppercase;

    letter-spacing: 2px;
}

.event-content h3 {

    color: var(--cream);

    font-family: 'Cinzel', serif;

    margin: 15px 0;
}

.event-content p {

    color:
        rgba(255,255,255,0.75);

    line-height: 1.8;

    margin-bottom: 25px;
}

.event-btn {

    display: inline-block;

    padding: 12px 25px;

    border-radius: 50px;

    text-decoration: none;

    color: var(--white);

    background: var(--rose-gold);

    transition: 0.4s;
}

.event-btn:hover {

    background: var(--royal-blue);

    border: 1px solid var(--rose-gold);
}

/* =====================================================
   GALLERY.CSS - PART 2
   MASONRY GALLERY • FILTERS • LIGHTBOX
===================================================== */


/* =====================================================
   GALLERY SECTION
===================================================== */

.gallery-section {

    position: relative;

    padding: 120px 0;

    overflow: hidden;
}

.gallery-section::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background:

        radial-gradient(
            circle at top right,
            rgba(183,110,121,0.08),
            transparent 40%
        );

    pointer-events: none;
}


/* =====================================================
   GALLERY FILTER BUTTONS
===================================================== */

.gallery-filter {

    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

    gap: 15px;

    margin-bottom: 60px;
}

.gallery-filter button {

    padding: 12px 28px;

    border-radius: 50px;

    border: 1px solid rgba(255,255,255,0.15);

    background:
        rgba(255,255,255,0.04);

    color: var(--cream);

    cursor: pointer;

    font-size: 14px;

    font-weight: 500;

    transition: all 0.4s ease;

    backdrop-filter: blur(10px);
}

.gallery-filter button:hover {

    transform: translateY(-3px);

    border-color: var(--rose-gold);

    box-shadow:
        0 8px 20px rgba(183,110,121,0.25);
}

.gallery-filter button.active {

    background: var(--rose-gold);

    color: white;

    border-color: var(--rose-gold);

    box-shadow:
        0 10px 25px rgba(183,110,121,0.35);
}


/* =====================================================
   PINTEREST MASONRY GALLERY
===================================================== */

/* ====================================
   PREMIUM LARGE GALLERY
==================================== */

.premium-gallery-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(500px, 1fr));

    gap: 35px;

    margin-top: 60px;
}

.gallery-card {

    position: relative;

    overflow: hidden;

    border-radius: 30px;

    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(255,255,255,0.08);

    transition: all 0.5s ease;

    cursor: pointer;
}

.gallery-card:hover {

    transform: translateY(-10px);

    border-color: var(--rose-gold);

    box-shadow:
        0 20px 50px rgba(183,110,121,0.30);
}

.gallery-card img {

    width: 100%;

    height: 450px;

    object-fit: cover;

    transition: 0.7s;
}

.gallery-card:hover img {

    transform: scale(1.08);
}

.gallery-info {

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    padding: 30px;

    background:

        linear-gradient(
            transparent,
            rgba(0,0,0,0.95)
        );
}

.gallery-info h3 {

    color: white;

    font-family: 'Cinzel', serif;

    margin-bottom: 8px;

    font-size: 1.5rem;
}

.gallery-info p {

    color: var(--cream);
}

/* Mobile */

@media(max-width:768px){

    .premium-gallery-grid{

        grid-template-columns:1fr;
    }

    .gallery-card img{

        height:350px;
    }
}

.gallery-item:hover {

    border-color: var(--rose-gold);

    box-shadow:
        0 15px 35px rgba(183,110,121,0.25);
}

.gallery-item img {

    width: 100%;

    display: block;

    border-radius: 24px;

    transition: all 0.7s ease;
}

.gallery-item:hover img {

    transform: scale(1.08);
}


/* =====================================================
   IMAGE OVERLAY
===================================================== */

.gallery-overlay {

    position: absolute;

    inset: 0;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;

    padding: 20px;

    opacity: 0;

    transition: all 0.4s ease;

    background:

        linear-gradient(
            180deg,
            rgba(5,14,37,0.2),
            rgba(5,14,37,0.92)
        );
}

.gallery-item:hover .gallery-overlay {

    opacity: 1;
}

.gallery-overlay h3 {

    color: var(--cream);

    font-family: 'Cinzel', serif;

    margin-bottom: 20px;

    transform: translateY(20px);

    transition: 0.4s;
}

.gallery-item:hover .gallery-overlay h3 {

    transform: translateY(0);
}


/* =====================================================
   VIEW BUTTON
===================================================== */

.view-image {

    width: 60px;

    height: 60px;

    border-radius: 50%;

    border: none;

    background: var(--rose-gold);

    color: white;

    cursor: pointer;

    font-size: 20px;

    transition: all 0.4s ease;

    transform: scale(0.7);
}

.gallery-item:hover .view-image {

    transform: scale(1);
}

.view-image:hover {

    background: var(--royal-blue);

    box-shadow:
        0 0 25px rgba(183,110,121,0.5);
}


/* =====================================================
   LIGHTBOX
===================================================== */

.lightbox {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background:
        rgba(0,0,0,0.95);

    display: flex;

    justify-content: center;

    align-items: center;

    flex-direction: column;

    visibility: hidden;

    opacity: 0;

    transition: all 0.4s ease;

    z-index: 99999;
}

.lightbox.active {

    visibility: visible;

    opacity: 1;
}


/* =====================================================
   LIGHTBOX IMAGE
===================================================== */

.lightbox-image {

    max-width: 85%;

    max-height: 80vh;

    border-radius: 20px;

    border: 3px solid rgba(183,110,121,0.4);

    box-shadow:
        0 0 40px rgba(183,110,121,0.25);
}


/* =====================================================
   CLOSE BUTTON
===================================================== */

.lightbox-close {

    position: absolute;

    top: 30px;
    right: 40px;

    color: white;

    font-size: 45px;

    cursor: pointer;

    transition: all 0.3s ease;
}

.lightbox-close:hover {

    color: var(--rose-gold);

    transform: rotate(90deg);
}


/* =====================================================
   PREV / NEXT BUTTONS
===================================================== */

.lightbox-prev,
.lightbox-next {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 65px;

    height: 65px;

    border-radius: 50%;

    border: none;

    cursor: pointer;

    font-size: 22px;

    color: white;

    background:
        rgba(255,255,255,0.08);

    backdrop-filter: blur(10px);

    transition: all 0.3s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {

    background: var(--rose-gold);
}

.lightbox-prev {

    left: 40px;
}

.lightbox-next {

    right: 40px;
}


/* =====================================================
   GALLERY ITEM ANIMATION
===================================================== */

.gallery-item {

    animation: fadeGallery 1s ease;
}

@keyframes fadeGallery {

    from {

        opacity: 0;

        transform: translateY(30px);
    }

    to {

        opacity: 1;

        transform: translateY(0);
    }
}


/* =====================================================
   RESPONSIVE MASONRY
===================================================== */

@media (max-width: 1200px) {

    .masonry-gallery {

        column-count: 3;
    }
}

@media (max-width: 768px) {

    .masonry-gallery {

        column-count: 2;
    }

    .lightbox-image {

        max-width: 95%;
    }

    .lightbox-prev,
    .lightbox-next {

        width: 50px;
        height: 50px;

        font-size: 18px;
    }

    .lightbox-prev {

        left: 10px;
    }

    .lightbox-next {

        right: 10px;
    }
}

@media (max-width: 576px) {

    .masonry-gallery {

        column-count: 1;
    }

    .gallery-filter {

        gap: 10px;
    }

    .gallery-filter button {

        padding: 10px 20px;

        font-size: 13px;
    }

    .gallery-overlay h3 {

        font-size: 1rem;
    }
}


/* =====================================================
   GALLERY.CSS - PART 3
   VIDEOS • TIMELINE • TESTIMONIALS • INSTAGRAM
   CTA • FOOTER • FLOATING BUTTONS • RESPONSIVE
===================================================== */


/* =====================================================
   VIDEO HIGHLIGHTS SECTION
===================================================== */

.video-section {

    position: relative;

    padding: 120px 0;

    overflow: hidden;
}

.video-section::before {

    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    top: -250px;
    right: -200px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(183,110,121,0.08),
            transparent
        );

    pointer-events: none;
}

.video-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit,minmax(320px,1fr));

    gap: 30px;
}

.video-card {

    position: relative;

    overflow: hidden;

    border-radius: 25px;

    border: 1px solid rgba(255,255,255,0.08);

    background:
        rgba(255,255,255,0.03);

    backdrop-filter: blur(15px);

    transition: all 0.4s ease;
}

.video-card:hover {

    transform: translateY(-10px);

    border-color: var(--rose-gold);

    box-shadow:
        0 20px 40px rgba(183,110,121,0.25);
}

.video-card video {

    width: 100%;

    display: block;

    border-radius: 25px;
}


/* =====================================================
   TIMELINE SECTION
===================================================== */

.timeline-section {

    padding: 120px 0;

    position: relative;
}

.timeline {

    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

    gap: 30px;

    margin-top: 60px;
}

.timeline-item {

    width: 180px;

    height: 180px;

    border-radius: 50%;

    background:
        rgba(255,255,255,0.05);

    border: 1px solid rgba(255,255,255,0.1);

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;

    transition: all 0.4s ease;
}

.timeline-item:hover {

    transform: translateY(-10px);

    border-color: var(--rose-gold);

    box-shadow:
        0 15px 35px rgba(183,110,121,0.25);
}

.timeline-item i {

    font-size: 40px;

    color: var(--rose-gold);

    margin-bottom: 15px;
}

.timeline-item h3 {

    color: var(--cream);

    font-family: 'Cinzel', serif;

    font-size: 1rem;
}


/* =====================================================
   TESTIMONIALS
===================================================== */

.testimonials {

    padding: 120px 0;
}

.testimonial-slider {

    display: grid;

    grid-template-columns:
        repeat(auto-fit,minmax(300px,1fr));

    gap: 30px;
}

.testimonial-card {

    background:
        rgba(255,255,255,0.05);

    backdrop-filter: blur(15px);

    border: 1px solid rgba(255,255,255,0.1);

    border-radius: 25px;

    padding: 40px 30px;

    text-align: center;

    transition: all 0.4s ease;
}

.testimonial-card:hover {

    transform: translateY(-10px);

    border-color: var(--rose-gold);

    box-shadow:
        0 15px 35px rgba(183,110,121,0.25);
}

.stars {

    color: gold;

    font-size: 1.3rem;

    margin-bottom: 20px;
}

.testimonial-card p {

    color:
        rgba(255,255,255,0.75);

    line-height: 1.8;

    margin-bottom: 20px;
}

.testimonial-card h4 {

    color: var(--cream);

    font-family: 'Cinzel', serif;
}


/* =====================================================
   INSTAGRAM SECTION
===================================================== */

.instagram-section {

    padding: 120px 0;
}

.instagram-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit,minmax(220px,1fr));

    gap: 20px;
}

.instagram-grid img {

    width: 100%;

    height: 250px;

    object-fit: cover;

    border-radius: 20px;

    transition: all 0.5s ease;

    cursor: pointer;
}

.instagram-grid img:hover {

    transform: scale(1.05);

    box-shadow:
        0 15px 35px rgba(183,110,121,0.25);
}


/* =====================================================
   CTA SECTION
===================================================== */

.gallery-cta {

    position: relative;

    padding: 140px 0;

    text-align: center;

    overflow: hidden;
}

.cta-overlay {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            135deg,
            rgba(8,28,75,0.95),
            rgba(183,110,121,0.25)
        );
}

.cta-content {

    position: relative;

    z-index: 2;

    max-width: 850px;

    margin: auto;
}

.cta-content span {

    color: var(--rose-gold-light);

    letter-spacing: 3px;

    text-transform: uppercase;
}

.cta-content h2 {

    font-family: 'Cinzel', serif;

    font-size: clamp(2.5rem,5vw,4.5rem);

    color: var(--cream);

    margin: 20px 0;
}

.cta-content p {

    color:
        rgba(255,255,255,0.8);

    line-height: 1.9;

    margin-bottom: 35px;
}

.cta-buttons {

    display: flex;

    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;
}


/* =====================================================
   FOOTER
===================================================== */

.footer {

    background:
        linear-gradient(
            180deg,
            #020611,
            #050b1e
        );

    padding-top: 80px;
}

.footer-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit,minmax(250px,1fr));

    gap: 50px;
}

.footer-logo {

    width: 200px;

    max-width: 100%;

    margin-bottom: 20px;
}

.footer-column h3 {

    color: var(--cream);

    margin-bottom: 20px;

    font-family: 'Cinzel', serif;
}

.footer-column p,
.footer-column li {

    color:
        rgba(255,255,255,0.75);

    line-height: 2;
}

.footer-column ul {

    list-style: none;

    padding: 0;
}

.footer-column a {

    color:
        rgba(255,255,255,0.75);

    text-decoration: none;

    transition: all 0.3s ease;
}

.footer-column a:hover {

    color: var(--rose-gold);
}

.footer-bottom {

    border-top:
        1px solid rgba(255,255,255,0.08);

    margin-top: 50px;

    padding: 25px 0;

    text-align: center;

    color:
        rgba(255,255,255,0.6);
}


/* =====================================================
   FLOATING WHATSAPP
===================================================== */

.whatsapp-float {

    position: fixed;

    bottom: 25px;

    right: 25px;

    width: 65px;

    height: 65px;

    background: #25D366;

    color: white;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 30px;

    text-decoration: none;

    z-index: 999;

    box-shadow:
        0 10px 25px rgba(0,0,0,0.3);

    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {

    0%,100% {

        transform: scale(1);
    }

    50% {

        transform: scale(1.08);
    }
}


/* =====================================================
   BACK TO TOP
===================================================== */

.back-to-top {

    position: fixed;

    right: 25px;

    bottom: 105px;

    width: 50px;

    height: 50px;

    border: none;

    border-radius: 50%;

    background: var(--rose-gold);

    color: white;

    cursor: pointer;

    display: none;

    z-index: 999;

    transition: all 0.3s ease;
}

.back-to-top:hover {

    transform: translateY(-5px);
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 992px) {

    .timeline {

        gap: 20px;
    }

    .timeline-item {

        width: 150px;
        height: 150px;
    }
}

@media (max-width: 768px) {

    .cta-buttons {

        flex-direction: column;

        align-items: center;
    }

    .cta-buttons .btn {

        width: 100%;

        max-width: 300px;
    }

    .timeline-item {

        width: 140px;
        height: 140px;
    }

    .timeline-item i {

        font-size: 32px;
    }

    .instagram-grid img {

        height: 220px;
    }
}

@media (max-width: 576px) {

    .timeline {

        flex-direction: column;
    }

    .timeline-item {

        width: 220px;
        height: 220px;
    }

    .whatsapp-float {

        width: 58px;
        height: 58px;

        font-size: 26px;
    }

    .back-to-top {

        width: 45px;
        height: 45px;
    }

    .cta-content h2 {

        font-size: 2rem;
    }
}





/* Loader Hide */

.loader-hidden {

    opacity: 0;

    visibility: hidden;

    transition: all 0.6s ease;
}

/* Mobile Menu */

.nav-links.active {

    display: flex;
}

/* Header Scroll */

.header.scrolled {

    background:
        rgba(5,14,37,0.95);

    backdrop-filter: blur(15px);

    box-shadow:
        0 5px 20px rgba(0,0,0,0.3);
}