/* 
 * Main Stylesheet for Kawsar Mahamud's Political Website
 * 
 * This CSS file contains all the styling for the website,
 * organized by sections for better maintainability.
 */

/* ---------- GENERAL STYLES ---------- */
:root {
    --primary-color: #0A5688;  /* Deep blue - main color */
    --secondary-color: #D22630;  /* Red - accent color */
    --light-color: #F4F4F4;  /* Light gray for backgrounds */
    --dark-color: #333333;  /* Dark gray/black for text */
    --success-color: #28A745;  /* Green for success messages */
    --warning-color: #FFC107;  /* Yellow for warnings */
    --info-color: #17A2B8;  /* Cyan for information */
    --danger-color: #DC3545;  /* Red for errors */
    --gray-color: #6C757D;  /* Medium gray for secondary text */
    --border-color: #DEE2E6;  /* Light gray for borders */
    --container-width: 1140px;  /* Maximum container width */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #FFFFFF;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #084570;
    color: white;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    line-height: 1.2;
}

p {
    margin-bottom: 15px;
}

section {
    padding: 60px 0;
}

/* ---------- HEADER STYLES ---------- */
header {
    background-color: white;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    margin-bottom: 0;
    color: var(--primary-color);
}

.logo p {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin: 0;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    padding: 5px 10px;
    color: var(--dark-color);
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

nav ul li a:hover,
nav ul li.active a {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

/* ---------- BANNER STYLES ---------- */
.banner {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.banner h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.banner p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

.page-banner {
    background-color: var(--primary-color);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.page-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-banner p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* ---------- SLIDESHOW STYLES ---------- */
.slideshow {
    background-color: var(--light-color);
    padding: 60px 0;
}

.slideshow h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.slideshow-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.slide {
    display: none;
    width: 100%;
    text-align: center;
    animation-name: fade;
    animation-duration: 1.5s;
}

.slide img {
    margin: 0 auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.caption {
    margin-top: 15px;
    font-style: italic;
    color: var(--gray-color);
}

.navigation-dots {
    text-align: center;
    padding: 20px 0;
}

.dot {
    display: inline-block;
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active, .dot:hover {
    background-color: var(--primary-color);
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}

/* ---------- MISSION SECTION STYLES ---------- */
.mission {
    padding: 60px 0;
}

.mission h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.mission-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.mission-text {
    flex: 1;
}

.mission-image {
    flex: 1;
}

.mission-image img {
    border-radius: 8px;
}

/* ---------- LATEST NEWS STYLES ---------- */
.latest-news {
    background-color: var(--light-color);
    padding: 60px 0;
}

.latest-news h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.news-item {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
}

.news-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-item h3 {
    padding: 15px 15px 0;
    color: var(--primary-color);
}

.news-item p {
    padding: 0 15px;
}

.read-more {
    display: inline-block;
    margin: 10px 15px 15px;
    font-weight: 500;
    color: var(--primary-color);
}

/* ---------- UPCOMING EVENTS STYLES ---------- */
.upcoming-events {
    padding: 60px 0;
}

.upcoming-events h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.events-list {
    max-width: 800px;
    margin: 0 auto;
}

.event {
    display: flex;
    margin-bottom: 30px;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.event-date {
    background-color: var(--primary-color);
    color: white;
    padding: 20px;
    text-align: center;
    min-width: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-date .day {
    font-size: 1.8rem;
    font-weight: bold;
}

.event-date .month {
    font-size: 1rem;
}

.event-details {
    padding: 20px;
}

.event-details h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.event-details p {
    margin-bottom: 5px;
    color: var(--gray-color);
}

/* ---------- BLOG PAGE STYLES ---------- */
.blog-content {
    padding: 60px 0;
}

.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.blog-post {
    display: flex;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.post-image {
    flex: 0 0 35%;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content {
    flex: 1;
    padding: 25px;
}

.post-date {
    color: var(--gray-color);
    margin-bottom: 10px;
}

.post-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 15px;
    color: var(--gray-color);
}

.post-meta span i {
    margin-right: 5px;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.pagination a {
    padding: 8px 12px;
    margin: 0 5px;
    border-radius: 4px;
    color: var(--primary-color);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.pagination a.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.pagination a:hover:not(.active) {
    background-color: var(--light-color);
}

.pagination .next {
    margin-left: 10px;
}

.subscribe {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 40px 0;
}

.subscribe h3 {
    margin-bottom: 15px;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 4px;
}

/* ---------- POLITICAL ACTIVITIES STYLES ---------- */
.activities-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.activities-section {
    margin-bottom: 60px;
}

.activities-section h3 {
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
}

.activity-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
}

.gallery-caption h4 {
    margin-bottom: 5px;
}

.gallery-caption p {
    margin-bottom: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.activity-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    align-items: flex-start;
}

.activity-image {
    flex: 0 0 35%;
}

.activity-image img {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.activity-content {
    flex: 1;
}

.activity-content h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.activity-content ul {
    padding-left: 20px;
    margin-top: 10px;
}

.activity-content ul li {
    list-style-type: disc;
    margin-bottom: 5px;
}

.policy-initiatives {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.policy-item {
    background-color: var(--light-color);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.policy-item:hover {
    transform: translateY(-5px);
}

.policy-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.policy-item h4 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 30px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-item h4 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.get-involved {
    background-color: var(--light-color);
    text-align: center;
    padding: 60px 0;
}

.involvement-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.involvement-item {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.involvement-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.involvement-item h4 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.involvement-item p {
    margin-bottom: 20px;
}

/* ---------- ABOUT PAGE STYLES ---------- */
.about-profile {
    padding: 60px 0;
}

.profile-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.profile-image {
    flex: 0 0 35%;
}

.profile-image img {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.profile-details {
    flex: 1;
}

.profile-details h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 5px;
}

.designation {
    color: var(--gray-color);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.bio {
    margin-bottom: 30px;
}

.key-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-item {
    display: flex;
    gap: 15px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.info-content h4 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.info-content p {
    margin-bottom: 5px;
}

.vision-mission {
    background-color: var(--light-color);
    padding: 60px 0;
}

.vision-mission-content {
    display: flex;
    gap: 40px;
}

.vision, .mission {
    flex: 1;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.vision h3, .mission h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.vision ul, .mission ul {
    padding-left: 20px;
}

.vision ul li, .mission ul li {
    list-style-type: disc;
    margin-bottom: 10px;
}

.core-values {
    padding: 60px 0;
    text-align: center;
}

.core-values h3 {
    margin-bottom: 40px;
    color: var(--primary-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.value-item {
    background-color: var(--light-color);
    padding: 25px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-item h4 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.leadership-approach {
    background-color: var(--light-color);
    padding: 60px 0;
}

.leadership-approach h3 {
    margin-bottom: 40px;
    color: var(--primary-color);
    text-align: center;
}

.approach-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.approach-text {
    flex: 1;
}

.approach-image {
    flex: 0 0 40%;
}

.approach-image img {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.personal-interests {
    padding: 60px 0;
    text-align: center;
}

.personal-interests h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.personal-interests > p {
    max-width: 800px;
    margin: 0 auto 40px;
}

.interests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.interest-item {
    background-color: var(--light-color);
    padding: 25px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.interest-item:hover {
    transform: translateY(-5px);
}

.interest-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.interest-item h4 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.cta {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 60px 0;
}

.cta h3 {
    margin-bottom: 15px;
}

.cta p {
    max-width: 800px;
    margin: 0 auto 30px;
}

.cta .btn {
    background-color: white;
    color: var(--primary-color);
}

.cta .btn:hover {
    background-color: var(--light-color);
}

/* ---------- HISTORY PAGE STYLES ---------- */
.timeline {
    padding: 60px 0;
}

.timeline-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.timeline-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.timeline-container::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
    margin-bottom: 50px;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-date {
    position: absolute;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 1;
    z-index: 1;
}

.timeline-item:nth-child(odd) .timeline-date {
    right: -40px;
}

.timeline-item:nth-child(even) .timeline-date {
    left: -40px;
}

.timeline-content {
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.timeline-image {
    margin-top: 20px;
}

.timeline-image img {
    border-radius: 8px;
}

.key-achievements {
    background-color: var(--light-color);
    padding: 60px 0;
}

.key-achievements h3 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.achievement-item {
    display: flex;
    gap: 20px;
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.achievement-icon {
    flex: 0 0 50px;
}

.achievement-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.achievement-content h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.historical-context {
    padding: 60px 0;
}

.historical-context h3 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.context-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.context-text {
    flex: 3;
}

.context-image {
    flex: 2;
}

.context-image img {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.quotes {
    background-color: var(--light-color);
    padding: 60px 0;
}

.quotes h3 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.quotes-container {
    max-width: 800px;
    margin: 0 auto;
}

.quote {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    position: relative;
}

.quote-mark {
    position: absolute;
    top: 15px;
    left: 15px;
    color: #f5f5f5;
    font-size: 3rem;
    z-index: 0;
}

.quote p {
    position: relative;
    z-index: 1;
    font-style: italic;
}

.quote-attribution {
    text-align: right;
    font-weight: 500;
    color: var(--gray-color);
}

/* ---------- CONTACT PAGE STYLES ---------- */
.contact-info {
    padding: 60px 0;
}

.contact-grid {
    display: flex;
    gap: 40px;
}

.contact-details {
    flex: 1;
}

.contact-form-container {
    flex: 1;
}

.contact-details h3,
.contact-form-container h3 {
    margin-bottom: 25px;
    color: var(--primary-color);
}

.contact-details > p {
    margin-bottom: 30px;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.contact-details .info-item {
    display: flex;
    gap: 15px;
}

.contact-details .info-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-details .info-item h4 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.social-connect h4 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--secondary-color);
}

.contact-form {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group .required {
    color: var(--secondary-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
}

.checkbox-group label {
    margin-bottom: 0;
}

.form-submit {
    text-align: right;
}

.map-section {
    background-color: var(--light-color);
    padding: 60px 0;
}

.map-section h3 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.map-container {
    max-width: 900px;
    margin: 0 auto;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--gray-color);
}

.faq {
    padding: 60px 0;
}

.faq h3 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background-color: var(--light-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h4 {
    margin-bottom: 0;
    color: var(--primary-color);
}

.faq-toggle {
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

.office-hours {
    background-color: var(--light-color);
    padding: 60px 0;
}

.office-hours h3 {
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.office-hours > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
}

.schedule-table {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
}

.schedule-table table {
    width: 100%;
    border-collapse: collapse;
}

.schedule-table th,
.schedule-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.schedule-table th {
    background-color: var(--primary-color);
    color: white;
}

.schedule-table tr:nth-child(even) {
    background-color: rgba(10, 86, 136, 0.05);
}

.schedule-note {
    text-align: center;
    margin-top: 20px;
    font-style: italic;
    color: var(--gray-color);
}

/* ---------- FOOTER STYLES ---------- */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    color: white;
    margin-bottom: 10px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links h4,
.footer-social h4,
.footer-contact h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: white;
}

.footer-social .social-icons {
    gap: 10px;
}

.footer-social .social-icons a {
    background-color: rgba(255, 255, 255, 0.1);
}

.footer-social .social-icons a:hover {
    background-color: var(--secondary-color);
}

.footer-contact p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
}

/* ---------- RESPONSIVE STYLES ---------- */
@media (max-width: 992px) {
    .profile-content,
    .mission-content,
    .context-content,
    .approach-content,
    .contact-grid,
    .vision-mission-content {
        flex-direction: column;
    }

    .profile-image,
    .mission-image,
    .context-image,
    .approach-image {
        margin-bottom: 30px;
    }

    .activity-item {
        flex-direction: column;
    }

    .activity-image {
        margin-bottom: 20px;
    }

    .timeline-container::after {
        left: 40px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 80px;
        padding-right: 0;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-item:nth-child(odd) .timeline-date,
    .timeline-item:nth-child(even) .timeline-date {
        left: 0;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }

    .logo {
        margin-bottom: 15px;
    }

    nav ul {
        justify-content: center;
        flex-wrap: wrap;
    }

    nav ul li {
        margin: 5px 10px;
    }

    .banner h2 {
        font-size: 2rem;
    }

    .banner p {
        font-size: 1rem;
    }

    .page-banner h2 {
        font-size: 2rem;
    }

    .blog-post {
        flex-direction: column;
    }

    .post-image {
        flex: none;
    }
}

@media (max-width: 576px) {
    section {
        padding: 40px 0;
    }

    .news-grid,
    .activity-gallery,
    .policy-initiatives,
    .involvement-options,
    .values-grid,
    .interests-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
}
