/* ============================
   SALON D'ESTHÉTISME — WAITING PAGE
   Style: Soft luxury / spa aesthetic
   ============================ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cream:       #fdf8f2;
    --warm-white:  #fffcf7;
    --gold:        #c9a96e;
    --gold-light:  #e8d5b0;
    --gold-dark:   #a07840;
    --taupe:       #8d7b6a;
    --dark:        #3a2e28;
    --text:        #5a4a3a;
    --text-light:  #9a8a7a;
    --rose-blush:  #f5ece4;
    --shadow:      rgba(160, 120, 64, 0.15);
}

/* ---- Body & Background ---- */
body {
    font-family: 'Lato', sans-serif;
    background-color: var(--cream);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 20px 60px;
    position: relative;
    overflow-x: hidden;
}

/* Decorative background */
.bg-deco {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.petal {
    position: absolute;
    color: var(--gold-light);
    font-size: 1.2rem;
    opacity: 0.3;
    animation: floatPetal 12s ease-in-out infinite;
}

.p1 { top: 10%; left: 8%;  animation-delay: 0s;   font-size: 0.8rem; }
.p2 { top: 25%; right: 6%; animation-delay: 2s;   font-size: 1.4rem; }
.p3 { top: 60%; left: 5%;  animation-delay: 4s;   font-size: 1rem; }
.p4 { top: 75%; right: 8%; animation-delay: 6s;   font-size: 0.7rem; }
.p5 { top: 45%; left: 92%; animation-delay: 8s;   font-size: 1.2rem; }

@keyframes floatPetal {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
    50%       { transform: translateY(-18px) rotate(20deg); opacity: 0.5; }
}

/* ---- Main container ---- */
.container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

/* ---- Header ---- */
.header {
    text-align: center;
    margin-bottom: 32px;
}

.logo-line {
    margin: 8px 0;
}

.ornament {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 6px;
}

.salon-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: clamp(2rem, 6vw, 3rem);
    color: var(--dark);
    letter-spacing: 2px;
    line-height: 1.2;
    margin: 6px 0 4px;
}

.salon-tagline {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 0.78rem;
    letter-spacing: 5px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 6px;
}

/* ---- Card ---- */
.card {
    background: var(--warm-white);
    border: 1px solid var(--gold-light);
    border-radius: 20px;
    padding: 48px 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    box-shadow:
        0 4px 30px var(--shadow),
        0 1px 0 var(--gold-light) inset;
    position: relative;
    overflow: hidden;
}

/* Subtle top gradient band */
.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
}

/* ---- Coming soon badge ---- */
.coming-soon-badge {
    background: linear-gradient(135deg, var(--gold-light), var(--cream));
    border: 1px solid var(--gold);
    border-radius: 30px;
    padding: 8px 24px;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--gold-dark);
    text-transform: uppercase;
}

/* ---- Owner photo ---- */
.photo-wrapper {
    position: relative;
    width: 180px;
    height: 180px;
}

.owner-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold-light);
    box-shadow:
        0 0 0 6px var(--rose-blush),
        0 8px 30px var(--shadow);
    display: block;
    position: relative;
    z-index: 2;
}

.photo-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,169,110,0.2) 0%, transparent 70%);
    z-index: 1;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50%       { opacity: 1;   transform: translate(-50%, -50%) scale(1.08); }
}

/* ---- Owner info ---- */
.owner-info {
    text-align: center;
}

.owner-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 1.6rem;
    color: var(--dark);
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.owner-title {
    font-weight: 300;
    font-size: 0.78rem;
    letter-spacing: 3px;
    color: var(--taupe);
    text-transform: uppercase;
}

/* ---- Divider ---- */
.divider {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gold-light);
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}

.divider-ornament {
    color: var(--gold);
    font-size: 0.7rem;
}

/* ---- Message block ---- */
.message-block {
    text-align: center;
    padding: 0 8px;
}

.message-text {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text);
}

.inline-link {
    color: var(--gold-dark);
    text-decoration: underline;
    text-decoration-color: var(--gold-light);
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.inline-link:hover {
    color: var(--gold);
}

/* ---- Reservation button ---- */
.btn-reservation {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #fff;
    text-decoration: none;
    padding: 14px 36px;
    border-radius: 40px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(160, 120, 64, 0.35);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    border: none;
    cursor: pointer;
}

.btn-reservation:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(160, 120, 64, 0.45);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.btn-reservation:active {
    transform: translateY(0);
}

.btn-icon {
    font-size: 1rem;
}

/* ---- QR Code section ---- */
.qr-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.qr-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark);
    letter-spacing: 1px;
}

.qr-frame {
    padding: 16px;
    background: white;
    border: 1px solid var(--gold-light);
    border-radius: 16px;
    box-shadow: 0 4px 16px var(--shadow);
    position: relative;
}

/* Corner accents for QR frame */
.qr-frame::before,
.qr-frame::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: var(--gold);
    border-style: solid;
}

.qr-frame::before {
    top: -1px; left: -1px;
    border-width: 2px 0 0 2px;
    border-radius: 4px 0 0 0;
}

.qr-frame::after {
    bottom: -1px; right: -1px;
    border-width: 0 2px 2px 0;
    border-radius: 0 0 4px 0;
}

.qr-img {
    width: 160px;
    height: 160px;
    display: block;
}

.qr-sublabel {
    font-weight: 300;
    font-size: 0.78rem;
    letter-spacing: 1px;
    color: var(--taupe);
    text-align: center;
    font-style: italic;
}

/* ---- Contact block ---- */
.contact-block {
    text-align: center;
    width: 100%;
}

.contact-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--dark);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.contact-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
    font-weight: 300;
    font-size: 0.92rem;
    letter-spacing: 0.5px;
    padding: 10px 24px;
    border: 1px solid var(--gold-light);
    border-radius: 30px;
    background: var(--rose-blush);
    transition: border-color 0.2s, background 0.2s, color 0.2s;
    min-width: 240px;
    justify-content: center;
}

.contact-item:hover {
    border-color: var(--gold);
    background: var(--gold-light);
    color: var(--dark);
}

.contact-icon {
    color: var(--gold);
    font-size: 1rem;
}

/* ---- Footer ---- */
.footer {
    text-align: center;
    margin-top: 32px;
    color: var(--text-light);
    font-weight: 300;
    font-size: 0.75rem;
    letter-spacing: 1px;
    line-height: 1.8;
}

.footer-note {
    color: var(--gold);
    font-size: 0.72rem;
}

/* ---- Responsive ---- */
@media (max-width: 480px) {
    body {
        padding: 24px 14px 48px;
    }

    .card {
        padding: 36px 24px;
        gap: 24px;
    }

    .salon-name {
        font-size: 1.8rem;
    }

    .owner-photo {
        width: 150px;
        height: 150px;
    }

    .photo-wrapper {
        width: 150px;
        height: 150px;
    }

    .btn-reservation {
        padding: 13px 28px;
        font-size: 0.82rem;
    }

    .contact-item {
        min-width: 200px;
        font-size: 0.85rem;
    }

    .qr-img {
        width: 130px;
        height: 130px;
    }
}
