/* ================================================
   HOMEPAGE - PAGE D'ACCUEIL AMÉLIORÉE
   ================================================ */

.homepage-main {
    background: var(--bg-dark);
}

/* ================================================
   SECTIONS COMMUNES
   ================================================ */

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.section-ornament .line {
    width: 80px;
    height: 1px;
    background: #c1944a;
}

.section-ornament .diamond {
    width: 8px;
    height: 8px;
    background: #c1944a;
    transform: rotate(45deg);
}

.section-title {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 1rem 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.section-subtitle {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 1.25rem;
    color: rgba(217, 211, 196, 0.7);
    margin: 0;
}

/* ================================================
   SECTION À PROPOS
   ================================================ */

.about-section {
    padding: 8rem 0;
    background: linear-gradient(
        135deg,
        rgba(45, 62, 47, 0.3) 0%,
        rgba(18, 21, 18, 0.5) 100%
    );
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: rgba(18, 21, 18, 0.7);
    backdrop-filter: blur(10px);
    padding: 4rem;
    border: 1px solid rgba(193, 148, 74, 0.2);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.about-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.about-ornament .line {
    width: 60px;
    height: 1px;
    background: #c1944a;
}

.about-ornament .diamond {
    width: 8px;
    height: 8px;
    background: #c1944a;
    transform: rotate(45deg);
}

.about-text {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 1.15rem;
    line-height: 1.9;
    color: #d9d3c4;
}

.about-text p {
    margin-bottom: 1.5rem;
}

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

/* ================================================
   SECTION SERVICES
   ================================================ */

.services-section {
    padding: 6rem 0;
    background: rgba(14, 16, 14, 0.5);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(18, 21, 18, 0.8);
    border: 1px solid rgba(193, 148, 74, 0.2);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #c1944a, transparent);
    transition: width 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #c1944a;
    box-shadow: 0 15px 40px rgba(193, 148, 74, 0.2);
}

.service-card:hover::before {
    width: 100%;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(193, 148, 74, 0.1);
    border: 2px solid rgba(193, 148, 74, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #c1944a;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: rgba(193, 148, 74, 0.2);
    border-color: #c1944a;
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 1rem 0;
    letter-spacing: 0.05em;
}

.service-description {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(217, 211, 196, 0.7);
    margin: 0;
}

/* ================================================
   SECTION PRODUITS VEDETTES
   ================================================ */

.featured-products-section {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.section-cta {
    text-align: center;
    margin-top: 4rem;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1rem;
}

/* ================================================
   SECTION CTA FINALE
   ================================================ */

.final-cta-section {
    padding: 8rem 0;
    background: linear-gradient(
        135deg,
        rgba(45, 62, 47, 0.3) 0%,
        rgba(18, 21, 18, 0.5) 100%
    );
    position: relative;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(193, 148, 74, 0.5),
        transparent
    );
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.cta-ornament .line {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c1944a, transparent);
}

.cta-ornament .diamond {
    width: 10px;
    height: 10px;
    background: #c1944a;
    transform: rotate(45deg);
}

.cta-title {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 1.5rem 0;
    letter-spacing: 0.05em;
}

.cta-text {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 1.25rem;
    color: rgba(217, 211, 196, 0.7);
    margin: 0 0 3rem 0;
    line-height: 1.8;
}

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

/* ================================================
   BOUTONS
   ================================================ */

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: transparent;
    color: #c1944a;
    border: 2px solid #c1944a;
    border-radius: 4px;
    font-family: 'Cinzel', Georgia, serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #c1944a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(193, 148, 74, 0.3);
}

/* ================================================
   RESPONSIVE
   ================================================ */

@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }
    
    .about-content {
        padding: 3rem 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .about-section,
    .services-section,
    .featured-products-section,
    .final-cta-section {
        padding: 4rem 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .about-content {
        padding: 2rem 1.5rem;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .section-ornament .line,
    .about-ornament .line {
        width: 50px;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
}
