/* ===== About Page Styles - Premium Liquid Glass Aesthetic ===== */

/* Note: Hero section now uses the standard hero-section classes from core/partials/hero_section.html */
/* The styling is inherited from home.css which is loaded in the template */

/* ===== About Wrapper ===== */
.about-wrapper {
    padding: 60px 0;
}

/* ===== About Sections ===== */
.about-section {
    margin-bottom: 80px;
    scroll-margin-top: 100px;
}

.section-content {
    max-width: 900px;
    margin: 0 auto;
}

.section-title {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 1.5px;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

.section-line {
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, #1a1a1a 0%, transparent 100%);
    margin-bottom: 48px;
}

/* ===== Introduction Section ===== */
.introduction-section {
    padding: 0 24px;
}

.about-article {
    margin-bottom: 32px;
    scroll-margin-top: 80px;
}

.about-article:last-child {
    margin-bottom: 0;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    letter-spacing: 0.3px;
    margin: 0;
}

/* ===== Features Section ===== */
.features-section {
    padding: 0 24px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    padding: 40px 32px;
    text-align: center;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 -1px 0 rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.75);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    letter-spacing: 0.5px;
}

.feature-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin: 0;
    letter-spacing: 0.2px;
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 60px 24px;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    margin: 0 24px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact-container {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    letter-spacing: 0.3px;
    margin-bottom: 24px;
}

.contact-info {
    padding: 24px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.email-link {
    font-size: 1.1rem;
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: 0.4px;
    position: relative;
    transition: all 0.3s ease;
}

.email-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: #1a1a1a;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.email-link:hover {
    color: #1a1a1a;
}

.email-link:hover::after {
    width: 100%;
}

/* ===== Call to Action Section ===== */
.cta-section {
    padding: 60px 24px;
    text-align: center;
    /*background: linear-gradient(135deg, rgba(26, 26, 26, 0.02) 0%, rgba(26, 26, 26, 0.04) 100%);*/
    /*border-top: 1px solid rgba(0, 0, 0, 0.06);*/
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    margin: 0 -24px;
}

.cta-section .section-line {
    width: 60px;
    background: linear-gradient(90deg, transparent 0%, #1a1a1a 50%, transparent 100%);

    margin: 0 auto 24px;
}

.cta-subtitle {
    font-size: 1.05rem;
    color: #4a4a4a;
    letter-spacing: 0.3px;
    margin: 20px 0 40px 0;
}

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

.btn-action {
    padding: 14px 48px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.8px;
    border: 1.5px solid #1a1a1a;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn-action::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #1a1a1a;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-primary-action {
    background-color: #1a1a1a;
    color: white;
}

.btn-primary-action:hover {
    color: #1a1a1a;
    background-color: transparent;
}

.btn-secondary-action {
    background-color: transparent;
    color: #1a1a1a;
}

.btn-secondary-action:hover {
    background-color: #1a1a1a;
    color: white;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .about-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .about-subtitle {
        font-size: 1rem;
    }

    .about-hero {
        padding: 60px 16px;
        margin: 0 -16px;
    }

    .about-wrapper {
        padding: 40px 0;
    }

    .about-section {
        margin-bottom: 60px;
    }

    .section-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .about-text {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-card {
        padding: 32px 24px;
    }

    .contact-section {
        margin: 0 16px;
    }

    .cta-section {
        margin: 0 -16px;
        padding: 40px 16px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-action {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .about-title {
        font-size: 1.5rem;
        letter-spacing: 0.8px;
    }

    .about-subtitle {
        font-size: 0.95rem;
    }

    .about-hero {
        padding: 40px 12px;
        margin: 0 -12px;
    }

    .section-title {
        font-size: 1.2rem;
        letter-spacing: 0.5px;
    }

    .section-content {
        padding: 0 12px;
    }

    .about-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .feature-icon {
        font-size: 2.5rem;
    }

    .feature-card {
        padding: 24px 16px;
    }

    .email-link {
        font-size: 1rem;
    }

    .cta-section {
        margin: 0 -12px;
        padding: 30px 12px;
    }

    .cta-subtitle {
        font-size: 1rem;
    }
}

