/* assets/css/engage.css */

:root {
    --primary-color: #293857;
    --secondary-color: #f4d03f;
    --accent-color: #2c3e50;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
	background:#eaeaea
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4)), url('../images/680ba2e8d5b476d5137cdf17.png') center/cover no-repeat;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    position: relative;
}

.hero-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Introduction Section */
.intro-section {
   
}

.section-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
}

.intro-text {
    color:var(--primary-color);
    font-size: 1.4rem;
    line-height: 1.8;
    margin: 0 auto;
}

/* Engagement Cards Section */
.engagement-cards {
   
}

.engagement-card {
    background: var(--primary-color);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    min-height: 600px;
}



.card-image {
   
   padding: 20px 20px 0 20px
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
	border-radius: 8px 8px 0 0
}



.card-content {
    padding: 2rem;
    color: var(--white);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.card-title {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    text-align: center;
}

.card-subtitle {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
    font-family: 'Source Sans Pro', sans-serif;
}

.card-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: center;
    flex-grow: 1;
}

.card-footer-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    text-align: center;
}

.btn-engage {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    margin-top: auto;
}

.btn-engage:hover {
    background-color: #f1c40f;
    border-color: #f1c40f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 208, 63, 0.4);
    color: var(--text-dark);
}

.btn-engage:focus {
    box-shadow: 0 0 0 0.25rem rgba(244, 208, 63, 0.5);
}

/* Third card special styling */
.engagement-card:nth-child(3) .card-description {
    text-align: left;
    padding-left: 1rem;
}

.engagement-card:nth-child(3) .card-description br {
    line-height: 2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .intro-text {
        font-size: 1.1rem;
    }
    
    .engagement-card {
        min-height: 500px;
        margin-bottom: 2rem;
    }
    
    .card-content {
        padding: 1.5rem;
    }
    
    .card-title {
        font-size: 1.5rem;
    }
    
    .card-subtitle {
        font-size: 1rem;
    }
    
    .card-description {
        font-size: 0.95rem;
    }
    
    
}

@media (max-width: 576px) {
    .hero-section {
        height: 300px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .engagement-card {
        min-height: 450px;
    }
    
    .card-content {
        padding: 1rem;
    }
    
    .card-title {
        font-size: 1.3rem;
    }
    
    .btn-engage {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }
}



.engagement-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Section reveal animation */
section {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

section.section-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-section {
    opacity: 1;
    transform: none;
}

/* Image loading animation */
img {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img.loaded {
    opacity: 1;
}

/* Focus states for accessibility */
.btn-engage:focus {
    outline: none;
}

/* Card content hover effects */




/* Staggered animation delay */
.engagement-card:nth-child(1) {
    animation-delay: 0.2s;
}

.engagement-card:nth-child(2) {
    animation-delay: 0.4s;
}

.engagement-card:nth-child(3) {
    animation-delay: 0.6s;
}