/* ===================================
   VARIABLES
   =================================== */
:root {
    --beige: #F3E9D9;
    --mint: #ECFFF5;
    --black: #1A1A1A;
    --grey: #4A4A4A;
    --white: #FFFFFF;

    --section-x-padding: 4vw;
}

/* ===================================
   TYPOGRAPHIE
   =================================== */
body {
    font-family: 'Josefin Sans', sans-serif;
    color: var(--black);
    background-color: var(--beige);
    padding-top: 100px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Josefin Sans', sans-serif;
    color: var(--black);
}


a {
    text-decoration: none;
    color: var(--black);
}

a:visited {
  color: var(--black);
}

a:hover {
    text-decoration: none;
}

/* ===================================
   UTILITAIRES
   =================================== */
.bg-beige { background-color: var(--beige); }
.bg-mint { background-color: var(--mint); }
.bg-black { background-color: var(--black); }
.bg-grey { background-color: var(--grey); }

.text-beige { color: var(--beige); }
.text-mint { color: var(--mint); }
.text-black { color: var(--black); }
.text-grey { color: var(--grey); }

/* ===================================
   LAYOUT
   =================================== */
.container-fluid {
    padding-left: var(--section-x-padding);
    padding-right: var(--section-x-padding);
}


/* ===================================
   HEADER
   =================================== */
.site-header {
    background-color: var(--beige);
}

.site-header img{max-width: 200px;}

/* Menu */
.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
}

.main-navigation a {
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
}

.main-navigation a:hover {
    color: var(--grey);
}

/* Sélecteur de langue */
.language-switcher ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 0.5rem;
}

.language-switcher a {
    color: var(--black);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.language-switcher .current-lang a {
    font-weight: bold;
}

/* ===================================
   HEADER STICKY
   =================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
}

.site-header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0 !important;
}

.site-header.scrolled .logo {
    max-height: 50px;
    transition: max-height 0.3s ease-in-out;
}

/* ===================================
   HERO IMAGE
   =================================== */
.hero-image-wrapper {
    position: relative;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-text {
    z-index: 2;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.hero-text p {
    font-size: 1.5rem;
    color: var(--white);
}


/* ===================================
   FOOTER
   =================================== */
.site-footer .logo img{max-width: 250px;}



/* ===================================
   CONTACT FORM 7
   =================================== */
/* Formulaire Contact Form 7 */
.wpcf7-form {
    max-width: 900px;
}

/* Labels */
.wpcf7-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #000;
}

/* Texte "(obligatoire)" */
.wpcf7-form .wpcf7-form-control-wrap::before {
    content: "(obligatoire)";
    font-size: 14px;
    font-weight: 400;
    color: #666;
    margin-left: 5px;
}

/* Inputs et textarea */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #1A1A1A;
    border-radius: 25px;
    background: transparent;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: #333;
}

/* Textarea spécifique */
.wpcf7-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* Groupe de 2 colonnes (Prénom / Nom) */
.wpcf7-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

/* Champs pleine largeur */
.wpcf7-form > p {
    margin-bottom: 20px;
}

/* Bouton submit */
.wpcf7-form input[type="submit"] {
    background: #000;
    color: #fff;
    border: none;
    padding: 12px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
}

.wpcf7-form input[type="submit"]:hover {
    background: #333;
}

/* Messages de validation */
.wpcf7-not-valid-tip {
    font-size: 14px;
    color: #d00;
    margin-top: 5px;
}

.wpcf7-response-output {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
}

/* ===================================
   EVERSPORTS
   =================================== */

/* Section Eversports */
.eversports-app {
    padding: 80px 0;
}

.eversports-card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.eversports-card .row {
    min-height: 400px;
}

.eversports-content {
    text-align: center;
}



.eversports-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2c2c2c;
}

.eversports-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.eversports-image {
    height: 100%;
}

.eversports-image img {
    border-radius: 0 30px 30px 0;
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 991px) {
    .eversports-image img {
        border-radius: 0 0 30px 30px;
        min-height: 300px;
    }
}



/* ===================================
   TARIFS
   =================================== */

/* Cards Tarifs */
.card-tarif {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.card-tarif:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Bandeaux diagonaux */
.badge-offre,
.badge-bestseller {
    position: absolute;
    top: 25px;
    right: -35px;
    width: 150px;
    padding: 8px 0;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: rotate(45deg);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.badge-offre {
    background: var(--mint);
    color: var(--black);
}

.badge-bestseller {
    background: var(--mint);
    color: var(--black);
}

/* Header Card */
.card-tarif-header {
    text-align: center;
    margin-bottom: 20px;
}

.card-tarif-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 8px;
}

.card-subtitle {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Prix */
.card-tarif-price {
    text-align: center;
    margin-bottom: 30px;
}

.price {
    font-size: 56px;
    font-weight: 800;
    color: var(--black);
    line-height: 1;
}

.price sup {
    font-size: 28px;
    font-weight: 700;
}

.price-detail {
    font-size: 14px;
    color: #999;
    margin: 5px 0 0 0;
}

.economie {
    font-size: 14px;
    color: var(--grey);
    font-weight: 600;
    margin: 5px 0 0 0;
}

/* Features */
.card-tarif-features {
    flex-grow: 1;
    margin-bottom: 30px;
}

.card-tarif-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-tarif-features li {
    padding: 10px 0;
    font-size: 15px;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.card-tarif-features li:last-child {
    border-bottom: none;
}

/* Bouton */
.btn-tarif {
    display: block;
    background: #2c2c2c;
    color: #fff;
    text-align: center;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-tarif:hover {
    background: #000;
    color: #fff;
}



