@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400&family=Montserrat:wght@900&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Josefin Sans', sans-serif;
    line-height: 1.6;
    height: 100%;
    min-height: 100dvh;
    color: var(--text-color);
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
}

:root {
    /* Color Variables */
    --primary-color: #1c6da3;
    --secondary-color: #3498db;
    --text-color: #333;
    --white: #fff;
    --light-bg: #f5f5f5;
    --shadow-color: rgba(0,0,0,0.1);
    
    /* Transition Variables */
    --transition-fast: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Float-in Animation Styles */
.animate-float-in {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-float-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Apply animation to specific sections */
.hero-section,
.about-section,
.mission-section,
.vision-section,
.leadership-profiles,
.contact-container,
.quotes-section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.hero-section.is-visible,
.about-section.is-visible,
.mission-section.is-visible,
.vision-section.is-visible,
.leadership-profiles.is-visible,
.contact-container.is-visible,
.quotes-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity var(--transition-slow);
}

.preloader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.preloader img {
    width: 100px;
    height: 100px;
    animation: rotate 2s linear infinite;
}

/* Navigation */
.nav {
    position: relative;
    width: 100%;
    height: auto;
    background: var(--white);
    z-index: 1000;
    box-shadow: 0 1px 2px var(--text-color);
}

.nav-container {
    max-width: 100%;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Right Section */
.nav-right {
    display: flex;
    align-items: right;
    gap: 2rem;
}

.login-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border: 1px solid var(--secondary-color);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.login-link:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.nav-logo {
    font-size: 2rem;
    font-weight: bold;
}

.nav-logo img {
    left: 0;
    height: auto;
    width: 80px;
}

.nav-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-link {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 900;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 4px var(--primary-color);
    background-color: var(--primary-color);
    color: var(--white);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Menu Styles */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--white);
    z-index: 2000;
    padding: 20px;
    overflow-y: auto;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu .close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu nav ul {
    list-style: none;
    margin-top: 50px;
}

.mobile-menu nav ul li {
    margin-bottom: 15px;
}

.mobile-menu nav ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        justify-content: space-between;
    }

    .nav-center, .nav-right {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .nav-logo img {
        width: 60px; /* Slightly smaller logo on mobile */
    }
}

/* Flash messages */
.flashes {
    margin:1rem 2rem;
}

.flash {
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 4px;
}

.flash-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.flash-error {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.flash-info {
    background-color: #d1ecf1;
    border-color: #bee5eb;
    color: #0c5460;
}

.flash-warning {
    background-color: #fff3cd;
    border-color: #ffeeba;
    color: #856404;
}

/* Authentication Forms */
.auth-section {
    padding: 5rem 0;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 6px 112px rgba(0, 0, 0, 0.4);
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.error-message {
    color: #ff3860;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.auth-link {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-color);
}

.auth-link a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../img/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100dvh;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: rgb(241, 179, 10);
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.hero p {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 400;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

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

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

.btn:hover {
    background-color: var(--white);
    color: var(--text-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px var(--secondary-color);
}

/* Responsive styles */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

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

    .hero-content {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

/* Introduction Section */
.intro {
    padding: 5rem 2rem;
    background: var(--white);
}

.intro img {
    width: 100%;
    height: 100%;
}

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

.intro-section-title {
    text-align: left;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Drive Section Styles */
.drive-section {
    padding: 4rem 0;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.drive-card {
    background: white;
    padding: 1rem;
    height: 420px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.drive-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.icon-container {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-container i {
    font-size: 2rem;
}

.icon-advocacy {
    color: rgba(241, 179, 10);
}

.icon-development {
    color: #2196f3;
}

.icon-legal {
    color: #7c4dff;
}

.icon-users {
    color: var(--text-color);
}

.icon-check {
    color: var(--secondary-color);
}

.icon-trophy {
    color: goldenrod;
}
+
.icon-brain {
    color: #2196f3;
}

.icon-battery-full {
    color: goldenrod;
}

.drive-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.drive-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .cards-container {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
    }

    .drive-card {
        padding: 1.5rem;
    }
}

/* Blog Section */
.blog-section {
    padding: 4rem 2rem;
  }
  
  /* Blog Grid Layout */
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Blog Card Styles */
  .blog-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }
  
  /* Blog Card Image */
  .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 1rem auto;
    border-radius: 2px;
}
  .blog-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
  }
  
  .blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .blog-card:hover .blog-card-image img {
    transform: scale(1.05);
  }
  
  .placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-bg);
    color: #6c757d;
  }
  
  .placeholder-image i {
    font-size: 3rem;
  }
  
  .blog-date {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 86, 179, 0.85);
    color: var(--white);
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    border-top-right-radius: 8px;
  }
  
  /* Blog Card Content */
  .blog-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }
  
  .blog-card-title {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    color: var(--text-color);
    line-height: 1.4;
  }
  
  .blog-author {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-color);
  }
  
  .blog-author i {
    margin-right: 0.5rem;
  }
  
  .blog-card-excerpt {
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
  }
  
  .read-more {
    display: inline-flex;
    align-items: center;
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
    margin-top: auto;
  }
  
  .read-more i {
    margin-left: 0.5rem;
    transition: transform 0.2s ease;
  }
  
  .read-more:hover {
    color: var(--primary-color);
  }
  
  .read-more:hover i {
    transform: translateX(3px);
  }
  
  /* Pagination Styles */
  .blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
  }
  
  .pagination-btn {
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 0.5rem 0.75rem;
    margin: 0 0.25rem;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  
  .pagination-btn:not([disabled]):hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
  }
  
  .pagination-btn[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
  }
  
  .pagination-info {
    margin: 0 1rem;
    color: #6c757d;
  }
  
  /* No Content State */
  .no-content {
    text-align: center;
    padding: 3rem 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    margin: 0 auto;
  }
  
  .no-content-icon {
    font-size: 3.5rem;
    color: #6c757d;
    margin-bottom: 1rem;
    display: block;
  }
  
  .no-content p {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
  }
  
  .no-content-subtext {
    color: #6c757d;
    font-size: 1rem;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .blog-grid {
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 1.5rem;
    }
    
    .blog-section {
      padding: 3rem 1rem;
    }
    
    .blog-section .section-title {
      font-size: 2rem;
    }
  }
  
  @media (max-width: 480px) {
    .blog-grid {
      grid-template-columns: 1fr;
    }
    
    .blog-card-image {
      height: 180px;
    }
  }
  
  /* Animation for cards */
  .blog-card {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Staggered animation for multiple cards */
  .blog-grid .blog-card:nth-child(1) { animation-delay: 0.1s; }
  .blog-grid .blog-card:nth-child(2) { animation-delay: 0.2s; }
  .blog-grid .blog-card:nth-child(3) { animation-delay: 0.3s; }
  .blog-grid .blog-card:nth-child(4) { animation-delay: 0.4s; }
  .blog-grid .blog-card:nth-child(5) { animation-delay: 0.5s; }
  .blog-grid .blog-card:nth-child(6) { animation-delay: 0.6s; }

/* Quotes Section */
.quotes-section {
    background-color: var(--white);
    padding: 2rem 0;
    text-align: center;
}

.quote-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

blockquote {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

cite {
    font-style: normal;
    font-size: 1rem;
    color: var(--primary-color);
}

/* About Hero Section */
.about-hero-section {
    position: relative;
    height: 95dvh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../img/about-hero.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: rgb(241, 179, 10);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-section .container {
    position: relative;
    z-index: 1;
}

.about-hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.about-hero-section p {
    font-size: 1.5rem;
    color: var(--white);
}

/* Content Sections */
.about-content {
    padding: 4rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    margin-bottom: 2rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Vision & Mission Sections */
.vision-section,
.mission-section {
    text-align: center;
}

.vision-section p,
.mission-section p {
    text-align: center;
    font-size: 1.25rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Section */
.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text p {
    text-align: left;
    margin-bottom: 1.5rem;
}

/* Goals Section */
.goals-section {
    position: relative;
    padding: 6rem 0;
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../img/cta.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    text-align: center;
}

.goals-section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: rgb(241, 179, 10);
}
.goals-content {
    position: relative;
    z-index: 1;
}

.goals-content p {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        height: 50vh;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.2rem;
    }

    h2 {
        font-size: 2rem;
    }

    .vision-section p,
    .mission-section p {
        font-size: 1.1rem;
    }

    .about-text {
        font-size: 1rem;
    }

    .goals-content p {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .container {
        padding: 0 1rem;
    }
}

/* Goals Section */
.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.goal-item {
    background: var(--light-bg);
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    transition: transform var(--transition-fast);
}

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

.goal-item h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

/* Impact Stats */
.impact-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Leadership styles */
.leadership-hero-section {
    position: relative;
    height: 80dvh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../img/leadership.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: rgb(241, 179, 10);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.leadership-hero-section .container {
    position: relative;
    z-index: 1;
}

.leadership-hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.leadership-hero-section p {
    font-size: 1.5rem;
    color: var(--white);
}

/* Leadership Profiles Section */
.leadership-profiles {
    padding: 4rem 0;
    background-color: var(--white);
}

/* Featured Profile Card (Secretary General) */
.profile-card.featured {
    background: white;
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

@media (min-width: 768px) {
    .profile-card.featured {
        flex-direction: row;
    }
}

.profile-image {
    flex: 1;
    min-height: 300px;
    position: relative;
}

.profile-image img {
    width: 100%;
    height: auto;
}

.profile-content {
    flex: 2;
    padding: 2rem;
}

.profile-content h2 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.profile-details {
    color: var(--text-color);
}

.profile-details .name {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

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

.profile-details a:hover {
    text-decoration: underline;
}

.profile-details h3 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin: 1.5rem 0 0.5rem;
}

.profile-details p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .leadership-hero h1 {
        font-size: 2rem;
    }

    .leadership-hero p {
        font-size: 1rem;
    }

    .profile-content h2 {
        font-size: 1.5rem;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
    }
}

/* Join us style */
.join-hero-section {
    position: relative;
    height: 80dvh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../img/join.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: rgb(241, 179, 10);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.join-hero-section .container {
    position: relative;
    z-index: 1;
}

.join-hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.join-hero-section p {
    font-size: 1.5rem;
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .dashboard-sidebar {
        width: 240px;
    }
    
    .dashboard-main {
        margin-left: 240px;
    }
}

@media (max-width: 768px) {
    .dashboard-container {
        flex-direction: column;
    }
    
    .dashboard-sidebar {
        width: 100%;
        height: auto;
        position: relative;
    }
    
    .dashboard-main {
        margin-left: 0;
    }
    
    .status-cards {
        grid-template-columns: 1fr;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Hero Styles */
.contact-hero {
    position: relative;
    height: 70dvh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../img/contact.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: rgb(241, 179, 10);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-hero p {
    color: var(--white);
    font-size: 1.2rem;
    opacity: 0.9;
}


/* Contact */
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.contact-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .contact-card {
        flex-direction: row;
    }
}

.contact-info {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 2rem;
}

@media (min-width: 768px) {
    .contact-info {
        flex: 1;
    }
}

.contact-info h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.info-item i {
    margin-right: 0.5rem;
}

.contact-form {
    padding: 2rem;
}

@media (min-width: 768px) {
    .contact-form {
        flex: 2;
    }
}

.contact-form-group {
    margin-bottom: 1.5rem;
}

.contac-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.contact-form-group input,
.contact-form-group textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.contact-form-group textarea {
    resize: vertical;
}

/* Footer */
/* Footer Content */
.footer-content {
    padding: 4rem 0;
    background-color: var(--primary-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-grid {
    display: flex;
    justify-content: center;
    gap: 8rem;
    flex-wrap: wrap;
}

.footer-column {
    flex: 0 1 auto;
    min-width: 200px;
}

.footer-column h3 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.social-links li a {
    color: var(--white);
    display: flex;
    text-decoration: none;
    align-items: center;
    gap: 0.5rem;
}

.contact-info li {
    color: var(--white);
}

.contact-info li span {
    color: var(--white);
    margin-right: 0.5rem;
}

address {
    color: var(--white);
    font-style: normal;
    line-height: 1.6;
}

/* Footer Bottom */
.footer-bottom {
    padding: 1.5rem 0;
    background-color: var(--text-color);
    text-align: center;
}

.footer-bottom p {
    color: var(--white);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quote-section blockquote {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .intro-content,
    .event-item {
        grid-template-columns: 1fr;
    }

    .event-item:nth-child(even) {
        direction: ltr;
    }

    .nav-links {
        display: none;
    }
}