@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Inter:wght@400;600&display=swap');

body {
    font-family: 'Poppins', sans-serif;
}

/* navbar */

.logo{
    width: 200px;
    /* height: 50px; */
}

#mobile-menu {
    transition: all 0.4s ease-in-out;
    max-height: 0;
    opacity: 0;
    pointer-events: none;
}

#mobile-menu.open {
    max-height: 600px;
    /* Large enough to fit content */
    opacity: 1;
    padding-bottom: 1rem;
    pointer-events: auto;
}

/* faq section */
.handwritten {
    font-family: 'Covered By Your Grace', cursive;
}

.bg-cream {
    background-color: #FBF9F1;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.active .accordion-content {
    max-height: 200px;
}

.active .rotate-icon {
    transform: rotate(90deg);
}

/* fourth section */
.handwritten {
    font-family: 'Covered By Your Grace', cursive;
}

.bg-cream {
    background-color: #FBF9F1;
}

/* fifth section */
.handwritten {
    font-family: 'Covered By Your Grace', cursive;
}

.bg-cream {
    background-color: #FBF9F1;
}

/* video section */
@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.animate-ripple {
    animation: ripple 2s infinite ease-out;
}


/* contact us page */
.form-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.input-style {
    transition: all 0.3s ease;
    border: 1.5px solid #e2e8f0;
}

.input-style:focus {
    border-color: #10b981;
    background-color: white;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.1);
    transform: translateY(-1px);
}

/* Subtle floating animation for the decorative icon */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.float-icon {
    animation: float 4s ease-in-out infinite;
}

/* footer */
.footer-bg {
    background-color: #1e1e1a;
}

/* contact us */


.font-handwriting {
    font-family: 'Pacifico', cursive;
}

.font-sans {
    font-family: 'Inter', sans-serif;
}

/* gallery css*/

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    height: 300px;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 4px solid white;
    /* Agriculture "framed" look */
    transition: all 0.4s ease;
}

.gallery-card:hover {
    transform: translateY(-5px);
    border-color: #166534;
    /* green-800 */
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: crop;
    transition: transform 0.6s ease;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

/* Lightbox Animations */
#lightbox.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

#lightbox-img {
    transition: opacity 0.2s ease, transform 0.3s ease;
}

#lightbox-img.sliding {
    opacity: 0;
    transform: scale(0.95);
}