/* ===== ABOUT PAGE STYLES ===== */

/* Header section */
.header {
    position: relative;
    min-height: 60vh;
    padding-top: var(--nav-height);
}

.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 20, 40, 0.85) 0%, rgba(0, 100, 180, 0.5) 50%, rgba(0, 180, 255, 0.2) 100%);
    z-index: 1;
}

.header-content {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    max-width: 1100px;
    padding: 0 80px 80px;
    width: 100%;
}

.header-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 10px;
    line-height: 1.1;
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

/* Description section */
.description {
    padding: 100px 80px;
    background: var(--color-white);
}

.description-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: start;
}

.description-image {
    width: 350px;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.description-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.description-text h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 25px;
    letter-spacing: -0.3px;
}

.description-text p {
    max-width: 500px;
    font-size: 1.2rem;
    color: var(--color-text);
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .header {
        min-height: 50vh;
    }

    .header-content {
        padding: 0 30px 60px;
    }

    .header-content h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .description {
        padding: 80px 30px;
    }

    .description-content {
        grid-template-columns: 280px 1fr;
    }

    .description-image {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: 0 30px 40px;
    }

    .header-content h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 0.9rem;
    }

    .description-content {
        grid-template-columns: 1fr;
    }

    .description-image {
        width: 100%;
        max-width: 350px;
        height: auto;
        aspect-ratio: 1;
        margin: 0 auto;
    }
}