/* About Page Styles */

/* Hero Section */
.about-hero-section {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.about-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.spiral-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(255 249 231 / 8%);
    z-index: 2;
}

.about-hero-content {
    position: relative;
    z-index: 3;
    text-align: left;
    max-width: 1200px;
    padding: 0 40px;
    width: 100%;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    color:#e5aa03;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.about-hero-subtitle {
    font-size: 1rem;
    color: #e5aa03;
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 400;
}

.scroll-down-btn {
    position: absolute;
    right: 60px;
    bottom: -200px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #26c6b8 0%, #1fb5a8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(38, 198, 184, 0.4);
    text-decoration: none;
}

.scroll-down-btn:hover {
    transform: translateY(5px);
    box-shadow: 0 6px 25px rgba(38, 198, 184, 0.5);
}

.scroll-down-btn svg {
    color: #ffffff;
}

/* Content Section */
.about-content-section {
    padding: 50px 0;
    background: #fff9e7;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Quote Section */
.about-quote-section {
    position: relative;
}

.quote-icon {
    font-size: 120px;
    color: #e5aa03;
    line-height: 1;
    font-family: Georgia, serif;
    margin-bottom: -40px;
}

.quote-content {
    margin-bottom: 40px;
}

.quote-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e5aa03;
    margin: 0;
    font-weight: 400;
}

.quote-bottom-image {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.quote-bottom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Info Box */
.about-info-box {
    background: transparent;
    border-radius: 20px;
    padding: 50px 45px;
    color: #e5aa03;
    /* box-shadow: 0 10px 40px rgba(94, 99, 182, 0.3); */
    position: relative;
}

.about-info-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(229, 170, 3, 0.2);
}

.about-info-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #e5aa03;
    margin: 0;
    letter-spacing: 1px;
}

.settings-icon {
    color: #e5aa03;
    opacity: 0.8;
}

.about-info-content {
    color: #e5aa03;
}

.about-info-text {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: 400;
}

.about-info-text:last-child {
    margin-bottom: 0;
}

/* Mission/Vision Section */
.about-mission-section {
    padding: 20px 0 50px 0;
    background: #fff9e7;
}

.mission-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.mission-card {
    background: transparent;
    padding: 20px 20px;
    border-radius: 8px;
    border: 1px solid #e5aa03;
    text-align: left;
    transition: all 0.3s ease;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04); */
}

.mission-card:hover {
    /* box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08); */
    border-color: #fff9e7;
}

.mission-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.mission-dot {
    width: 8px;
    height: 8px;
    background: #e5aa03;
    border-radius: 50%;
    flex-shrink: 0;
}

.mission-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #e5aa03;
    margin: 0;
    letter-spacing: 0.5px;
}

.mission-description {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #e5aa03;
    margin: 0;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .mission-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .mission-card {
        padding: 30px 25px;
    }

    .scroll-down-btn {
        right: 40px;
        bottom: -180px;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        height: 50vh;
        min-height: 400px;
    }

    .about-hero-title {
        font-size: 2rem;
    }

    .about-hero-subtitle {
        font-size: 0.95rem;
    }

    .about-hero-content {
        padding: 0 20px;
    }

    .about-container {
        padding: 0 20px;
    }

    .mission-container {
        padding: 0 20px;
        grid-template-columns: 1fr;
    }

    .about-info-box {
        padding: 35px 25px;
    }

    .scroll-down-btn {
        right: 20px;
        bottom: -160px;
        width: 50px;
        height: 50px;
    }

    .scroll-down-btn svg {
        width: 20px;
        height: 20px;
    }
}
