@import url('https://fonts.googleapis.com/css2?family=Bree+Serif&display=swap');

:root {
    --primary: #30c77c;
    --light: #F3F4F5;
    --dark: #282F34;
}

.bree-serif-regular {
    font-family: "Bree Serif", serif;
    font-weight: 400;
    font-style: normal;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "Bree Serif", serif;
}

.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: #28a866;
    border-color: #28a866;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/* Navbar */
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand {
    display: flex;
    align-items: center;
}

.navbar .navbar-brand .logo-1 {
    height: 60px;
    width: auto;
    max-height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.navbar .navbar-brand .logo-2 {
    height: 90px;
    width: auto;
    max-height: 90px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-1:hover,
.logo-2:hover {
    transform: scale(1.1);
}

@media (max-width: 991.98px) {
    .navbar .navbar-brand .logo-1 {
        height: 45px;
        max-height: 45px;
    }

    .navbar .navbar-brand .logo-2 {
        height: 65px;
        max-height: 65px;
    }
}

@media (max-width: 767.98px) {
    .navbar .navbar-brand .logo-1 {
        height: 35px;
        max-height: 35px;
    }

    .navbar .navbar-brand .logo-2 {
        height: 50px;
        max-height: 50px;
    }
}

@media (max-width: 575.98px) {
    .navbar .navbar-brand .logo-1 {
        height: 30px;
        max-height: 30px;
    }

    .navbar .navbar-brand .logo-2 {
        height: 45px;
        max-height: 45px;
    }

    .navbar .navbar-brand {
        flex-wrap: wrap;
    }
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
    transition: color 0.3s ease;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }

    .navbar.sticky-top {
        position: relative;
        top: 0;
    }
}

/* Header */
.header-bg {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/pakhal-img/7.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

/* Img Border */
.img-border {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.img-border::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 3rem;
    bottom: 3rem;
    border: 5px solid var(--primary);
}

.img-border img {
    position: absolute;
    top: 3rem;
    left: 3rem;
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
    object-fit: cover;
    transition: transform 0.5s ease;
}

.img-border:hover img {
    transform: scale(1.05);
}

/* Feedback Cards */
.feedback-card {
    transition: all 0.3s ease;
    height: 100%;
}

.feedback-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(48, 199, 124, 0.2);
}

/* Footer */
.footer {
    background: linear-gradient(rgba(0, 0, 0, .9), rgba(0, 0, 0, .9)), url(./img/footer.jpg) center center no-repeat;
    background-size: cover;
    background-color: var(--dark);
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: #FFFFFF;
    background-color: var(--primary);
    border-color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .header-bg h1 {
        font-size: 2rem;
    }
}


        
        
        /* Contact Items */
        .contact-item {
            transition: all 0.3s ease;
            border-radius: 10px;
        }
        
        .contact-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(48, 199, 124, 0.3);
            background: white !important;
        }
        
        .contact-item h5 {
            font-size: 1rem;
            line-height: 1.4;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }
        
        .contact-item .btn-lg-square {
            transition: all 0.3s ease;
        }
        
        .contact-item:hover .btn-lg-square {
            background: var(--primary) !important;
            transform: scale(1.1);
        }
        
        .contact-item:hover .btn-lg-square i {
            color: white !important;
        }
        
        @media (max-width: 991.98px) {
            .contact-item {
                padding: 1.5rem !important;
            }
            
            .contact-item h5 {
                font-size: 0.95rem;
            }
            
            .contact-item .ms-4 {
                margin-left: 1rem !important;
            }
        }
        
        @media (max-width: 767.98px) {
            .contact-item {
                padding: 1.25rem !important;
                flex-direction: column;
                text-align: center;
            }
            
            .contact-item .btn-lg-square {
                margin-bottom: 1rem;
            }
            
            .contact-item .ms-4 {
                margin-left: 0 !important;
            }
            
            .contact-item h5 {
                font-size: 0.9rem;
            }
        }
        
        @media (max-width: 575.98px) {
            .contact-item {
                padding: 1rem !important;
            }
            
            .contact-item h5 {
                font-size: 0.85rem;
                line-height: 1.3;
            }
            
            .contact-item p {
                font-size: 0.9rem;
            }
        }
        
        /* Form */
        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 0.2rem rgba(48, 199, 124, 0.25);
        }
        
        /* Map */
        .map-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        } */



/*** Facts & Visiting Hours ***/
.facts {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/pakhal-img/1.jpg) center center no-repeat;
    background-size: cover;
}

.visiting-hours {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/pakhal-img/2.jpeg) center center no-repeat;
    background-size: cover;
}

.visiting-hours .list-group-item {
    display: flex;
    justify-content: space-between;
    color: var(--light);
    background: rgba(0, 0, 0, .15);
    border-color: rgba(255, 255, 255, .15);
}

.visiting-hours .table {
    color: var(--light);
    background: rgba(0, 0, 0, .15);
}

.visiting-hours .table td {
    padding: .5rem 1rem;
    border-color: rgba(255, 255, 255, .15);
}

.visiting-hours .table tr:last-child td {
    border: none;
}


/*** Animal ***/
.animal-item {
    position: relative;
    display: block;
}

.animal-item .animal-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .7);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 100px !important;
    opacity: 0;
    transition: .5s;
}

.animal-item:hover .animal-text {
    opacity: 1;
    padding-bottom: 20px !important;
}


/*** Membership ***/
.membership-item {
    padding: 45px 30px;
    color: #FFFFFF;
    background: rgba(0, 0, 0, .7);
}

.membership-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.membership-item .display-1 {
    color: transparent;
    -webkit-text-stroke: 2px var(--primary);
}






/* Responsive Contact Section */
@media (max-width: 991.98px) {
    .contact-item {
        padding: 1.5rem !important;
    }
    
    .contact-item h5 {
        font-size: 0.95rem;
    }
    
    .contact-item .ms-4 {
        margin-left: 1rem !important;
    }
}

@media (max-width: 767.98px) {
    .contact-item {
        padding: 1.25rem !important;
        flex-direction: column;
        text-align: center;
    }
    
    .contact-item .btn-lg-square {
        margin-bottom: 1rem;
    }
    
    .contact-item .ms-4 {
        margin-left: 0 !important;
    }
    
    .contact-item h5 {
        font-size: 0.9rem;
    }
}

@media (max-width: 575.98px) {
    .contact-item {
        padding: 1rem !important;
    }
    
    .contact-item h5 {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .contact-item p {
        font-size: 0.9rem;
    }
}


/*** Footer ***/
.footer {
    background: linear-gradient(rgba(0, 0, 0, .92), rgba(0, 0, 0, .92)), url(../img/pakhal-img/1.jpg) center center no-repeat;
    background-size: cover;
}

.footer .btn-social {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all .4s ease;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.05);
    text-decoration: none;
}

.footer .btn-social:hover {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 8px;
    padding: 0;
    text-align: left;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: all .3s ease;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
    color: var(--primary);
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    padding-left: 8px;
    box-shadow: none;
}

.footer h5 {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--primary);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
    transition: color .3s ease;
}

.footer .copyright a:hover {
    color: var(--primary);
}
/* Default desktop size */
.logo-1, .logo-2 {
    height: 60px;
    width: auto;
}

/* Mobile responsive fix */
@media (max-width: 576px) {
    .logo-1, .logo-2 {
        height: 40px;
    }

    .brand-text div:first-child {
        font-size: 16px;
        line-height: 18px;
    }

    .brand-text div:last-child {
        font-size: 14px;
        line-height: 16px;
    }
}
