/* home.css*/

/* FOND GLOBAL*/
.fond
	{
	min-height: 100vh;
	background-image: url('../images/babysitter-nounou-garde-enfant.webp');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	flex-direction: column;
	}

/* CTA BUTTONS */
.cta-buttons 
	{
	display: flex;
	flex-direction: column; /* ← empile en vertical */
	gap: 12px;              /* espace entre les boutons */
	margin-top: 20px;
	}

.cta-buttons a
	{
	display: block;
	width: 100%;            /* ← full width du bloc inscription */
	text-align: center;
	padding: 14px 20px;
	border-radius: 50px;
	font-size: 16px;
	font-weight: bold;
	text-decoration: none;
	white-space: nowrap;    /* le texte reste sur une seule ligne */
	}

.btn-primary
	{
	background-color: var(--bleu);  /* bleu NNL */
	color: white;
	}

.btn-secondary
	{
	background-color: var(--vert);  /* jaune NNL */
	color: var(--bleu);
	}

/* MAIN */
main
	{
	flex: 1; /* ← remplit toute la place restante sous le header */
	display: flex;
	flex-direction: column;
	}

/* HERO */
.hero
	{
	flex: 1; /* ← remplit tout le main */
	display: flex;
	flex-direction: column;
	align-items: center;     /* centrage horizontal */
	text-align: center;
	padding: 40px 16px;
	color: white;
	}

.hero h1
	{
	margin: 0 0 10px 0;
	font-size: 2rem;
	}

.hero p
	{
	margin: 0 0 20px 0;
	}

/* BLOC INSCRIPTION */
.bloc_inscription
	{
	background: rgba(255,255,255,0.9);
	width: 90%;
	max-width: 350px;
	margin: 60px auto 0;
	border-radius: var(--radius);
	padding: 20px;
	}

/* Pour la suite on harmonise les h2 et les subtitltes*/
.h2
	{
    font-size: 1.6rem;
    margin: 0 0 10px 0;
    font-weight: bold;
	}

.subtitle
	{
    font-size: 1rem;
    margin: 0 0 25px 0;
	}
/*-------------------------------*/

/* Inscriptions récentes */
.recent-wrapper
	{
    padding: 40px 20px;
    background: var(--vert-leger-2);
    text-align: center;
	}

/*
.recent-title
	{
    font-size: 1.6rem;
    margin: 0 0 10px 0;
    color: #263E7E;
    font-weight: bold;
	}

.recent-subtitle
	{
    font-size: 1rem;
    margin: 0 0 25px 0;
    color: #555;
	}*/

.recent-container
	{
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
	}

.recent-item
	{
    background: white;
    width: 100%;
    max-width: 360px; 
    padding: 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.10);
	}

.recent-item img
	{
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
	}

.recent-info
	{
    display: flex;
    flex-direction: column;
    text-align: left;
    font-size: 0.95rem;
	}

.recent-info strong
	{
    font-size: 1.1rem;
	}

/* Bandeau avantages */
.avantages-wrapper
	{
    padding: 40px 20px;
    background: white;
    text-align: center;
	}

.avantages-title
	{
    font-size: 1.6rem;
    color: #263E7E;
    margin: 0 0 10px 0;
    font-weight: bold;
	}

.avantages-subtitle
	{
    font-size: 1rem;
    color: #555;
    margin: 0 0 35px 0;
	}

.avantages-container
	{
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
	}

.avantage-item
	{
    background: var(--vert-leger-2);
    border-radius: 14px;
    padding: 25px 20px;
    width: 100%;
    max-width: 360px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
	}

.avantage-item img
	{
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
	}

.avantage-item h3
	{
    margin: 0 0 10px 0;
    color: #263E7E;
    font-size: 1.25rem;
	}

.avantage-item p
	{
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.45;
    text-align: justify;
	}

/* Bandeau agence */
.agency-banner
	{
    background: url("../images/agence-garde-enfants.webp") center/cover no-repeat;
    padding: 40px 20px;
    margin: 0px 0;
    position: relative;
    overflow: hidden;
	}

.agency-banner::before
	{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45); /* joue sur l'opacité ici */
    z-index: 1;
	}

.agency-content
	{
    position: relative;
    z-index: 2;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
	}

.agency-title
	{
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
	}

.agency-text
	{
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 20px;
	}

.agency-points li {
    display: flex;
    align-items: center;
    font-size: 15px;
    margin-bottom: 10px;
}

.agency-points li
	{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    margin-bottom: 10px;
	}

.point-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.point-icon svg {
    width: 20px;
    height: 20px;
    stroke: #2AA56E;        /* vert Nounouland */
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.agency-btn
	{
    display: inline-block;
    background: #ffffff;
    color: #1a3c8e;
    padding: 12px 26px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s ease-in-out;
	}

.agency-btn:hover
	{
    background: #f0f0f0;
	}

/* Bandeau Avis Google */
.google-reviews
	{
    padding: 40px 20px;
    background: var(--vert-leger-2);
    text-align: center;
	}

.reviews-title
	{
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #1a1a1a;
	}

.reviews-subtitle
	{
    text-align: center;
    margin-bottom: 25px;
    font-size: 14px;
    color: #666;
	}

.reviews-container
	{
    display: flex;
    flex-direction: column;
    gap: 16px;
	}

.review-card
	{
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.05);
	}

.review-header
	{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
	}

.review-header img
	{
    width: 42px;
    height: 42px;
    border-radius: 50%;
	}

.review-source
	{
    font-size: 12px;
    color: #666;
	}

.review-stars
	{
    color: #F4B400; /* jaune Google */
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-align: left;
	}

.review-text
	{
    font-size: 14px;
    line-height: 1.45;
    color: var(--gris-fonce);
    margin-bottom: 12px;
    text-align: left;
	}

.review-date
	{
    font-size: 12px;
    color: var(--gris-fonce);
    text-align: left;
	}

.avatar
	{
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: 700;
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    flex-shrink: 0;
	}

.avatar-a { background: #F44336; }
.avatar-b { background: #E91E63; }
.avatar-c { background: #9C27B0; }
.avatar-d { background: #673AB7; }
.avatar-e { background: #3F51B5; }
.avatar-f { background: #2196F3; }
.avatar-g { background: #03A9F4; }
.avatar-h { background: #00BCD4; }
.avatar-i { background: #009688; }
.avatar-j { background: #4CAF50; }
.avatar-k { background: #8BC34A; }
.avatar-l { background: #CDDC39; }
.avatar-m { background: #FFC107; }
.avatar-n { background: #FF9800; }
.avatar-o { background: #FF5722; }
.avatar-p { background: #795548; }
.avatar-q { background: #9E9E9E; }
.avatar-r { background: #607D8B; }
.avatar-s { background: #1ABC9C; }
.avatar-t { background: #16A085; }
.avatar-u { background: #27AE60; }
.avatar-v { background: #2980B9; }
.avatar-w { background: #8E44AD; }
.avatar-x { background: #2C3E50; }
.avatar-y { background: #D35400; }
.avatar-z { background: #C0392B; }

/* --- Bandeau Qui sommes-nous --- */
.about-banner
	{
    padding: 50px 20px;
    background: white;
	}

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

.about-title
	{
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--bleu);
    margin-bottom: 20px;
	}

.about-text
	{
    font-size: 15px;
    line-height: 1.6;
    color: var(--bleu);
    margin-bottom: 15px;
    text-align: justify;
	}

/* --------------------- DESKTOP --------------------- */

@media (min-width: 1024px)
	{
	.bloc_inscription
		{
		margin-left: 20%;
		margin-right: 0;
		width: 25%;
		max-width: none;
		min-width: 350px;
		}

	.cta-buttons a
		{
		font-size: 18px;
		padding: 16px 22px;
		}

	.recent-container
		{
        flex-direction: row;
        justify-content: center;
        gap: 30px;
    	}

    .recent-item
    	{
        max-width: 400px;
    	}

    .recent-title
    	{
        font-size: 2rem;
    	}

    .recent-item img
    	{
    	width: 150px;
    	height: 150px;
		}

	 .avantages-container
	 	{
        flex-direction: row;
        justify-content: center;
        gap: 35px;
    	}

    .avantage-item
    	{
        max-width: 300px;
        padding: 30px;
    	}

    .avantages-title
    	{
        font-size: 2rem;
    	}

    .agency-banner
    	{
        padding: 100px 0;
    	}

    .agency-content
    	{
        max-width: 900px;
        text-align: left;
    	}

    .agency-points li
    	{
        justify-content: flex-start;
    	}

    .reviews-container
    	{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
		gap: 24px;
    	}

    .about-content
      	{
        text-align: left;
    	}

    .about-title
    	{
        font-size: 2rem;
    	}
	}


