/* About Section */
.about {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
    background: #000000;
    color: white;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 70px 2rem 0 2rem; /* Align content just below fixed header */
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

/* About Text - Left Side */
.about-text {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-text.animate {
    opacity: 1;
    transform: translateX(0);
}

.about-intro,
.about-description,
.about-vision {
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-size: 1.1rem;
    color: #f8f9fa;
}

.about-text.animate .about-intro {
    animation: textRevealStagger 0.8s ease-out 0.2s forwards;
}

.about-text.animate .about-description {
    animation: textRevealStagger 0.8s ease-out 0.4s forwards;
}

.about-text.animate .about-vision {
    animation: textRevealStagger 0.8s ease-out 0.6s forwards;
}

.about-text.animate .about-tags {
    animation: textRevealStagger 0.8s ease-out 0.8s forwards;
}

@keyframes textRevealStagger {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-tags {
    font-weight: 400;
    color: #ff4444;
    opacity: 0;
    transform: translateY(20px);
}

/* About Image - Right Side */
.about-image {
    opacity: 0;
    transform: translateX(60px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-image.animate {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.about-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

.about-highlight {
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.about-title {
    font-weight: 300;
    line-height: 1.1;
}

