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

/* About Header */
.about-header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/about/header-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    position: relative;
}

.about-header .page-title,
.about-header .breadcrumb,
.about-header .breadcrumb a,
.about-header .breadcrumb .current {
    color: white;
}

.about-header .breadcrumb .separator {
    color: rgba(255, 255, 255, 0.7);
}

/* Brand Story Section */
.brand-story {
    padding: 100px 0;
    background-color: var(--secondary);
}

.story-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
}

.story-text {
    order: 1;
}

.story-image {
    order: 2;
}

.story-paragraph {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-color);
}

.story-paragraph:last-child {
    margin-bottom: 0;
}

.rounded-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
}

/* Values Section */
.our-values {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-item {
    background-color: var(--secondary);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.value-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(76, 175, 80, 0.1);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    transition: var(--transition);
}

.value-item:hover .value-icon {
    background-color: var(--accent);
    color: white;
    transform: rotateY(180deg);
}

.value-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.value-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
}

/* Founders Section */
.founders {
    padding: 100px 0;
    background-color: var(--secondary);
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.founder-card {
    background-color: var(--light-gray);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.founder-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.founder-image {
    width: 100%;
    height:65vh;
    overflow: hidden;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.founder-info {
    padding: 30px;
}

.founder-name {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
}

.founder-role {
    font-size: 16px;
    color: var(--accent);
    margin-bottom: 15px;
}

.founder-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 20px;
}

.founder-social {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 36px;
    height: 36px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--accent);
    color: white;
    transform: translateY(-3px);
}

/* Studio Section */
.our-studio {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.studio-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
}

.studio-images {
    order: 2;
}

.studio-text {
    order: 1;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
}

.grid-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-md);
    transition: var(--transition);
}

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

.studio-paragraph {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-color);
}

.studio-info {
    margin: 30px 0;
    list-style: none;
}

.studio-info li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
}

.studio-info li i {
    margin-left: 15px;
    color: var(--accent);
    width: 20px;
    text-align: center;
}

/* Process Section */
.our-process {
    padding: 100px 0;
    background-color: var(--secondary);
}

.process-steps {
    margin-top: 50px;
}

.process-step {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: 30px;
    height: calc(100% + 40px);
    width: 1px;
    background-color: var(--accent-light);
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 600;
    margin-left: 30px;
    z-index: 1;
}

.step-content {
    padding-top: 5px;
}

.step-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.step-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-color);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/about/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-text {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .story-content,
    .studio-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-text,
    .studio-text {
        order: 2;
    }
    
    .story-image,
    .studio-images {
        order: 1;
    }
    
    .cta-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    }
    
    .founders-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step:not(:last-child)::after {
        display: none;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-text {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 18px;
        margin-left: 20px;
    }
    
    .step-title {
        font-size: 18px;
    }
    
    .cta-button {
        width: 100%;
        margin-bottom: 10px;
    }
}