/* Frontend Club Officers Page Styles */

:root {
    --otrc-navy: #212550;
    --otrc-gold: #d4af37;
    --otrc-light: #f8f9fa;
    --otrc-gray: #6c757d;
}

/* ===== Hero Section ===== */
.learn-hero {
    position: relative;
    min-height: 42vh;
    background: linear-gradient(135deg, var(--otrc-navy) 0%, #1a1c3d 100%);
    background-image: url('/images/frontend/slider/slider2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.learn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(33, 37, 80, 0.9) 0%, rgba(26, 28, 61, 0.85) 100%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    z-index: 2;
}

.learn-hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    color: white;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 3;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 120px;
}

/* ===== Intro Section ===== */
.intro-section {
    padding: 3rem 0;
    background: white;
}

.lead-text {
    font-size: 1.25rem;
    color: #1e293b;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.subtext {
    font-size: 1.1rem;
    color: var(--otrc-gray);
    line-height: 1.6;
}

.subtext i {
    color: var(--otrc-gold);
}

/* ===== Officers Sections ===== */
.officers-section {
    padding: 4rem 0;
    background: white;
    position: relative;
}

.officers-section.secondary-officers {
    background: #f8f9fa;
}

.section-header {
    text-align: center;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, var(--otrc-gold), #e5c157);
    color: var(--otrc-navy);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-title {
    color: var(--otrc-navy);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    color: var(--otrc-gray);
    font-size: 1.15rem;
    line-height: 1.6;
}

/* ===== Officer Cards ===== */
.officer-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

.officer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(33, 37, 80, 0.2);
    border-color: var(--otrc-gold);
}

.officer-card-secondary {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
}

.officer-card-secondary:hover {
    background: white;
    border-color: var(--otrc-navy);
}

/* Officer Photo */
.officer-photo-wrapper {
    margin-bottom: 1.5rem;
    position: relative;
}

.officer-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--otrc-gold);
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}

.officer-card:hover .officer-photo {
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

.officer-photo-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    border: 5px solid var(--otrc-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #adb5bd;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.officer-card:hover .officer-photo-placeholder {
    transform: scale(1.08);
    background: linear-gradient(135deg, #dee2e6 0%, #ced4da 100%);
}

/* Officer Info */
.officer-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.officer-position {
    color: var(--otrc-navy);
    font-weight: 700;
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.officer-name {
    color: #495057;
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.officer-vacant {
    color: #fd7e14;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.officer-description {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* ===== Get Involved Section ===== */
.get-involved-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--otrc-navy) 0%, #1a1c3d 100%);
    position: relative;
}

.get-involved-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3.5rem 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.get-involved-title {
    color: white;
    font-weight: 700;
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.get-involved-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.get-involved-subtext {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.vacant-positions-info {
    background: rgba(255, 193, 7, 0.15);
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    border-left: 4px solid var(--otrc-gold);
    color: white;
}

.vacant-positions-info strong {
    color: var(--otrc-gold);
}

.btn-volunteer-large {
    background: var(--otrc-gold);
    color: var(--otrc-navy);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
}

.btn-volunteer-large:hover {
    background: #e5c157;
    color: var(--otrc-navy);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.5);
}

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

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

    /* Remove curved wave on mobile */
    .hero-wave {
        display: none;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .officer-photo,
    .officer-photo-placeholder {
        width: 130px;
        height: 130px;
        font-size: 3.5rem;
    }

    .officer-position {
        font-size: 1.2rem;
    }

    .officer-name {
        font-size: 1.05rem;
    }

    .officer-description {
        font-size: 0.9rem;
    }

    .get-involved-card {
        padding: 2.5rem 2rem;
    }

    .get-involved-title {
        font-size: 1.75rem;
    }

    .get-involved-text,
    .get-involved-subtext {
        font-size: 1rem;
    }

    .btn-volunteer-large {
        width: 100%;
        margin-top: 1.5rem;
    }

    .intro-section {
        padding: 2rem 0;
    }

    .officers-section {
        padding: 3rem 0;
    }

    .lead-text {
        font-size: 1.1rem;
    }

    .subtext {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .officer-card {
        padding: 2rem 1.5rem;
    }

    .officer-photo,
    .officer-photo-placeholder {
        width: 120px;
        height: 120px;
        font-size: 3rem;
    }
}
