/* Committees Page - About Page Style Design */

/* Hero Section */
.committees-page-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: 
        radial-gradient(ellipse at top left, rgba(220, 20, 60, 0.02) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(178, 34, 34, 0.02) 0%, transparent 50%),
        linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    padding: 8rem 0 4rem;
}

/* Decorative Red Elements */
.committees-page-hero::before,
.committees-page-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
    z-index: 0;
}

.committees-page-hero::before {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-red) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation: floatRed 15s ease-in-out infinite;
}

.committees-page-hero::after {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--dark-red) 0%, transparent 70%);
    bottom: -80px;
    left: -80px;
    animation: floatRed 18s ease-in-out infinite reverse;
}

@keyframes floatRed {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

/* Red Accent Lines */
.committees-hero-red-accent {
    position: absolute;
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-red) 50%, transparent 100%);
    opacity: 0.3;
    z-index: 0;
}

.committees-hero-red-accent-1 {
    top: 20%;
    left: 10%;
    transform: rotate(-45deg);
    animation: accentPulse 3s ease-in-out infinite;
}

.committees-hero-red-accent-2 {
    bottom: 25%;
    right: 15%;
    transform: rotate(45deg);
    animation: accentPulse 3s ease-in-out infinite 1.5s;
}

@keyframes accentPulse {
    0%, 100% {
        opacity: 0.2;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.2);
    }
}

.committees-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.committees-floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.committees-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: floatShape 20s ease-in-out infinite;
}

.committees-shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.08) 0%, transparent 70%);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.committees-shape-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(178, 34, 34, 0.06) 0%, transparent 70%);
    bottom: 15%;
    right: 15%;
    animation-delay: -5s;
}

.committees-shape-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.06) 0%, transparent 70%);
    top: 50%;
    right: 10%;
    animation-delay: -10s;
}

.committees-shape-4 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(178, 34, 34, 0.06) 0%, transparent 70%);
    bottom: 20%;
    left: 20%;
    animation-delay: -15s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(50px, -50px) scale(1.1);
    }
    50% {
        transform: translate(-30px, 30px) scale(0.9);
    }
    75% {
        transform: translate(30px, 50px) scale(1.05);
    }
}

.committees-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.committees-hero-number {
    font-size: 8rem;
    font-weight: 900;
    color: rgba(220, 20, 60, 0.1);
    line-height: 1;
    margin-bottom: -2rem;
    letter-spacing: -0.05em;
}

.committees-hero-title {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.committees-title-line {
    display: block;
    background: linear-gradient(135deg, var(--primary-red) 0%, rgba(178, 34, 34, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleReveal 1s ease-out backwards;
}

.committees-title-line:nth-child(2) {
    animation-delay: 0.2s;
    color: var(--primary-red);
    -webkit-text-fill-color: var(--primary-red);
}

@keyframes titleReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.committees-hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.committees-hero-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.committees-scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, rgba(220, 20, 60, 0.8) 0%, transparent 100%);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scaleY(1);
    }
    50% {
        opacity: 1;
        transform: scaleY(1.2);
    }
}

/* Committees Grid Section */
.committees-page-grid {
    padding: 8rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    position: relative;
    overflow: hidden;
}

.committees-page-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(220, 20, 60, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(178, 34, 34, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Red Decorative Circles */
.committees-page-red-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(220, 20, 60, 0.2);
    z-index: 0;
    pointer-events: none;
}

.committees-page-red-circle-1 {
    width: 150px;
    height: 150px;
    top: 10%;
    right: 5%;
    animation: rotateCircle 20s linear infinite;
}

.committees-page-red-circle-2 {
    width: 100px;
    height: 100px;
    bottom: 15%;
    left: 8%;
    animation: rotateCircle 15s linear infinite reverse;
}

.committees-page-red-circle-3 {
    width: 80px;
    height: 80px;
    top: 50%;
    left: 3%;
    border-style: dashed;
    animation: rotateCircle 25s linear infinite;
}

@keyframes rotateCircle {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.committees-page-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.committees-page-label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.committees-page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.committees-page-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.committees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Committee Card Styles - Using existing styles from styles.css */
.committee-card {
    cursor: pointer;
}

/* Red dot accent on cards */
.committee-card::after {
    content: '';
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 12px;
    height: 12px;
    background: var(--primary-red);
    border-radius: 50%;
    opacity: 0.3;
    transition: all 0.4s ease;
    z-index: 10;
}

.committee-card:hover::after {
    opacity: 0.8;
    transform: scale(1.5);
    box-shadow: 0 0 15px rgba(220, 20, 60, 0.5);
}

/* Info Section */
.committees-info {
    padding: 8rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Red diagonal lines */
.committees-info-red-line {
    position: absolute;
    width: 2px;
    height: 200px;
    background: linear-gradient(180deg, transparent 0%, var(--primary-red) 50%, transparent 100%);
    opacity: 0.2;
    z-index: 0;
}

.committees-info-red-line-1 {
    top: 10%;
    left: 15%;
    transform: rotate(45deg);
}

.committees-info-red-line-2 {
    bottom: 20%;
    right: 12%;
    transform: rotate(-45deg);
}

.committees-info-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.committees-info-text {
    position: relative;
}

.committees-info-label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.committees-info-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.committees-info-paragraphs p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.committees-info-stats {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 250, 250, 0.98) 100%);
    border: 1px solid rgba(220, 20, 60, 0.2);
    border-radius: 24px;
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.1);
}

.info-stat-item {
    text-align: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(220, 20, 60, 0.1);
    transition: all 0.3s ease;
}

.info-stat-item:last-child {
    border-bottom: none;
}

.info-stat-item:hover {
    transform: translateY(-5px);
    background: rgba(220, 20, 60, 0.03);
    border-radius: 12px;
}

.info-stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-red);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.info-stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Section */
.committees-cta {
    padding: 8rem 0;
    background: 
        radial-gradient(ellipse at top left, rgba(220, 20, 60, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(178, 34, 34, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Red geometric shapes */
.committees-cta-red-shape {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.committees-cta-red-shape-1 {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 80px solid rgba(220, 20, 60, 0.1);
    top: 15%;
    left: 10%;
    animation: shapeRotate 12s linear infinite;
}

.committees-cta-red-shape-2 {
    width: 60px;
    height: 60px;
    background: rgba(220, 20, 60, 0.1);
    transform: rotate(45deg);
    bottom: 20%;
    right: 12%;
    animation: shapeRotate 15s linear infinite reverse;
}

@keyframes shapeRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.committees-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(220, 20, 60, 0.08) 0%, transparent 70%);
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.committees-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
}

.committees-cta-content::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-red) 50%, transparent 100%);
    z-index: -1;
}

.committees-cta-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.committees-cta-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.committees-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.committees-btn-cta {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-block;
    border: 2px solid transparent;
}

.committees-btn-cta-primary {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.4);
}

.committees-btn-cta-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.6);
}

.committees-btn-cta-secondary {
    background: transparent;
    color: var(--text-dark);
    border-color: rgba(220, 20, 60, 0.3);
}

.committees-btn-cta-secondary:hover {
    background: rgba(220, 20, 60, 0.05);
    border-color: rgba(220, 20, 60, 0.5);
    color: var(--primary-red);
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 1024px) {
    .committees-info-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .committees-info-stats {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .committees-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .committees-page-hero {
        min-height: 80vh;
        padding: 6rem 0 3rem;
    }
    
    .committees-hero-number {
        font-size: 5rem;
    }
    
    .committees-grid {
        grid-template-columns: 1fr;
    }
    
    .committees-info-stats {
        flex-direction: column;
    }
    
    .committees-cta-buttons {
        flex-direction: column;
    }
    
    .committees-btn-cta {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .committees-page-hero {
        padding: 5rem 0 2rem;
    }
    
    .committees-page-header {
        margin-bottom: 3rem;
    }
    
    .committees-info-content {
        padding: 0 1rem;
    }
}







