/* About Page Styles */

.about-section-wrapper {
    background: #000000;
    width: 100%;
    position: relative;
    z-index: 1;
    padding: 2rem 0 0 0;
    margin-bottom: 0;
}

.about-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: flex-start;
    background: transparent;
    position: relative;
}

.about-image-column {
    flex: 0 0 45%;
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: flex-start;
    padding-top: 4rem;
}

.about-page-image {
    width: 100%;
    height: 100%;
    min-height: 450px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.about-content-column {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* About Hero Section */
.about-hero {
    text-align: left;
    padding: 0.5rem 0 1.5rem 0;
    margin-bottom: 2rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    flex-shrink: 0;
}

.about-logo {
    margin-bottom: 1rem;
    display: flex;
    justify-content: flex-start;
}

.about-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.4));
}

.about-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 0.4rem 0;
    line-height: 1.2;
    color: #ffffff;
}

.year-highlight {
    display: inline;
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 400;
}

/* About Content */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    flex: 1;
    min-height: 0;
}

.about-content-column .about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 1200px) {
    .about-content-column .about-content {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.about-intro {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: left;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
}

.intro-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
}

.intro-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    stroke: #d4af37;
}

.about-intro h2 {
    font-size: 1.375rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.75rem 0;
    border-bottom: 2px solid rgba(212, 175, 55, 0.6);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.lead-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* About Sections */
.about-section {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-left: 4px solid #d4af37;
    border-radius: 8px;
    padding: 1.25rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.about-section:hover {
    border-color: rgba(212, 175, 55, 0.7);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.section-icon {
    font-size: 1.25rem;
    color: #d4af37;
    flex-shrink: 0;
    margin-right: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.section-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke: #d4af37;
}

.about-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.about-section p {
    font-size: 0.8125rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    flex: 1;
}

/* Highlights Grid */
.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
    grid-column: 1 / -1;
}

.highlight-card {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 8px;
    padding: 1.25rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.highlight-card:hover {
    border-color: rgba(212, 175, 55, 0.7);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.highlight-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    display: block;
}

.highlight-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
}

.highlight-card p {
    font-size: 0.875rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* Responsive Design */
@media (min-width: 1200px) {
    .about-content-column .about-content {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 1199px) {
    .about-page {
        flex-direction: column;
        gap: 2rem;
    }

    .about-content-column {
        width: 100%;
    }

    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-page {
        padding: 1rem 1.5rem;
        min-height: auto;
    }

    .about-hero {
        padding: 0.75rem 0 1rem 0;
        margin-bottom: 1.5rem;
    }

    .about-title {
        font-size: 1.75rem;
    }

    .about-subtitle {
        font-size: 0.9375rem;
    }

    .about-intro {
        padding: 1.5rem;
    }

    .about-intro h2 {
        font-size: 1.375rem;
    }

    .lead-text {
        font-size: 0.9375rem;
    }

    .about-section {
        padding: 1rem;
    }

    .section-header {
        gap: 0.625rem;
        margin-bottom: 0.625rem;
    }

    .section-icon {
        font-size: 1.125rem;
    }
    
    .section-icon svg {
        width: 1.125rem;
        height: 1.125rem;
    }
    
    .intro-icon svg {
        width: 2rem;
        height: 2rem;
    }

    .about-section h3 {
        font-size: 1rem;
    }

    .about-section p {
        font-size: 0.8125rem;
        line-height: 1.45;
    }
    
    .about-content {
        gap: 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1rem;
    }

    .highlight-card {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 2rem;
    }

    .about-subtitle {
        font-size: 1.125rem;
    }

    .about-intro h2 {
        font-size: 1.75rem;
    }

    .lead-text {
        font-size: 1rem;
    }
}

