/* About Page Specific Styles */

/* About Page Base Styles */

/* Section Base Styles */
.header-poster-section {
    min-height: 100vh;
}

.details-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.details-section .poster-image {
    width: 100%;
    height: 100vh;
    object-fit: contain;
    background-color: #000000;
}

/* Poster Section */
.poster-section {
    width: 100%;
    height: calc(100vh - 60px);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: #000000;
    padding: 2% 0;
    box-sizing: border-box;
}

.poster-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #000000;
}


/* New Sections Styles */
.mission-section,
.history-section,
.team-section,
.contact-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

.content-wrapper {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.section-description {
    font-size: 1.4rem;
    line-height: 2;
    margin-bottom: 3rem;
    color: #666;
    font-weight: 500;
}

.mission-section .section-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 0 20px;
    font-weight: 400;
}

/* Mission Section */
.mission-section {
    background: linear-gradient(135deg, #4a5a9a 0%, #6b4a8a 100%);
    color: white;
    position: relative;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 0;
}

.mission-section .content-wrapper {
    position: relative;
    z-index: 1;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.mission-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.mission-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* History Section */
.history-section {
    background: #f8f9fa;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    position: relative;
    padding: 2rem;
    margin-bottom: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: left;
}

.timeline-item .year {
    display: inline-block;
    background: #667eea;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.timeline-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Team Section */
.team-section {
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    text-align: center;
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin: 0 auto 1rem;
}

.team-member h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* Contact Section */
.contact-section {
    background: #1a1a1a;
    color: white;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.social-link {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    border: 1px solid white;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: white;
    color: #1a1a1a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .poster-section {
        height: auto;
        flex-direction: column;
        padding: 0;
        gap: 0;
        align-items: center;
        justify-content: center;
    }
    
    .poster-section .poster-image {
        width: 100%;
        height: 50vh;
        object-fit: contain;
        display: block;
        margin: 0 auto;
    }
    
    .details-section {
        flex-direction: column;
        padding: 0;
        gap: 0;
        min-height: auto;
        align-items: center;
        justify-content: center;
    }
    
    .details-section .poster-image {
        width: 100%;
        height: 50vh;
        object-fit: contain;
        display: block;
        margin: 0 auto;
    }
}