/* About page styles */

/* Page header */
.page-header {
    position: relative;
    padding: 8rem 0 4rem;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url('../images/resources/studio.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 4.5rem;
    text-align: center;
}

.header-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.header-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Page banner */
.page-banner {
    position: relative;
    height: 400px;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('../images/resources/studio.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.banner-content {
    max-width: 800px;
    padding: 0 20px;
}

.banner-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease;
}

.banner-content p {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.3s both;
}

/* Company intro */
.company-intro {
    padding: 100px 0;
    background-color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeIn 1s ease;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.intro-text {
    animation: slideInLeft 1s ease;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.intro-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    animation: slideInRight 1s ease;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.intro-image:hover img {
    transform: scale(1.05);
}

/* History */
.company-history {
    padding: 100px 0;
    background-color: #f8f9fa;
    position: relative;
}

.timeline {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: #ff69b4;
}

.timeline-item {
    margin-bottom: 100px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item .year {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff69b4;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    z-index: 1;
}

.timeline-item .content {
    width: 45%;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.timeline-item:nth-child(odd) .content {
    margin-left: auto;
}

.timeline-item .content:hover {
    transform: translateY(-5px);
}

.timeline-item .content h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.timeline-item .content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

/* Culture */
.company-culture {
    padding: 100px 0;
    background-color: #fff;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.culture-item {
    text-align: center;
    padding: 40px 30px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.culture-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.culture-item .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    color: #ff69b4;
}

.culture-item h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.culture-item p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

/* Animation keyframes */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .intro-content,
    .culture-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .page-banner {
        height: 300px;
    }

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

    .section-header h2 {
        font-size: 2rem;
    }

    .intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item .year {
        left: 20px;
        transform: none;
    }

    .timeline-item .content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
    }

    .culture-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .banner-content h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .timeline-item .content {
        padding: 20px;
    }
} 