/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== CURSEUR CUSTOM ===== */
body * {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cline x1='12' y1='2' x2='12' y2='22' stroke='%23d6b36f' stroke-width='1.2'/%3E%3Cline x1='2' y1='12' x2='22' y2='12' stroke='%23d6b36f' stroke-width='1.2'/%3E%3Ccircle cx='12' cy='12' r='2' fill='%23d6b36f'/%3E%3C/svg%3E") 12 12, crosshair;
}

a, button, [tabindex], .symbols span {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cline x1='12' y1='2' x2='12' y2='22' stroke='%23ffffff' stroke-width='1.5'/%3E%3Cline x1='2' y1='12' x2='22' y2='12' stroke='%23ffffff' stroke-width='1.5'/%3E%3Ccircle cx='12' cy='12' r='3' fill='%23d6b36f'/%3E%3C/svg%3E") 12 12, pointer;
}

/* ===== BASE ===== */
body {
    font-family: 'Cormorant Garamond', Georgia, serif;
    min-height: 100vh;
    background: url("images/fond-K2.png") center / cover no-repeat fixed;
    color: white;
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.38);
    z-index: 0;
    pointer-events: none;
}

/* ===== HEADER / NAV ===== */
header {
    position: fixed;
    top: 20px;
    width: 100%;
    text-align: center;
    z-index: 10;
}

nav {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    background: rgba(15, 10, 25, 0.40);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(214, 179, 111, 0.30);
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 18px;
    font-size: 1.1rem;
    letter-spacing: 2px;
    transition: color 0.3s, text-shadow 0.3s;
}

nav a:hover,
nav a:focus-visible {
    color: #d6b36f;
    text-shadow: 0 0 10px #d6b36f;
    outline: none;
}

/* ===== MAIN / HERO ===== */
main {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 90px 20px 10px;
    overflow: hidden;
}

.logo-container {
    text-align: center;
    animation: fadeIn 1.5s ease;
}

.logo-wrap {
    position: relative;
    display: inline-block;
}

.logo-le {
    position: absolute;
    left: 14%;
    bottom: 38%;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-weight: 600;
    font-size: calc(min(480px, 70vmin) * 0.09);
    background: linear-gradient(160deg, #f5e6b0 10%, #c9973a 45%, #f0d080 60%, #a8721e 80%, #e8c96a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.6));
    line-height: 1;
    white-space: nowrap;
    pointer-events: none;
}

.logo {
    width: min(480px, 70vmin);
    height: auto;
    filter:
        drop-shadow(0 0 15px rgba(214, 179, 111, 0.5))
        drop-shadow(0 0 30px rgba(214, 179, 111, 0.3));
}

h1 {
    margin-top: 4px;
    font-size: 2.6rem;
    letter-spacing: 5px;
    font-weight: 300;
    line-height: 1.1;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.h1-sub {
    display: inline;
    font-size: 2.6rem;
    letter-spacing: 5px;
    font-weight: 300;
    color: #e8d6a7;
}

/* ===== SÉPARATEUR DORÉ ===== */
.title-separator {
    display: flex;
    justify-content: center;
    margin: 10px auto 8px;
}

.title-separator span {
    display: block;
    width: 80px;
    height: 1px;
    background: linear-gradient(to right, transparent, #d6b36f, transparent);
}

/* ===== ZONE GÉO ===== */
.zone-geo {
    font-family: 'Lato', sans-serif;
    font-size: 0.78rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(214, 179, 111, 0.65);
    margin-bottom: 6px;
}

/* ===== QUICK CONTACT ===== */
.quick-contact {
    margin-top: 10px;
    color: rgba(255,255,255,0.6);
    font-family: 'Lato', sans-serif;
    font-size: 0.82rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 2;
}

.tel-pill {
    display: inline-block;
    margin-top: 8px;
    padding: 10px 28px;
    border: 1px solid rgba(214, 179, 111, 0.55);
    border-radius: 50px;
    color: #e8d6a7;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.35s;
    backdrop-filter: blur(6px);
    background: rgba(214, 179, 111, 0.06);
}

.tel-pill:hover,
.tel-pill:focus-visible {
    background: rgba(214, 179, 111, 0.18);
    border-color: #d6b36f;
    color: #fff;
    box-shadow: 0 0 18px rgba(214, 179, 111, 0.3);
    outline: none;
}

/* ===== SYMBOLS ===== */
.symbols {
    margin-top: 24px;
}

.symbols span {
    font-size: 2.4rem;
    margin: 0 22px;
    cursor: pointer;
    transition: color 0.3s, transform 0.3s, text-shadow 0.3s;
    display: inline-block;
    animation: glow 4s ease-in-out infinite;
}

.symbols span:nth-child(2) { animation-delay: 1s; }
.symbols span:nth-child(3) { animation-delay: 2s; }
.symbols span:nth-child(4) { animation-delay: 3s; }

.symbols span:hover,
.symbols span:focus-visible {
    color: #d6b36f;
    text-shadow: 0 0 15px #d6b36f;
    transform: scale(1.2);
    outline: none;
}

/* ===== FOOTER LÉGAL ===== */
.footer-legal {
    position: fixed;
    bottom: 8px;
    width: 100%;
    text-align: center;
    z-index: 2;
}

.footer-legal a {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.28);
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: rgba(255, 255, 255, 0.65);
}

/* ===== POPUP ===== */
.popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    z-index: 50;
    overflow-y: auto;
    padding: 60px 20px;
    scrollbar-width: thin;
    scrollbar-color: rgba(214,179,111,0.4) transparent;
}

.popup::-webkit-scrollbar {
    width: 4px;
}

.popup::-webkit-scrollbar-track {
    background: transparent;
}

.popup::-webkit-scrollbar-thumb {
    background: rgba(214,179,111,0.4);
    border-radius: 2px;
}

.popup-content {
    position: relative;
    margin: auto;
    width: 100%;
    max-width: 680px;
    padding: 40px 44px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    background: rgba(25, 15, 40, 0.80);
    box-shadow: 0 0 40px rgba(214, 179, 111, 0.20);
}

.popup-title {
    text-align: center;
    margin-bottom: 28px;
    color: #d6b36f;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 3px;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.popup-content h3 {
    margin-top: 22px;
    margin-bottom: 6px;
    font-size: 1.1rem;
    color: #e8d6a7;
    font-weight: normal;
}

.popup-content p {
    line-height: 1.85;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.90);
}

/* Close button */
.close {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 1.8rem;
    cursor: pointer;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1;
    transition: color 0.3s;
    padding: 4px 8px;
}

.close:hover,
.close:focus-visible {
    color: #d6b36f;
    outline: none;
}

/* ===== A PROPOS ===== */
.about-container {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    flex-wrap: wrap;
}

.about-photo {
    width: 260px;
    height: 260px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 2px solid rgba(214, 179, 111, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    font-size: 4rem;
    letter-spacing: 2px;
    color: #d6b36f;
    overflow: hidden;
}

.lek-wrap {
    position: relative;
    display: inline-flex;
    align-items: flex-end;
}

.lek-k {
    font-size: 1em;
    line-height: 1;
}

.about-le {
    font-size: 0.32em;
    font-style: italic;
    font-weight: 300;
    opacity: 0.75;
    line-height: 1;
    margin-right: 3px;
    padding-bottom: 8px;
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text {
    flex: 1;
    min-width: 220px;
}

/* ===== CONTACT ===== */
.contact-coords {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 4px;
}

.contact-coord-link {
    color: #e8d6a7;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.contact-coord-link:hover {
    color: #d6b36f;
}

.contact-horaires {
    font-family: 'Lato', sans-serif;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1px;
    margin-top: 4px;
}

.contact-separator {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(214,179,111,0.35), transparent);
    margin: 22px 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-form input,
.contact-form textarea {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(214,179,111,0.25);
    border-radius: 10px;
    padding: 12px 16px;
    color: white;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    outline: none;
    transition: border-color 0.3s, background 0.3s;
    resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255,255,255,0.35);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(214,179,111,0.6);
    background: rgba(214,179,111,0.06);
}

.contact-send {
    align-self: flex-end;
    padding: 10px 28px;
    border: 1px solid rgba(214,179,111,0.55);
    border-radius: 50px;
    background: rgba(214,179,111,0.08);
    color: #e8d6a7;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 2px;
    transition: all 0.3s;
}

.contact-send:hover {
    background: rgba(214,179,111,0.22);
    border-color: #d6b36f;
    color: #fff;
    box-shadow: 0 0 14px rgba(214,179,111,0.25);
}

/* ===== TARIFS ===== */
.tarifs-list {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tarif-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(214, 179, 111, 0.20);
}

.tarif-item:hover {
    background: rgba(214, 179, 111, 0.08);
}

.tarif-supplement {
    border-style: dashed;
    opacity: 0.8;
}

.tarif-label {
    flex: 1;
    font-size: 1rem;
    color: #e8d6a7;
}

.tarif-duree {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    min-width: 40px;
    text-align: right;
}

.tarif-prix {
    font-size: 1.1rem;
    font-weight: bold;
    color: #d6b36f;
    min-width: 50px;
    text-align: right;
}

/* ===== SIGNATURE À PROPOS ===== */
.about-signature {
    margin-top: 18px;
    color: #d6b36f;
    font-style: normal;
    line-height: 1.6;
}

/* ===== STARS ===== */
.stars-block {
    text-align: center;
    margin-top: 16px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes floatLogo {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

@keyframes glow {
    0%, 100% { opacity: 0.7; }
    50%       { opacity: 1; }
}

/* ===== RESPONSIVE MOBILE ===== */
@media (max-width: 600px) {

    main {
        padding: 70px 16px 16px;
        height: 100dvh;
    }

    nav {
        padding: 8px 12px;
        border-radius: 20px;
    }

    nav a {
        margin: 0 8px;
        font-size: 0.78rem;
        letter-spacing: 0.5px;
    }

    .logo {
        width: min(340px, 65vmin);
        height: auto;
    }

    h1 {
        font-size: 1.7rem;
        letter-spacing: 3px;
        margin-top: 8px;
    }

    .h1-sub {
        font-size: 1.7rem;
        letter-spacing: 3px;
    }

    .title-separator {
        margin: 8px auto 6px;
    }

    .zone-geo {
        font-size: 0.65rem;
        letter-spacing: 2px;
    }

    .quick-contact {
        font-size: 0.72rem;
        margin-top: 8px;
    }

    .tel-pill {
        padding: 8px 20px;
        font-size: 0.88rem;
    }

    .symbols {
        margin-top: 18px;
    }

    .symbols span {
        font-size: 1.7rem;
        margin: 0 12px;
    }

    .popup {
        padding: 40px 12px;
    }

    .popup-content {
        padding: 28px 18px;
    }

    .popup-title {
        font-size: 1.5rem;
    }

    .about-container {
        flex-direction: column;
        align-items: center;
    }

    .tarif-item {
        padding: 10px 12px;
    }

    .contact-send {
        align-self: stretch;
        text-align: center;
    }
}
