* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.name-hide {
    display: none;
}

html,
body {
    min-height: 100%;
}

body {
    margin: 0;
    font-family: "Chelsea Market", system-ui;
    background: #f8f8f8;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.swirl-bg {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
}

.logostyle {
    width: 70px;
    height: 70px;
}

/* SWIRL BACKGROUND LAYER */
.swirl-bg {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;

    background:
        radial-gradient(circle at 20% 30%, rgba(0, 128, 0, 0.4), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 128, 0, 0.35), transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.95), transparent 60%);

    background-size: 200% 200%;
    animation: swirlFlow 20s linear infinite;
    background-attachment: fixed;
}

/* ANIMATION */
@keyframes swirlFlow {
    0% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 100%;
    }
}




/* .coverDiv {
    width: 100%;
    min-height: 10vh;
    display: flex;
    flex-direction: column;
    background-position: center;
    background-size: cover;
}

.coverDiv .mainHeader {
    width: 100%;
    height: 85px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.4);
    padding-inline: max(5%, 50px);
    padding-top: 10px;
}

.coverDiv .mainHeader .logoSec {
    width: auto;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.coverDiv .mainHeader .logoSec>i {
    font-size: xx-large;
    color: rgb(7, 139, 7);
    overflow: hidden;
}

.coverDiv .mainHeader .logoSec>span {
    font-family: "Chelsea Market", system-ui;
    font-weight: bold;
    color: white;
    padding-left: 5px;
    font-size: large;
}

.coverDiv .mainHeader .navItems {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 0.5s ease;
    z-index: 100;
}

.coverDiv .mainHeader .navItems>span {
    position: relative;
    width: auto;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.coverDiv .mainHeader .navItems>span>a {
    color: white;
    text-decoration: none;
    padding: 10px 15px 10px;
    font-weight: bold;
}

.coverDiv .mainHeader .navItems>span>a::after {
    content: " ";
    width: 0%;
    height: 5%;
    background-color: rgb(7, 139, 7);
    position: absolute;
    bottom: 0;
    right: 0%;
    transition: 0.5s;
}

.coverDiv .mainHeader .navItems>span:hover>a::after {
    left: 0%;
    width: 95%;
}

.hamburgerIcon {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
} */



.coverDiv .mainHeader {
    width: 100%;
    height: 85px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.4);
    padding-inline: max(5%, 50px);
    padding-top: 10px;
}

.logoSec {
    display: flex;
    align-items: center;
    color: white;
    font-weight: bold;
}

.logoSec span {
    padding-left: 10px;
    font-size: 1.2rem;
}

.navItems {
    display: flex;
    gap: 20px;
}

.navItems span a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    padding: 5px 0;
}

.navItems span a.active::after,
.navItems span a:hover::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
}

.hamburgerIcon {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}


/* @media screen and (max-width: 900px) {
    .coverDiv .mainHeader .navItems {
        display: none;
        position: absolute;
        top: 85px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(10px);
        padding-block: 20px;
        transition: 0.3s ease;
    }

    .coverDiv .mainHeader .navItems.active {
        display: flex;
    }

    .coverDiv .mainHeader .hamburgerIcon {
        display: block;
        cursor: pointer;
    }
} */
/* .coverDiv .mainHeader .hamburgerIcon {
    display: none;
    width: auto;
    height: auto;
    color: white;
    overflow: hidden;
} */
/* .coverDiv .mainHeader .hamburgerIcon {
    display: none;
} */



.coverDiv .mainHeader .hamburgerIcon>i {
    font-size: x-large;
}

.coverDiv .mainDiv .hamburgerIcon {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 80px);
    background-color: rgba(0, 0, 0, 0.4);
    position: relative;
}

.coverDiv .mainDiv .mainSec {
    width: 80%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
    animation: topSlide 1s ease-out;
}

@keyframes topSlide {
    from {
        margin-top: -20%;
        opacity: 0;
    }

    to {
        margin-top: 0%;
        opacity: 1;
    }


}

.coverDiv .mainDiv .mainSec>h1 {
    font-size: 70px;
    text-align: center;
}

.coverDiv .mainDiv .mainSec>p {
    width: 80%;
    font-size: 1.5rem;
    text-align: center;
    padding-block: 10px;
    font-weight: lighter;
    color: white;
}

.coverDiv .mainDiv .mainSec>a {
    text-decoration: none;
    font-family: "Chelsea Market", system-ui;
    font-weight: bold;
    position: relative;
    z-index: 2;
    color: white;
    padding: 10px 50px 10px;
    margin-top: 8px;
    text-decoration: none;
    color: white;
    border: 2px solid white;
}

.coverDiv .mainDiv .mainSec>a::before {
    content: " ";
    width: 0%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    background-color: white;
    z-index: -1;
    transition: 0.5s;
}

.coverDiv .mainDiv .mainSec>a::after {
    content: " ";
    width: 0%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 50%;
    background-color: white;
    z-index: -1;
    transition: 0.5s;
}

.coverDiv .mainDiv .mainSec>a:hover {
    color: black;
}

.coverDiv .mainDiv .mainSec>a:hover::before,
.coverDiv .mainDiv .mainSec>a:hover::after {
    width: 50%;
}





/* PAGE WRAPPER */
.galleryPage {
    padding: 60px 5%;
}

/* TABS */
.galleryTabs {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-font-size {
    display: flex;
    gap: 30px;
}

.galleryTabs .tab {
    gap: 30px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding-bottom: 8px;
    position: relative;
    color: #222;
    font-family: "Chelsea Market", system-ui;
}

.galleryTabs .tab.active {
    color: rgb(7, 139, 7);
    font-weight: bold;
}

.galleryTabs .tab:hover {
    color: rgb(7, 139, 7);
    font-weight: bold;

}

.galleryTabs .tab.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: rgb(7, 139, 7);
}

/* GALLERY GRID */
.galleryGrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

/* ITEMS */
.galleryItem {
    background: #fff;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.galleryItem img,
.galleryItem video {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.galleryItem:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* HIDE ITEMS */
.galleryItem.hide {
    display: none;
}

/* FOOTER */
.site-footer {
    width: 100%;

    color: #333;
    font-family: "Chelsea Market", system-ui;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding: 60px 8%;
    flex-wrap: wrap;
}

.footer-left {
    flex: 1;
    min-width: 280px;
}



.footer-left p {
    line-height: 1.7;
    font-size: 0.95rem;
    color: #555;
    max-width: 600px;
}

.social-icons {
    margin-top: 20px;
    display: flex;
    gap: 14px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: background 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    background: rgb(7, 139, 7);
    color: #fff;
}

/* RIGHT SIDE */
.footer-right {
    flex: 1;
    min-width: 260px;
}

.footer-right h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-right h3::before {
    content: "";
    width: 60px;
    height: 4px;
    background: #fbbc05;
    position: absolute;
    top: -10px;
    left: 0;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;

    display: grid;
    grid-template-rows: repeat(3, auto);
    row-gap: 20px;
}

.contact-list li {
    display: grid;
    grid-template-columns: 30px 1fr;
    column-gap: 15px;
    align-items: start;
}

.contact-list i {
    font-size: 18px;
    color: rgb(7, 139, 7);
}

/* BOTTOM BAR */
.footer-bottom {
    background: #000;
    padding: 18px 8%;
    text-align: center;
}

.footer-bottom p {
    color: #fff;
    font-size: 0.9rem;
}

.footer-bottom span {
    color: #2ecc71;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        padding: 40px 6%;
    }

    .galleryGrid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .tab-font-size {
        font-size: 1.5vw;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }



}

@media (max-width: 900px) {
    .tab-font-size {
        font-size: 1.5vw;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .navItems {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        transition: 0.3s;
    }

    .navItems.active {
        display: flex;
    }

    .navItems span {
        margin: 15px 0;
    }

    .navItems span a {
        font-size: 1.5rem;
    }

    .hamburgerIcon {
        display: block;
        z-index: 1100;
    }

}