/* About Us Page Styles */

/* About Hero Section */
.about-hero {
    position: relative;
    width: 100%;
    height: 600px;
    margin-top: var(--header-height);
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
    display: flex;
    align-items: flex-end;
}

.about-hero-content {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 165px 80px;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
}

.breadcrumb a {
    color: #FFFFFF;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb span:last-child {
    color: rgba(255, 255, 255, 0.8);
}

/* Hero Title */
.about-hero-title {
    font-size: 72px;
    font-weight: 300;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -1px;
}

/* About Content Section */
.about-content-section {
    width: 100%;
    background-color: #FFFFFF;
    padding: 100px 0;
}

.about-content-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 165px;
}

.about-content-title {
    font-size: 42px;
    font-weight: 300;
    color: var(--primary-color);
    line-height: 1.3;
    margin: 0 0 50px 0;
    letter-spacing: -0.5px;
    max-width: 900px;
}

.about-content-text {
    max-width: 900px;
}

.about-content-text p {
    font-size: 17px;
    font-weight: 400;
    color: #666;
    line-height: 1.8;
    margin: 0 0 25px 0;
}

.about-content-text p:last-child {
    margin-bottom: 0;
}

/* About Image */
.about-image-container {
    margin-top: 60px;
    width: 100%;
    max-width: 1200px;
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
}

/* Culture Section */
.culture-section {
    width: 100%;
    background-color: #F8F8F8;
    padding: 100px 0;
}

.culture-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 165px;
}

.culture-text {
    font-size: 17px;
    font-weight: 400;
    color: #666;
    line-height: 1.8;
    margin: 0 0 50px 0;
    max-width: 900px;
}

.culture-cta {
    display: flex;
    justify-content: center;
}

.culture-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    border: 1px solid #D0D0D0;
    background-color: transparent;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.culture-btn:hover {
    background-color: var(--primary-color);
    color: #FFFFFF;
    border-color: var(--primary-color);
    gap: 18px;
}

.culture-btn i {
    font-size: 12px;
    transition: all 0.3s ease;
}

/* History Section */
.history-section {
    width: 100%;
    background-color: #FFFFFF;
    padding: 100px 0;
}

.history-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 165px;
}

.history-text {
    font-size: 17px;
    font-weight: 400;
    color: #666;
    line-height: 1.8;
    margin: 0 0 50px 0;
    max-width: 900px;
}

.history-cta {
    display: flex;
    justify-content: center;
}

.history-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    border: 1px solid #D0D0D0;
    background-color: transparent;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.history-btn:hover {
    background-color: var(--primary-color);
    color: #FFFFFF;
    border-color: var(--primary-color);
    gap: 18px;
}

.history-btn i {
    font-size: 12px;
    transition: all 0.3s ease;
}

/* Responsive Design for About Us Page */
@media (max-width: 1200px) {
    .about-hero-content {
        padding: 0 80px 60px;
    }
    
    .about-hero-title {
        font-size: 60px;
    }
    
    .about-content-container {
        padding: 0 80px;
    }
    
    .about-content-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 500px;
    }
    
    .about-hero-content {
        padding: 0 40px 50px;
    }
    
    .about-hero-title {
        font-size: 42px;
    }
    
    .about-content-section {
        padding: 60px 0;
    }
    
    .about-content-container {
        padding: 0 40px;
    }
    
    .about-content-title {
        font-size: 30px;
        margin-bottom: 40px;
    }
    
    .about-content-text p {
        font-size: 16px;
    }
    
    .about-image-container {
        margin-top: 50px;
    }
    
    .culture-section,
    .history-section {
        padding: 70px 0;
    }
    
    .culture-container,
    .history-container {
        padding: 0 80px;
    }
    
    .culture-text,
    .history-text {
        font-size: 16px;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        height: 400px;
    }
    
    .about-hero-content {
        padding: 0 20px 40px;
    }
    
    .breadcrumb {
        font-size: 10px;
        margin-bottom: 15px;
    }
    
    .about-hero-title {
        font-size: 32px;
    }
    
    .about-content-section {
        padding: 40px 0;
    }
    
    .about-content-container {
        padding: 0 20px;
    }
    
    .about-content-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .about-content-text p {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .about-image-container {
        margin-top: 40px;
    }
    
    .culture-section,
    .history-section {
        padding: 50px 0;
    }
    
    .culture-container,
    .history-container {
        padding: 0 40px;
    }
    
    .culture-text,
    .history-text {
        font-size: 15px;
        margin-bottom: 35px;
    }
    
    .culture-btn,
    .history-btn {
        padding: 15px 35px;
        font-size: 12px;
    }
}

