/* Mission Page Styles - Redesigned */

.mission-page {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #000000;
    position: relative;
}

.full-width-section {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    position: relative;
    overflow: hidden;
}

.hero-full {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    position: relative;
    background: #000000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: inline-block;
    padding: 1rem 2rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: #d4af37;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #d4af37, #f4e4bc, #d4af37);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.3));
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.320, 1);
}

.scroll-animate.fade-in-up {
    transform: translateY(60px);
}

.scroll-animate.is-animated {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate.delay-1 { transition-delay: 0.1s; }
.scroll-animate.delay-2 { transition-delay: 0.2s; }
.scroll-animate.delay-3 { transition-delay: 0.3s; }
.scroll-animate.delay-4 { transition-delay: 0.4s; }
.scroll-animate.delay-5 { transition-delay: 0.5s; }
.scroll-animate.delay-6 { transition-delay: 0.6s; }

/* Hero Image Section */
.mission-hero-image {
    position: relative;
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0 0 24px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.mission-hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 0;
}

.hero-overlay-box {
    background: rgba(0, 0, 0, 0.85);
    padding: 2rem 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(212, 175, 55, 0.5);
    backdrop-filter: blur(10px);
}

.hero-overlay-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-align: center;
    letter-spacing: -0.5px;
}

/* Content Wrapper */
.mission-content-wrapper {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 2rem 2rem;
    position: relative;
    z-index: 1;
    background-image: url('../assets/mission2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.mission-content-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
    pointer-events: none;
}

.mission-content-wrapper > * {
    position: relative;
    z-index: 1;
}

.mission-content-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Left Column */
.mission-left-column {
    padding-right: 2rem;
}

.section-heading {
    font-size: 1rem;
    font-weight: 500;
    color: #D4AF37;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.mission-main-title {
    font-size: 2rem;
    font-weight: 700;
    color: #D4AF37;
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
    white-space: nowrap;
}

.mission-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #ffffff;
    margin: 0 0 2.5rem 0;
}

.objectives-left {
    margin-top: 2rem;
}

/* Right Column */
.mission-right-column {
    padding-left: 2rem;
    padding-top: 12.4rem; /* Align with content in left column */
}

.objective-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.objective-item:last-child {
    margin-bottom: 0;
}

.objective-icon {
    font-size: 1.5rem;
    color: #D4AF37;
    min-width: 2rem;
    flex-shrink: 0;
    line-height: 1.2;
    margin-top: 0.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.objective-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke: #D4AF37;
}

.objective-details {
    flex: 1;
}

.objective-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}

.objective-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #ffffff;
    margin: 0;
}

.mission-closing {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.5);
}

.closing-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #ffffff;
    margin: 0;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .mission-content-grid {
        gap: 3rem;
    }
    
    .mission-left-column {
        padding-right: 1.5rem;
    }
    
    .mission-right-column {
        padding-left: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-badge {
        padding: 0.625rem 1rem;
        font-size: 0.65rem;
        margin-bottom: 1.25rem;
        letter-spacing: 0.05em;
        line-height: 1.3;
        max-width: 90%;
        text-align: center;
        word-wrap: break-word;
    }
    
    .mission-hero-image {
        height: 300px;
        border-radius: 0 0 16px 16px;
    }
    
    .hero-overlay-box {
        padding: 1.5rem 2rem;
    }
    
    .hero-overlay-title {
        font-size: 2rem;
    }
    
    .mission-content-wrapper {
        padding: 3rem 1.5rem 1rem 1.5rem;
    }
    
    .mission-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .mission-left-column {
        padding-right: 0;
    }
    
    .mission-right-column {
        padding-left: 0;
    }
    
    .mission-main-title {
        font-size: 1.75rem;
    }
    
    .objective-item {
        margin-bottom: 2rem;
    }
    
    .mission-closing {
        margin-bottom: 0;
        padding-bottom: 0;
    }
    
    .closing-text {
        margin-bottom: 0;
    }
    
    .mission-content-wrapper {
        padding-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 0.75rem;
    }
    
    .hero-badge {
        padding: 0.5rem 0.875rem;
        font-size: 0.6rem;
        margin-bottom: 1rem;
        letter-spacing: 0.03em;
        line-height: 1.3;
        max-width: 95%;
        word-wrap: break-word;
    }
    
    .mission-hero-image {
        height: 250px;
    }
    
    .hero-overlay-box {
        padding: 1.25rem 1.5rem;
        margin: 0 1rem;
    }
    
    .hero-overlay-title {
        font-size: 1.5rem;
    }
    
    .mission-content-wrapper {
        padding: 2rem 1rem 0.75rem 1rem;
    }
    
    .mission-main-title {
        font-size: 1.5rem;
        white-space: normal;
    }
    
    .objective-title {
        font-size: 1rem;
    }
    
    .objective-text {
        font-size: 0.875rem;
    }
    
    .mission-closing {
        margin-bottom: 0;
        padding-bottom: 0;
    }
    
    .closing-text {
        margin-bottom: 0;
    }
    
    .mission-content-wrapper {
        padding-bottom: 0.75rem;
    }
}
