


/*  Root */
:root {
    --zoo-green: #2E7D32;
    --zoo-brown: #6D4C41;
}





/* Top Offer Bar  */
.offer-bar {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}
.offer-text {
    color: #2E7D32;
    font-weight: 500;
}
.close-offer {
    color: #6c757d;
    cursor: pointer;
    transition: color 0.2s;
}
.close-offer:hover {
    color: #2E7D32;
}





/* Carousel Styles */
.carousel-item img {
    object-fit: cover;
    width: 100%;
    height: 50vh; 
}

.carousel-caption {
    top: 50%;
    transform: translateY(-50%);
    bottom: initial;
    left: 5%;
    right: 5%;
    width: 90%;
}
/* Responsive adjustments */

@media (min-width: 576px) {
    .carousel-item img {
        height: 60vh;
    }
    
    .carousel-caption {
        left: 10%;
        right: 10%;
        width: 80%;
    }
}

@media (min-width: 768px) {
    .carousel-item img {
        height: 70vh;
    }
    
    .btn-lg-md {
        padding: 0.5rem 1rem;
        font-size: 1.25rem;
    }
    
    .h1-md {
        font-size: 2.5rem;
    }
}

@media (min-width: 992px) {
    .carousel-item img {
        height: 80vh;
    }
    
    .carousel-caption {
        left: 15%;
        right: 15%;
        width: 70%;
    }
}

.btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}





/*  Animals */
.animal-section {
    background-color: white;
    padding: 4rem 0;
}
.section-title {
    color: var(--zoo-green);
    position: relative;
    display: inline-block;
}
.section-title:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background: var(--zoo-brown);
    bottom: -10px;
    left: 25%;
}
.animal-card {
    border-radius: 15px;
    overflow: hidden;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    background: linear-gradient(to bottom, white 70%, #f5f5f5 100%);
}
.animal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(46, 125, 50, 0.2);
}
.animal-img {
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.animal-card:hover .animal-img {
    transform: scale(1.05);
}
.animal-name {
    color: var(--zoo-brown);
    font-weight: 700;
}
.habitat {
    color: var(--zoo-green);
    font-style: italic;
}
.btn-zoo {
    background-color: var(--zoo-green);
    color: white;
    border-radius: 50px;
    padding: 8px 20px;
    transition: all 0.3s;
}
.btn-zoo:hover {
    background-color: var(--zoo-brown);
    color: white;
}
.conservation {
    background-color: rgba(46, 125, 50, 0.1);
    border-left: 4px solid var(--zoo-green);
}





/* Events */
.events-section .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
}
.events-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(46, 125, 50, 0.15) !important;
}
.events-section .form-select:focus {
    border-color: #2E7D32;
    box-shadow: 0 0 0 0.25rem rgba(46, 125, 50, 0.25);
}





/* Footer */
.object-fit-cover {
    object-fit: cover;
}
.footer a:hover {
    color: #2E7D32 !important;
    text-decoration: underline !important;
}
.badge {
    border: 1px solid rgba(46, 125, 50, 0.3);
}






/* Memebership */
.membership-section .card {
    transition: all 0.3s ease;
    border-radius: 10px;
}
.membership-section .card:hover:not(:nth-child(2)) {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(46, 125, 50, 0.15) !important;
}
.membership-section .card:nth-child(2):hover {
    transform: scale(1.06);
}
.membership-section .list-unstyled li {
    padding: 4px 0;
}

