:root {
    --header-font: 'Soul Gaze BC', sans-serif;
    --content-font: 'Cassio BC', sans-serif;
    --background-color: #f0f2f5;
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --accent-color: #000;
}

.about-main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
    min-height: 80vh;
}

.hero-section {
    text-align: center;
    margin-bottom: 6rem;
    animation: fadeIn 0.8s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-style: italic;
}

.content-section {
    margin-bottom: 5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    animation: slideUp 0.8s ease-out forwards;
    opacity: 0;
}

.content-section:nth-child(2) {
    animation-delay: 0.2s;
}

.content-section:nth-child(3) {
    animation-delay: 0.4s;
}

.content-section:nth-child(4) {
    animation-delay: 0.6s;
}

.content-section:nth-child(5) {
    animation-delay: 0.8s;
}

@media (min-width: 768px) {
    .content-section {
        grid-template-columns: 300px 1fr;
        gap: 3rem;
        align-items: baseline;
    }
}

.section-title {
    font-size: 1.5rem;
    text-transform: uppercase;
    color: var(--accent-color);
    margin: 0;
    position: relative;
    padding-top: 0.5rem;
}

.section-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin: 0;
}

.bottom-section {
    display: flex;
    justify-content: space-between;
    margin-left: 1.5rem;
}

.bootom-content {
    position: relative;
    top: 5rem;
    font-style: var(--content-font);
}

.peek-c {
    width: 20rem;
    display: flex;
    position: relative;
    justify-content: end;
}

.peek-img {
    position: relative;
    width: 100%;
    top: -5rem;


}



@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media screen and (max-width: 768px) {
    .hero-title {
        font-size: 1.6rem;
        padding-top: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        padding-bottom: 8rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .section-text {
        font-size: 1rem;
    }

    .bottom-section {
        display: flex;
        justify-content: center;
        text-align: center;
        margin-left: 0px;
        margin-bottom: 5rem;

    }

    .bootom-content {
        top: 0;
    }

    .peek-c {
        display: none;
        width: 0;
    }

}