﻿/* STYLE GLOBAL — dans l'esprit du flyer Diamantika */

:root {
    --pink: #ff008a;
    --pink-light: #ff5fb4;
    --dark: #090508;
    --dark-soft: #151018;
    --text-main: #ffffff;
    --text-muted: #f5d9f5;
    --font-body: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: "Playfair Display", "Times New Roman", serif;
}

.font-playfair {
    --font-body: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: "Playfair Display", "Times New Roman", serif;
}

.font-cinzel {
    --font-body: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: "Cinzel", "Times New Roman", serif;
}

.font-greatvibes {
    --font-body: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: "Great Vibes", cursive;
}

.font-croissant {
    --font-body: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: "Croissant One", cursive;
}

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

body {
    font-family: var(--font-body);
    background: radial-gradient(circle at top, #2a102a 0%, #050306 55%, #000000 100%);
    color: var(--text-main);
    line-height: 1.6;
    min-height: 100vh;
}

/* Bande rose en fond, façon flyer */

.page-bg {
    position: fixed;
    inset: 0;
    background:
        linear-gradient(110deg, transparent 0 40%, rgba(255, 0, 138, 0.16) 40%, rgba(255, 0, 138, 0.3) 60%, transparent 60% 100%);
    z-index: -1;
}

/* HEADER */

.site-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 1.25rem 0.5rem;
}

.logo-zone {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.diamond-icon {
 /*   width: 70px;*/
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.diamond-icon img {
    max-width: 100%;
    max-height: 100%;
}

.logo-text h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.1rem, 4vw, 2.8rem);
    letter-spacing: 0.22em;
    color: #ffffff;
    text-shadow: 0 0 14px rgba(255, 255, 255, 0.8);
}

.logo-top,
.logo-sub {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--pink-light);
}

/* NAVIGATION */

.main-nav {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.main-nav a {
    text-decoration: none;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 400;
    backdrop-filter: blur(4px);
    background-color: rgba(0, 0, 0, 0.4);
    transition: all 0.2s ease;
}

.main-nav a:hover {
    border-color: var(--pink);
    background: radial-gradient(circle at top, rgba(255, 0, 138, 0.6), rgba(0, 0, 0, 0.9));
}

/* CONTENU */

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 1.25rem 3rem;
}

/* HERO */

.hero {
    position: relative;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.7);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.7);
}

.hero-stripe {
    position: absolute;
    inset: -40px 40%;
    background: linear-gradient(160deg, var(--pink), var(--pink-light));
    opacity: 0.95;
    transform: skewX(-13deg);
    filter: drop-shadow(0 0 35px rgba(255, 0, 138, 0.7));
}

.hero-inner {
    position: relative;
    padding: 2.4rem 2rem;
}

.hero h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    margin-bottom: 1rem;
    text-shadow: 0 0 12px rgba(0, 0, 0, 0.7);
}

.hero .lead {
    font-size: 1.02rem;
    margin-bottom: 0.75rem;
}

/* SECTIONS */

.section-card {
    margin-top: 1.8rem;
    padding: 1.7rem 1.6rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(10, 5, 14, 0.96), rgba(36, 15, 38, 0.96));
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.section-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    margin-bottom: 0.8rem;
    color: #ffffff;
}

.section-card p {
    margin-bottom: 0.65rem;
    color: #f8e7ff;
}

.section-card ul {
    margin-left: 1.1rem;
    margin-bottom: 0.6rem;
}

.section-card li {
    margin-bottom: 0.25rem;
}

/* Blocs spéciaux */

.note-block {
    margin-top: 0.7rem;
    padding: 0.85rem 0.9rem;
    border-radius: 14px;
    background: rgba(255, 0, 138, 0.12);
    border: 1px dashed rgba(255, 0, 138, 0.6);
}

.note-block h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: var(--pink-light);
}

.warning {
    margin-top: 0.4rem;
    font-weight: 600;
    color: #ffb3c4;
}

.highlight {
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Colonnes responsive pour les points forts */

.columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 0.35rem 1.5rem;
}

/* TAGS SEO (affichage discret) */

.seo-tags {
    margin-top: 0.4rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    opacity: 0.85;
}

/* CONTACT */

.contact-card a {
    color: var(--pink-light);
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

.socials a {
    padding: 0.15rem 0.45rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-right: 0.4rem;
    font-size: 0.8rem;
    color: var(--text-main);
    text-decoration: none;
}

.small {
    margin-top: 0.6rem;
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* FORMULAIRE CONTACT */

.alert {
    margin: 0.8rem 0 1rem;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.4);
}

.alert-success {
    border-color: rgba(0, 255, 170, 0.5);
    background: rgba(0, 255, 170, 0.08);
    color: #d5ffee;
}

.alert-error {
    border-color: rgba(255, 80, 80, 0.5);
    background: rgba(255, 80, 80, 0.08);
    color: #ffd6d6;
}

.contact-form {
    display: grid;
    gap: 0.75rem;
    margin: 1rem 0 0.4rem;
}

.contact-form label {
    font-size: 0.9rem;
    color: #f5defa;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 0.65rem 0.75rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.35);
    color: var(--text-main);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 1px solid var(--pink);
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(255, 0, 138, 0.15);
}

.contact-form button {
    justify-self: start;
    padding: 0.7rem 1.4rem;
    border: none;
    border-radius: 999px;
    background: linear-gradient(120deg, var(--pink), var(--pink-light));
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(255, 0, 138, 0.35);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.contact-form button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(255, 0, 138, 0.45);
}

.map-block {
    margin-top: 1rem;
}

.map-block h4 {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    color: var(--text-main);
}

.map-embed {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
    background: rgba(0, 0, 0, 0.35);
}

.map-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.map-links {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.map-links a {
    color: var(--pink-light);
    text-decoration: none;
}

.map-links a:hover {
    text-decoration: underline;
}

.link-accent {
    color: var(--pink-light);
    text-decoration: none;
    font-weight: 700;
}

.link-accent:visited,
.link-accent:hover,
.link-accent:focus {
    color: var(--pink-light);
    text-decoration: none;
}

/* Force color for the link in "Nos points forts" even after visit */
.section-card .columns a.link-accent,
.section-card .columns a.link-accent:visited,
.section-card .columns a.link-accent:hover,
.section-card .columns a.link-accent:focus {
    color: var(--pink-light) !important;
    text-decoration: none;
    font-weight: 700;
}

.qr-card .qr-content {
    display: grid;
    gap: 1rem;
    align-items: center;
}

.qr-card .qr-text p + p {
    margin-top: 0.35rem;
}

.qr-card .qr-link {
    color: var(--pink-light);
    text-decoration: none;
    font-weight: 600;
}

.qr-card .qr-link:hover {
    text-decoration: underline;
}

.qr-card .qr-image {
    justify-self: start;
    max-width: 220px;
}

.qr-card .qr-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}

.contact-form select {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: rgba(0, 0, 0, 0.35);
    color: var(--text-main);
}

.contact-form select option {
    background: rgba(0, 0, 0, 0.9);
    color: var(--text-main);
}

.hidden-field {
    position: absolute;
    left: -9999px;
    visibility: hidden;
}

/* RESPONSIVE */

@media (max-width: 768px) {
    .logo-zone {
        flex-direction: row;
        align-items: center;
    }

    .diamond-icon {
        width: 55px;
        height: 55px;
    }

    .hero-inner {
        padding: 1.7rem 1.4rem;
    }

    .section-card {
        padding: 1.4rem 1.25rem;
    }

    .qr-card .qr-content {
        grid-template-columns: 1fr;
    }

    .qr-card .qr-image {
        justify-self: center;
    }
}

@media (max-width: 520px) {
    .main-nav {
        gap: 0.4rem;
    }

    .main-nav a {
        font-size: 0.75rem;
        padding: 0.35rem 0.7rem;
    }

    .logo-text h1 {
        font-size: 1.8rem;
    }
}
