/* ============================================
   ConnexSion Physiothérapie - Page d'attente
   ============================================ */

/* Variables de couleurs selon le guide d'identité */
:root {
    --vert-principal: #525A45;
    --vert-secondaire: #737C62;
    --beige: #C7BEAA;
    --noir-doux: #2B2B28;
    --blanc-doux: #F5F3EE;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Avenir', 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--blanc-doux);
    color: var(--noir-doux);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Motif graphique en arrière-plan - BIEN VISIBLE */
.background-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

.background-pattern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Conteneur principal */
.container {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

/* Logo en haut - DANS le cadre */
.logo-container {
    margin-bottom: 30px;
}

.logo {
    max-width: 350px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Boîte blanche centrale - EFFET POST-IT avec bordure sur 2 côtés */
.main-content {
    background: #FFFFFF;    
    padding: 60px 70px 70px 70px;
    max-width: 700px;
    width: 90%;
    text-align: center;
    position: relative;
	color: var(--vert-principal);
	border-radius: 8px;
	box-shadow: 
        4px 4px 0 rgba(43, 43, 40, 0.1),
        8px 8px 0 rgba(43, 43, 40, 0.05);  /* Effet de profondeur */
}

/* RESTEZ CONNECTÉS */
.subtitle {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--vert-secondaire);    
    font-family: 'Avenir', sans-serif;
	font-style: italic;
    opacity: 0.8;
}

/* OUVERTURE - Style exact */
.main-title {
    font-size: 68px;
    font-weight: 900;
    margin-bottom: 0;
    line-height: 1;
    letter-spacing: 2px;
    font-family: 'Avenir', sans-serif;
}

/* JUILLET 2026 - Style exact */
.date {
    font-size: 68px;
    font-weight: 900;
    margin-bottom: 50px;
    letter-spacing: 2px;
    line-height: 1;
    font-family: 'Avenir', sans-serif;
}

/* Adresse en bas */
.contact-info {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.address {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    font-style: normal;
}

.address-line {
    margin-bottom: 3px;
}

/* Icônes réseaux sociaux */
.social-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
	margin-top: 10px;
	margin-bottom: 50px;
}

.social-icons a {
    color: var(--vert-secondaire);
    transition: color 0.3s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-icons a:hover {
    color: var(--vert-principal);
    transform: scale(1.1);
}

.social-icons svg {
    width: 32px;
    height: 32px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        max-width: 160px;
    }

    .main-content {
        padding: 50px 40px 60px 40px;
        border-right-width: 10px;
        border-bottom-width: 10px;
    }

    .brain-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 25px;
    }

    .subtitle {
        font-size: 13px;
        letter-spacing: 2px;
        margin-bottom: 30px;
    }

    .main-title {
        font-size: 48px;
    }

    .date {
        font-size: 48px;
        margin-bottom: 40px;
    }

    .address {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 130px;
    }

    .main-content {
        padding: 35px 25px 45px 25px;
        border-right-width: 8px;
        border-bottom-width: 8px;
        width: 95%;
    }

    .brain-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 20px;
    }

    .subtitle {
        font-size: 11px;
        letter-spacing: 1.5px;
        margin-bottom: 25px;
    }

    .main-title {
        font-size: 36px;
    }

    .date {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .address {
        font-size: 13px;
    }
	
	.social-icons svg {
        width: 28px;
        height: 28px;
    }
    
    .social-icons {
        gap: 15px;
        margin-top: 15px;
    }
}
