* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #bc9760;
    --secondary-color: #8b7355;
    --accent-color: #d4a5a5;
    --text-dark: #333;
    --text-light: #555;
    --bg-light: #faf8f5;
    --bg-white: #ffffff;
    --border-color: #e5e5e5;
    --shadow: 0 6px 18px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 18px 55px rgba(0, 0, 0, 0.16);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    width: 100%;
    min-height: 100vh;
    background: center / cover url('../images/herobanner.png') no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}

/* Carte centrale */
.waiting-screen {
    width: min(860px, 92vw);
    display: flex;
    flex-direction: column;
    padding: clamp(1.25rem, 3vw, 2.25rem);
    align-items: center;
    text-align: center;

    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    border: 1px solid rgba(188, 151, 96, 0.25);
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

/* Petit “glow” doux */
.waiting-screen::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: radial-gradient(circle at top, rgba(212,165,165,0.22), transparent 55%);
    pointer-events: none;
}

.logo-build {
    width: clamp(200px, 20vw, 280px);
    margin-bottom: -1.5rem;
    filter: drop-shadow(0 8px 18px rgba(0,0,0,0.12));
}

.waiting-screen h1 {
    font-size: clamp(1.6rem, 2.4vw, 2.25rem);
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    letter-spacing: 0.2px;
}

.subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 80ch;
    line-height: 1.6;
}

.social-intro {
    margin-top: 1.15rem;
    font-size: 1.05rem;
    color: #4a4a4a;
    max-width: 60ch;
    line-height: 1.6;
}

.social-intro strong {
    color: var(--secondary-color);
}

/* Boutons sociaux */
.social-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 0.9rem;
    width: 100%;
    max-width: 720px;
    margin-top: 1.1rem;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.95rem 1.05rem;
    text-decoration: none;
    color: var(--text-dark);

    background: rgba(250, 248, 245, 0.72);
    border: 1px solid rgba(188, 151, 96, 0.35);
    border-radius: 999px;
    box-shadow: var(--shadow);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    background: rgba(255, 255, 255, 0.82);
}

.social-btn:active {
    transform: translateY(0px);
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: white;
    flex: 0 0 44px;
}

/* Couleurs icônes */
.social-btn.facebook .social-icon {
    background: linear-gradient(135deg, #2d6cdf, #1b4ea8);
}

.social-btn.instagram .social-icon {
    background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7);
}

.social-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.15;
}

.social-title {
    font-weight: 600;
    letter-spacing: 0.2px;
}

.social-sub {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.15rem;
}

/* Petite séparation décorative */
.ornament {
    width: 240px;
    height: 1px;
    margin-top: 1.35rem;
    position: relative;
    background: rgba(188, 151, 96, 0.35);
}

.ornament::before,
.ornament::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 10px;
    height: 10px;
    border: 1px solid rgba(188, 151, 96, 0.55);
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-50%) rotate(45deg);
}

.ornament::before { left: -14px; }
.ornament::after { right: -14px; }

/* Responsive */
@media (max-width: 720px) {
    .social-links {
        grid-template-columns: 1fr;
    }
    .social-text {
        align-items: flex-start;
    }
}