/* index.css - Styles spécifiques à la page d'accueil */

/* Hero */
.hero {
    position: relative;
    min-height: 90vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);  /* Overlay noir semi-transparent */
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero h1,
.hero p.lead {
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

/* Logo dans le h1 du hero */
.logo-dd {
    font-family: 'Parisienne', cursive;
    font-size: 1.5em;
    color: var(--gold-dd);
    letter-spacing: 3px;
    margin-right: 8px;
}

.logo-artdeco {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: 1.2px;
    color: var(--white);
}

/* Grille des services */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.service-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(245, 233, 236, 0.3);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    border-color: var(--rose-accent);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
    }
    .hero h1 {
        font-size: 2.8rem;
    }
    .hero p.lead {
        font-size: 1.3rem;
    }
    .logo-dd {
        font-size: 1.3em;
    }
    .service-card img {
        height: 180px;
    }
}