/* About Page Styles - Aesthetic Design */

/* About Page Frame */
.about-page {
    height: 1080px;
    background-color: #ff2300;
    position: relative;
    overflow: hidden;
}

/* Logo */
.about-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 31px;
    width: 137px;
    height: 92px;
    z-index: 100;
}

.about-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Back Arrow - Thin style matching contact page */
.back-arrow-about {
    position: absolute;
    left: 7.5%;
    top: 77px;
    width: 60px;
    height: 20px;
    cursor: pointer;
    transition: opacity 0.3s, transform 0.3s;
    z-index: 100;
    display: flex;
    align-items: center;
}

.back-arrow-about svg {
    width: 100%;
    height: auto;
}

.back-arrow-about svg path {
    stroke: #000000;
    stroke-width: 3;
    fill: #000000;
}

.back-arrow-about:hover {
    opacity: 0.85;
    transform: translateX(-8px) scale(1.05);
}

/* About Content Container - Centered card */
.about-content-container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    max-width: 90%;
    background-color: rgba(35, 35, 35, 0.95);
    border-radius: 40px;
    padding: 60px 80px;
    z-index: 10;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* About Page Title */
.about-page-title {
    font-size: 96px;
    font-family: 'Helvetica Now MT Text', 'Helvetica', Arial, sans-serif;
    font-weight: 400;
    letter-spacing: -0.05em;
    line-height: 96px;
    color: #ffffff;
    margin-bottom: 40px;
    text-align: center;
}

/* About Description */
.about-description {
    margin-bottom: 50px;
}

.about-paragraph {
    font-size: 22px;
    font-family: 'Helvetica Now MT Text', 'Helvetica', Arial, sans-serif;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 36px;
    color: #ffffff;
    margin-bottom: 24px;
    text-align: center;
}

/* Values Section */
.values-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.values-title {
    font-size: 48px;
    font-family: 'Helvetica Now MT Text', 'Helvetica', Arial, sans-serif;
    font-weight: 400;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin-bottom: 40px;
    text-align: center;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.value-item h3 {
    font-size: 32px;
    font-family: 'Helvetica Now MT Text', 'Helvetica', Arial, sans-serif;
    font-weight: 400;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin-bottom: 15px;
}

.value-item p {
    font-size: 18px;
    font-family: 'Helvetica Now MT Text', 'Helvetica', Arial, sans-serif;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 28px;
    color: rgba(255, 255, 255, 0.8);
}

/* Cloud Images - Same style as contact page */
.cloud-img {
    position: absolute;
    pointer-events: none;
    z-index: 2;
    opacity: 0.9;
    will-change: transform;
}

/* Cloud Big 1 */
.cloud-big-1 {
    left: 150px;
    top: 100px;
    width: 386px;
    height: 179px;
    animation: float-slow-1 5s linear infinite alternate;
}

/* Cloud Big 2 */
.cloud-big-2 {
    left: 50px;
    top: 600px;
    width: 386px;
    height: 179px;
    animation: float-slow-2 6s linear infinite alternate;
}

/* Cloud Big 3 */
.cloud-big-3 {
    left: 850px;
    top: 200px;
    width: 386px;
    height: 179px;
    animation: float-slow-3 7s linear infinite alternate;
}

/* Cloud animations - straight horizontal movement */
@keyframes float-slow-1 {
    0% { transform: translateX(0); }
    100% { transform: translateX(40px); }
}

@keyframes float-slow-2 {
    0% { transform: translateX(0); }
    100% { transform: translateX(-30px); }
}

@keyframes float-slow-3 {
    0% { transform: translateX(0); }
    100% { transform: translateX(50px); }
}

/* Responsive Design */
@media (max-width: 1280px) {
    .about-content-container {
        width: 85%;
        padding: 50px 60px;
    }

    .about-page-title {
        font-size: 72px;
        line-height: 72px;
    }

    .values-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .about-page {
        width: 100%;
        height: auto;
        min-height: 100vh;
        overflow-x: hidden;
    }

    .about-logo {
        left: 20px;
        top: 20px;
        width: 60px;
        height: 40px;
    }

    .back-arrow-about {
        left: 20px;
        top: 70px;
        width: 50px;
        height: 18px;
    }

    .about-content-container {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: calc(100% - 40px);
        max-width: none;
        margin: 140px auto 40px;
        padding: 30px 25px;
        border-radius: 30px;
    }

    .about-page-title {
        font-size: 36px;
        line-height: 40px;
        margin-bottom: 25px;
    }

    .about-paragraph {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 20px;
    }

    .values-section {
        margin-top: 35px;
        padding-top: 30px;
    }

    .values-title {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .value-item {
        padding: 20px 15px;
        border-radius: 15px;
    }

    .value-item h3 {
        font-size: 22px;
    }

    .value-item p {
        font-size: 14px;
        line-height: 22px;
    }

    .cloud-img {
        opacity: 0.4;
    }

    .cloud-big-1,
    .cloud-big-2,
    .cloud-big-3 {
        width: 200px;
        height: auto;
    }
}
