/* 
* KarlGoods.com About Page CSS
* Ce fichier contient les styles spécifiques à la page À Propos
*/

:root {
    --primary-blue: #0A3B5C;    /* Bleu marine profond du logo */
    --secondary-color: #FF8C00; /* Orange vif du logo */
    --tertiary-color: #40BFA0;  /* Vert turquoise/menthe du logo */
    --white: #FFFFFF;
    --light-gray: #F3F4F6;
}

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, var(--primary-blue), #1E40AF);
    color: var(--white);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.about-hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.about-hero-title {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 2rem;
}

.about-hero-description {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    opacity: 0.1;
    z-index: 1;
    background-image: url('../img/about/hero-bg.svg');
    background-size: cover;
    background-position: center;
}

/* Main Content Sections */
.about-section {
    padding: 6rem 0;
}

.about-section-title {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--primary-blue);
}

.about-section-subtitle {
    font-size: 1.8rem;
    color: #666;
    margin-bottom: 4rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.about-content h2 {
    font-size: 2.8rem;
    color: var(--primary-blue);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--tertiary-color);
    display: inline-block;
}

.about-content h3 {
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.about-content p {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #333;
}

.about-content strong {
    color: var(--primary-blue);
    font-weight: 600;
}

/* Theme Cards */
.theme-card {
    background-color: var(--light-gray);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--tertiary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.theme-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.theme-card h4 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.theme-card p {
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    background-color: var(--light-gray);
    padding: 4rem 0;
    text-align: center;
    margin-top: 4rem;
}

.cta-title {
    font-size: 2.8rem;
    color: var(--primary-blue);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.thank-you-message {
    margin-top: 2rem;
    font-size: 1.6rem;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.6rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-primary:hover {
    background-color: #1D4ED8;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.btn-secondary {
    background-color: var(--tertiary-color);
    color: var(--white);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.6rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-secondary:hover {
    background-color: #0CA678;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
}

.btn-icon {
    margin-right: 0.8rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .about-hero-title {
        font-size: 3rem;
    }
    
    .about-section-title {
        font-size: 2.6rem;
    }
    
    .about-content h2 {
        font-size: 2.4rem;
    }
    
    .about-content h3 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}