/* General Styles */
body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

/* Navbar Styles */
header {
    border-bottom: 1px solid #d6d6d6;
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 50;
    background: #fff;
}

.navbar-brand img {
    width: 150px;
}

.navbar-nav .nav-link {
    color: #fff;
    padding: 0.5rem 1rem;
}

.navbar-nav .nav-link:hover {
    color: #74c5b5;
}

/* Event Banner Zoom */
.event-banner-zoom-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    animation: fadeInCenter 1.2s ease-in-out;
    overflow: hidden;
}

.zoomable-banner {
    width: 100%;
    transition: transform 0.5s ease;
    cursor: zoom-in;
}

.zoomable-banner:hover {
    transform: scale(1.5);
    cursor: zoom-out;
}

/* Blog Content */
.blog-content {
    padding: 40px 20px;
}

h2 {
    font-size: 32px;
    color: #2d7a50;
    font-weight: bold;
}

h3 {
    font-size: 28px;
    color: #1a5276;
    margin-top: 20px;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
}

ul li {
    font-size: 18px;
    line-height: 1.8;
}

/* Footer Styles */
footer {
    width: 100%;
    z-index: 50;
    background: #fff;
    padding: 10px 0;
    border-top: 1px solid #d6d6d6;
}

footer ul {
    padding: 0;
    list-style: none;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li a {
    text-decoration: none;
}

footer ul li a:hover {
    text-decoration: underline;
}

/* Image Centering */
img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}

.animated-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #2d7a50;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
  }
  
  .section-title {
    color: #1a5276;
    margin-top: 2rem;
    font-weight: bold;
    font-size: 1.4rem;
    animation: fadeInUp 0.7s ease-out;
  }
  
  .animated-list li {
    animation: fadeInUp 1s ease-out;
    margin-bottom: 0.8rem;
  }
  
  .blog-content blockquote {
    font-style: italic;
    background-color: #eef6f4;
    padding: 1rem;
    border-left: 5px solid #74c5b5;
    margin: 1rem 0;
  }
  
  .highlight {
    background: #fff5d1;
    padding: 0.5rem;
    border-left: 4px solid #f39c12;
    display: block;
    margin: 1rem 0;
  }
  
  .ordered li {
    list-style-type: decimal;
    margin-left: 20px;
  }
  
  a {
    color: #2d7a50;
    font-weight: bold;
  }
  
  a:hover {
    text-decoration: underline;
  }
  

/* Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatIn {
    0% {
        transform: scale(0.98);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.blog-content {
    animation: fadeInUp 1.5s ease-out;
}

/* Ensure the image fills the card container */
.blog-card .card-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Optional: For a better visual effect, you can add border-radius or box-shadow */
.blog-card .card-image {
    overflow: hidden;
    border-radius: 8px;
}

/* Style the card text to ensure it looks good over the image */
.blog-card .card-content {
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent background */
    padding: 15px;
    border-radius: 8px;
    position: relative;
    z-index: 2;
}
