:root {
    --primary-color: #02A3A7;
    --primary-hover: #12cdd6;
    --text-dark: #072b40;
    --text-light: #f7fdff;
    --bg-light: rgba(18,205,214,0.08);
    --bg-lighter: rgba(18,205,214,0.04);
    --shadow: rgba(18,205,214,0.15);
}
/* Hero Section */
.hero-section {
    color: var(--text-light);
    padding: 4rem 0 1rem 0;
    text-align: center;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    color: var(--text-emphasis);
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    color: var(--text-standard);
}


/* Divider line between sections */
.hero-divider {
    width: 30%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #cedade, transparent);
    opacity: 0.9;
    margin: 2.5rem auto 0 auto;
    border: none;
    box-shadow: 0 1px 8px rgba(0,0,0,0.04);
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Officers Section */
.officers-section {
    padding-top: 4rem;
    padding-bottom: 7rem;
}

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

.president-grid{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.officers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    margin-top: 2rem;
    gap: 2rem; 
    width: 100%;
    justify-items: center;
}

.officer-card {
    max-width: 400px;
    width: 100%;
    background: rgba(18,205,214,0.08);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(18,205,214,0.10);
    transition: all 0.3s ease;
    border: 2px solid rgba(18,205,214,0.15);
    position: relative;
    overflow: hidden;
}

/* .officer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-hover));
} */

.officer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow);
    border-color: var(--primary-color);
}

/* Animation delays for staggered effect */
.officer-card:nth-child(1) {
    animation: fadeInUp 0.6s ease 0.1s both;
}

.officer-card:nth-child(2) {
    animation: fadeInUp 0.6s ease 0.2s both;
}

.officer-card:nth-child(3) {
    animation: fadeInUp 0.6s ease 0.3s both;
}

.officer-card:nth-child(4) {
    animation: fadeInUp 0.6s ease 0.4s both;
}

.officer-card:nth-child(5) {
    animation: fadeInUp 0.6s ease 0.5s both;
}

.officer-card:nth-child(6) {
    animation: fadeInUp 0.6s ease 0.6s both;
}

.officer-card:nth-child(7) {
    animation: fadeInUp 0.6s ease 0.7s both;
}

.officer-card:nth-child(8) {
    animation: fadeInUp 0.6s ease 0.8s both;
}

.officer-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    background: none;
}

.officer-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    font-weight: 600;
    flex-shrink: 0;
}

.officer-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.officer-info {
    flex: 1;
}

.officer-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-emphasis);
    margin-bottom: 0.2rem;
}

.officer-title {
    font-size: 1rem;
    color: var(--primary-hover);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.officer-tenure {
    font-size: 0.9rem;
    color: var(--text-standard);
    font-style: italic;
}

.officer-bio {
    font-size: 1rem;
    color: var(--text-standard);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.officer-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-standard);
}

.detail-item i {
    color: var(--primary-color);
    width: 16px;
    text-align: center;
}

.officer-achievements {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.achievements-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-emphasis);
    margin-bottom: 0.5rem;
}

.achievements-text {
    font-size: 1rem;
    color: var(--text-standard);
    margin-bottom: 0.5rem;
}

.achievements-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.achievement-tag {
    background: rgba(18,205,214,0.15);
    color: var(--primary-hover);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.officer-fav-lang {
    margin-top: 1.2rem;
    margin-bottom: 1.2rem;
    line-height: 1.5; /* Increase line spacing */
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background: var(--backdrop);
    text-align: center;
}

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

.contact-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-emphasis);
    margin-bottom: 1rem;
}

.contact-description {
    font-size: 1.1rem;
    color: var(--text-standard);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--header);
    color: #072b40;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    transform: scale(1);
    box-shadow: 0 2px 8px var(--shadow);
}

.contact-button:hover {
    background: var(--primary-hover);
    color: #072b40;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--shadow);
}

.officer-bio a {
    color: var(--text-emphasis);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.officer-bio a:hover {
    color: var(--header);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-divider {
        width: 70%;
    }
    .officers-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }

    .about-section {
        padding: 2rem 1rem;
    }
    
    .about-section h1 {
        font-size: 2.2rem;
    }
    
    .about-section h2 {
        font-size: 1.6rem;
        margin: 2.5rem 0 1rem 0;
    }
    
    .about-section li {
        padding: 0.8rem 1rem;
        margin-bottom: 0.8rem;
    }

    .officer-header {
        flex-direction: column;
        text-align: center;
    }

    .officer-details {
        grid-template-columns: 1fr;
    }

   
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .about-section h1 {
        font-size: 1.8rem;
    }
    
    .about-section h2 {
        font-size: 1.4rem;
        padding-left: 0.8rem;
    }
    
    .about-section li {
        padding: 0.6rem 0.8rem;
    }
}