/* Custom Styles */
:root {
    --primary-color: #ffffff;
    --secondary-color: #4db6ac;
    --accent-color: #ff6f00;
    --dark-color: #263238;
    --light-color: #eceff1;
    --gradient-primary: linear-gradient(135deg, #ffa500 0%, #fa8408 100%);
}

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 40, 0, 0.5), rgba(0, 40, 0, 0.5)), url('../templateimages/deer-background.jpg');
    background-size: cover;
    background-position: center;
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
    color: white;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 4.5rem;
    font-weight: 800;
    color: #FFA500;
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-section .lead {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 500px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}
.navbar {
    transition: transform 0.3s ease-in-out;
}

.navbar.hide {
    transform: translateY(-100%);
}
.btn-primary {
    background-color: #FFA500;
    border-color: #FFA500;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    background-color: #FF8C00;
    border-color: #FF8C00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 2;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: 100%;
    height: 80px;
}

@media (max-width: 991px) {
    .hero-section h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 150px 0 80px;
    }
    
    .hero-section h1 {
        font-size: 2.8rem;
    }
}

/* News Ticker */
.news-ticker {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 0;
    font-weight: 500;
}

/* Exhibition Cards */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: white;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.card-body {
    padding: 2rem;
}

.card-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.time-badge {
    background: var(--gradient-primary);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    display: inline-block;
    margin-top: 15px;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Instagram Feed */
.instagram-feed {
    background-color: var(--light-color);
    position: relative;
}

.insta-img {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.insta-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.insta-img:hover::before {
    opacity: 1;
}

.insta-img img {
    transition: transform 0.5s ease;
}

.insta-img:hover img {
    transform: scale(1.1);
}

/* News & Events */
.news-events {
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
}

.news-events .card {
    height: 100%;
    border-bottom: 4px solid var(--primary-color);
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    box-shadow: 0 4px 15px rgba(0,121,107,0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,121,107,0.3);
    background: linear-gradient(135deg, #00695c 0%, #26a69a 100%);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--gradient-primary);
    border-color: transparent;
}

/* Footer */
footer {
    background: var(--dark-color);
    color: white;
    padding: 60px 0 30px;
}

footer h5 {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
}

.social-links a {
    font-size: 1.8rem;
    margin-right: 15px;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.social-links a:hover {
    opacity: 1;
    color: var(--accent-color) !important;
    transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 150px 0;
    }
    
    .hero-section h1 {
        font-size: 2.8rem;
    }
    
    .card {
        margin-bottom: 20px;
    }
}

/* About Page Styles */
.about-hero {
    min-height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../templateimages/about.jpeg') center/cover;
}

.vision-card {
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.vision-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.vision-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.vision-list li i {
    color: #FFA500;
    margin-right: 10px;
}

.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background: #FFA500;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    margin-bottom: 40px;
    position: relative;
}

.timeline-content {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    width: calc(50% - 30px);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-content h3 {
    color: #FFA500;
    margin-bottom: 5px;
}

.team-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-info h4 {
    margin-bottom: 5px;
    color: #333;
}

.team-info p {
    color: #666;
    margin: 0;
}

.stat-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.stat-card i {
    font-size: 2.5rem;
    color: #FFA500;
    margin-bottom: 15px;
}

.stat-card h3 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.stat-card p {
    color: #666;
    margin: 0;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 31px;
    }
    
    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 150px 0;
    }
    
    .hero-section h1 {
        font-size: 2.8rem;
    }
    
    .card {
        margin-bottom: 20px;
    }
}



/* Contact Page Styles */
.contact-hero {
    min-height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../templateimages/contact.jpeg') center/cover;
}

.contact-section {
    background-color: #f8f9fa;
}

.info-card {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.info-icon i {
    color: #fff;
    font-size: 20px;
}

.info-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.info-content p {
    margin-bottom: 0;
    color: #6c757d;
}

.contact-form-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.contact-form-card h3 {
    margin-bottom: 25px;
}

.form-control {
    border: 1px solid #dee2e6;
    padding: 12px;
    margin-bottom: 15px;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.map-section {
    margin-top: 50px;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 150px 0;
    }
    
    .hero-section h1 {
        font-size: 2.8rem;
    }
    
    .card {
        margin-bottom: 20px;
    }
}



/* Section Headers */
section h2 {
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 40px;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.hero-images {
    position: relative;
    height: 500px;
}

.animal-img {
    position: absolute;
    transition: all 0.3s ease;
}

.elephant {
    width: 45%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.tiger {
    width: 35%;
    bottom: 0;
    left: 20%;
    z-index: 2;
}

.panda {
    width: 30%;
    top: 10%;
    right: 10%;
    z-index: 1;
}

.kangaroo {
    width: 25%;
    top: 30%;
    left: 5%;
    z-index: 1;
}

.flamingo {
    width: 20%;
    bottom: 20%;
    right: 15%;
    z-index: 1;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: 100%;
    height: 80px;
}

@media (max-width: 991px) {
    .hero-section h1 {
        font-size: 3.5rem;
    }
    
    .hero-images {
        height: 400px;
        margin-top: 50px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 150px 0 80px;
    }
    
    .hero-section h1 {
        font-size: 2.8rem;
    }
    
    .hero-images {
        height: 300px;
    }
}

.hero-section {
    position: relative;
}

.hero-bottom-image {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

/* Contact Page Styles */
.contact-hero {
    min-height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../templateimages/contact.jpeg') center/cover;
}

.contact-section {
    background-color: #f8f9fa;
}

.info-card {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.info-icon i {
    color: #fff;
    font-size: 20px;
}

.info-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.info-content p {
    margin-bottom: 0;
    color: #6c757d;
}

.contact-form-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.contact-form-card h3 {
    margin-bottom: 25px;
}

.form-control {
    border: 1px solid #dee2e6;
    padding: 12px;
    margin-bottom: 15px;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.map-section {
    margin-top: 50px;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 150px 0;
    }
    
    .hero-section h1 {
        font-size: 2.8rem;
    }
    
    .card {
        margin-bottom: 20px;
    }
}
/* Animals Page Styles */
.animals-hero {
    min-height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../templateimages/animals.jpeg') center/cover;
}

.category-card {
    display: block;
    text-decoration: none;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.category-card h3 {
    color: #333;
    margin: 0;
}

.animal-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.animal-card:hover {
    transform: translateY(-10px);
}

.animal-info {
    padding: 20px;
}

.animal-info h3 {
    color: #333;
    margin-bottom: 10px;
}

.animal-info p {
    color: #666;
    margin-bottom: 10px;
}

.conservation-status {
    display: inline-block;
    padding: 5px 10px;
    background: #f8d7da;
    color: #721c24;
    border-radius: 5px;
    font-size: 0.9rem;
}

.animals-section {
    scroll-margin-top: 80px;
}