/* Page-specific styles for about-us.html */
:root {
    --primary: #C8102E;
    --dark: #1a1a1a;
    --light: #f5f5f5;
    --accent: #FFD700;
    --text: #2d2d2d;
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--light);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

.hero-section {
    background: linear-gradient(135deg, var(--dark) 0%, #2d2d2d 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(200, 16, 46, 0.03) 10px,
            rgba(200, 16, 46, 0.03) 20px
        );
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 16, 46, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 8vw, 5rem);
    color: var(--light);
    letter-spacing: 3px;
    margin-bottom: 30px;
    text-transform: uppercase;
    animation: slideDown 0.8s ease-out;
    line-height: 1.1;
}

.title-accent {
    color: var(--primary);
    display: block;
    font-size: clamp(2rem, 5vw, 3rem);
    letter-spacing: 2px;
    margin-top: 10px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text {
    color: rgba(245, 245, 245, 0.9);
    font-size: 1.15rem;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-out 0.3s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-section {
    padding: 80px 20px;
    background: var(--light);
}

.statement {
    background: white;
    padding: 50px;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 60px;
    border-left: 6px solid var(--primary);
    animation: slideUp 0.8s ease-out 0.5s both;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.statement p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 20px;
}

.statement p:last-child {
    margin-bottom: 0;
}

.mission-block {
    background: var(--dark);
    color: var(--light);
    padding: 60px 50px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    animation: slideUp 0.8s ease-out 0.7s both;
}

.mission-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}

.mission-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-transform: uppercase;
    color: var(--light);
}

.mission-intro {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.mission-list {
    list-style: none;
    margin-bottom: 40px;
}

.mission-list li {
    font-size: 1.15rem;
    margin-bottom: 20px;
    padding-left: 40px;
    position: relative;
    animation: fadeInLeft 0.6s ease-out both;
}

.mission-list li:nth-child(1) { animation-delay: 0.9s; }
.mission-list li:nth-child(2) { animation-delay: 1s; }
.mission-list li:nth-child(3) { animation-delay: 1.1s; }

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mission-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 20px;
    height: 20px;
    background: var(--primary);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 10% 50%);
}

.belief-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.95;
}

.closing-text {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.9;
}

.welcome {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
    text-align: center;
    color: var(--light);
    text-transform: uppercase;
    padding: 20px;
    background: var(--primary);
    border-radius: 4px;
    animation: scaleIn 0.6s ease-out 1.3s both;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .statement,
    .mission-block {
        padding: 30px 25px;
    }

    .title {
        font-size: 2.5rem;
    }

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

    .hero-section {
        padding: 60px 20px;
    }

    .content-section {
        padding: 60px 20px;
    }
}
    