/* =========================================
   VARIABLES GLOBALES ET BASES
   ========================================= */
:root {
    /* Couleurs du nouveau logo */
    --purple-champion: #532380;       /* Violet Impérial */
    --purple-dark: #3a1859;         /* Violet plus sombre pour les contrastes */
    --gold-champion: #FFD700;         /* Jaune Doré / Or */
    --gold-hover: #e6c200;           /* Or légèrement plus sombre pour le hover */
    
    --white: #ffffff;
    --light-gray: #f9f9f9;
    --dark-text: #2a2a2a;
    --shadow: 0 10px 30px rgba(83, 35, 128, 0.1); /* Ombre teintée violette */
}

.menu-link-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

.menu-link-card:hover .custom-card {
    transform: translateY(-5px);
    transition: 0.3s ease;
    cursor: pointer;
}

body { 
    background-color: var(--white); 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    color: var(--dark-text);
}

/* =========================================
   COMPOSANT HERO (Commun à toutes les pages)
   ========================================= */
.blog-hero, .contact-hero, .about-hero, .playground-header, .menu-header, .playground-hero, .event-hero {
    background: linear-gradient(135deg, rgba(83, 35, 128, 0.4), rgba(58, 24, 89, 0.5)), url('../images/banner.jpg');
    background-size: cover;
    background-position: center;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.details-header {
    background: linear-gradient(135deg, rgba(83, 35, 128, 0.3), rgba(58, 24, 89, 0.4)), url('../images/banner.jpg');
    background-size: cover;
    background-position: center;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.blog-hero h1, .contact-hero h1, .about-hero h1, .playground-hero h1, 
.blog-hero h3, .contact-hero h3, .playground-hero h3 {
    font-size: 50px;
    font-weight: 800;
    text-transform: uppercase;
}

/* Accentuation en Doré */
.blog-hero span, .contact-hero span, .about-hero span, .playground-hero span, .blog-hero h3 span, .contact-hero h3 span, .playground-hero h3 span {
    color: var(--gold-champion);
}

/* =========================================
   BLOG
   ========================================= */
.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold-champion);
    color: var(--purple-champion); /* Texte violet sur fond or pour lisibilité */
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    z-index: 2;
}

.read-more-link {
    color: var(--purple-champion);
    font-weight: bold;
    text-decoration: none;
}

.read-more-link:hover {
    color: var(--gold-champion);
}

/* =========================================
   CONTACT & BOITES D'INFO
   ========================================= */
.contact-info-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(83, 35, 128, 0.15);
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: #f4effa; /* Violet très clair en fond */
    color: var(--purple-champion);
    font-size: 28px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.contact-info-box:hover .icon-circle {
    background: var(--gold-champion);
    color: var(--purple-champion);
}

.btn-submit {
    background: var(--purple-champion);
    color: var(--gold-champion); /* Look Royal : Texte Or sur fond Violet */
    padding: 15px 35px;
    border: 2px solid var(--purple-champion);
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    width: 100%;
    transition: 0.3s;
}

.btn-submit:hover {
    background: var(--gold-champion);
    color: var(--purple-champion);
    border-color: var(--gold-champion);
}

.contact-form .form-control:focus {
    border-color: var(--purple-champion);
    box-shadow: 0 0 0 0.2rem rgba(83, 35, 128, 0.25);
}

/* =========================================
   MENU & FILTRES
   ========================================= */
.btn-filter, .filter-btn {
    background: transparent; 
    border: 2px solid var(--purple-champion);
    color: var(--purple-champion); 
    padding: 8px 25px; 
    margin: 5px;
    border-radius: 25px; 
    font-weight: bold; 
    transition: 0.3s;
}

.btn-filter.active, .btn-filter:hover, .filter-btn.active {
    background: var(--purple-champion); 
    color: var(--gold-champion);
}

.menu-price { 
    color: var(--purple-champion); 
    font-size: 1.2em; 
    font-weight: 800; 
    float: right; 
}

/* =========================================
   GALERIE ET AIRE DE JEUX
   ========================================= */
.gallery-overlay {
    background: rgba(83, 35, 128, 0.85); /* Overlay Violet */
}

.play-card:hover {
    transform: translateY(-10px);
    border-bottom: 5px solid var(--gold-champion);
}

.play-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 20px;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.play-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.play-content {
    text-align: center;
}

.play-content h3 {
    color: var(--purple-champion);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.play-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.age-badge {
    background: var(--purple-champion);
    color: var(--gold-champion);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: bold;
}

.btn-learn-more {
    background: var(--gold-champion);
    color: var(--purple-champion);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.btn-learn-more:hover {
    background-color: var(--purple-champion);
    color: var(--gold-champion) !important;
}

.safety-info {
    background: #f4effa;
    border-left: 5px solid var(--purple-champion);
}

.safety-info i {
    color: var(--purple-champion);
}

/* =========================================
   PAGINATION
   ========================================= */
.page-link-custom.active, .page-link-custom:hover {
    background: var(--purple-champion);
    color: var(--gold-champion);
    border-color: var(--purple-champion);
}

/* =========================================
   HOMEPAGE / ACCUEIL
   ========================================= */
.homepage-section {
    color: var(--dark-text);
}
.section-accent {
    color: var(--gold-champion) !important;
}
.section-title {
    color: var(--purple-champion);
}
.section-divider {
    width: 64px;
    height: 4px;
    background: var(--gold-champion);
    margin: 18px auto 32px;
    border-radius: 999px;
}
.custom-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 26px 24px;
    border: 1px solid rgba(83, 35, 128, 0.08);
    box-shadow: 0 22px 50px rgba(83, 35, 128, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.custom-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 70px rgba(83, 35, 128, 0.12);
}
.dish-title {
    color: var(--purple-champion);
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
}
.dish-desc {
    color: #555;
    line-height: 1.75;
}
.action-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.price-tag {
    color: var(--purple-champion);
    font-weight: 800;
}
.cart-outline-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--purple-champion);
    background: transparent;
    color: var(--purple-champion);
    font-size: 18px;
    transition: all 0.25s ease;
}
.cart-outline-btn:hover {
    background: var(--purple-champion);
    color: var(--gold-champion);
    border-color: var(--purple-champion);
}
.btn-orange-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 34px;
    border-radius: 999px;
    background: var(--purple-champion);
    color: var(--gold-champion);
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 16px 32px rgba(83, 35, 128, 0.16);
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.btn-orange-pill:hover {
    transform: translateY(-2px);
    background: var(--gold-champion);
    color: var(--purple-champion);
}
.team-main {
    background: linear-gradient(180deg, rgba(83, 35, 128, 0.05), rgba(255, 215, 0, 0.03));
}
.sf-team {
    background: #ffffff;
    border-radius: 28px;
    padding: 24px;
    box-shadow: 0 22px 56px rgba(83, 35, 128, 0.08);
    transition: transform 0.25s ease;
}
.sf-team:hover {
    transform: translateY(-8px);
}
.sf-team h3 {
    color: var(--purple-champion);
    margin-top: 18px;
}
.sf-team p {
    color: #555;
    line-height: 1.75;
}
.team-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(83, 35, 128, 0.08);
    color: var(--purple-champion);
    transition: background 0.25s ease, color 0.25s ease;
}
.team-social a:hover {
    background: var(--gold-champion);
    color: var(--purple-champion);
}
.gallery-overlay {
    background: linear-gradient(180deg, rgba(83, 35, 128, 0.92), rgba(83, 35, 128, 0.45));
}
.gallery-zoom {
    background: rgba(255, 255, 255, 0.94);
    color: var(--purple-champion);
}
.gallery-zoom:hover {
    background: var(--gold-champion);
    color: #ffffff;
}
.testimonial-section {
    background: #f4effa;
    padding: 80px 0;
}
.testimonial-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 22px 60px rgba(83, 35, 128, 0.08);
    border-top: 4px solid var(--gold-champion);
    transition: transform 0.25s ease;
}
.testimonial-card:hover {
    transform: translateY(-6px);
}
.testimonial-card p {
    color: #444;
    font-style: italic;
    line-height: 1.8;
}
.testimonial-card strong {
    color: var(--purple-champion);
}
.reservations-main {
    background: linear-gradient(180deg, rgba(83, 35, 128, 0.04), rgba(255, 215, 0, 0.04));
    padding: 80px 0;
}
.form-reservations-box {
    background: #ffffff;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 24px 60px rgba(83, 35, 128, 0.09);
}
.form-title {
    font-size: 2rem;
    color: var(--purple-champion);
    margin-bottom: 10px;
}
.form-box input,
.form-box select,
.form-box textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(83, 35, 128, 0.16);
    border-radius: 12px;
    color: var(--dark-text);
    background: #ffffff;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.form-box input:focus,
.form-box select:focus,
.form-box textarea:focus {
    border-color: var(--purple-champion);
    box-shadow: 0 0 0 0.15rem rgba(83, 35, 128, 0.14);
}
.reserve-book-btn button {
    background: var(--purple-champion);
    color: var(--gold-champion);
    padding: 14px 30px;
    border: none;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}
.reserve-book-btn button:hover {
    background: var(--gold-champion);
    color: var(--purple-champion);
    transform: translateY(-2px);
}
.reservation-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}
.reservation-modal .modal-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 36px;
    max-width: 480px;
    width: 90%;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
}
.reservation-modal .modal-card button.close-modal {
    position: absolute;
    top: 16px;
    right: 18px;
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
}
.reservation-modal .modal-card h3 {
    color: var(--purple-champion);
}
.reservation-modal .modal-card a.primary {
    background: var(--purple-champion);
    color: var(--gold-champion);
}
.reservation-modal .modal-card a.secondary {
    background: transparent;
    color: var(--purple-champion);
    border: 2px solid rgba(83, 35, 128, 0.2);
}
.reservation-modal .modal-card a.secondary:hover {
    border-color: var(--purple-champion);
}
.scrollup {
    background: var(--purple-champion);
    color: var(--gold-champion);
    padding: 14px 16px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 40;
}
.scrollup:hover {
    background: var(--gold-champion);
    color: var(--purple-champion);
}

/* Layout overrides for navigation and footer */
.main-menu .navbar-default .navbar-nav li a,
.main-menu nav li a {
    color: #fff;
}
.main-menu .navbar-default .navbar-nav .active a,
.main-menu nav li a:hover,
.main-menu nav li a:focus {
    color: var(--gold-champion);
}
.navbar-default .navbar-toggle .icon-bar,
.main-menu .navbar-default .navbar-toggle .icon-bar {
    background-color: var(--gold-champion) !important;
}
.main-menu nav li a::before,
.main-menu nav li a::after {
    background: var(--gold-champion);
}
.fixed-menu {
    background-color: rgba(83, 35, 128, 0.95) !important;
    box-shadow: 0 6px 28px rgba(83, 35, 128, 0.25) !important;
}
.fixed-menu .navbar-brand > img {
    max-width: 150px;
}
.fixed-menu .main-menu nav li a {
    padding: 32px 0px 10px 0;
}
.book-btn a,
.book-srv a,
.blog-btn-v a,
.pricing-main .panel-footer a,
.reserve-book-btn button,
.footer-news form a,
.footer-news button.orange-btn,
.orange-btn {
    background: var(--gold-champion) !important;
    border-color: var(--gold-champion) !important;
    color: var(--purple-champion) !important;
}
.book-btn a:hover,
.blog-btn-v a:hover,
.reserve-book-btn button:hover,
.footer-news form a:hover,
.footer-news button.orange-btn:hover,
.footer-box-b ul li a:hover,
.footer-box-c p a:hover {
    background: var(--purple-champion) !important;
    color: var(--gold-champion) !important;
    border-color: var(--purple-champion) !important;
}
.hvr-underline-from-center::before {
    background: var(--gold-champion) !important;
}
.block-title {
    color: var(--purple-champion) !important;
}
.footer-news {
    background: linear-gradient(180deg, rgba(83, 35, 128, 0.88), rgba(83, 35, 128, 0.85)), url('../images/newsletter-bg.jpg') no-repeat center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}
.footer-news::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(83, 35, 128, 0.65);
}
.footer-news p,
.footer-news .ft-title,
.footer-news input,
.footer-news form a,
.footer-news form a:hover {
    position: relative;
    z-index: 2;
}
.footer-news p {
    color: #fff;
}
.footer-news form input {
    width: 100%;
    border: 2px solid rgba(255, 215, 0, 0.45);
    background: rgba(255,255,255,0.96);
    color: #222;
    border-radius: 8px;
    padding: 14px 16px;
}
.footer-box {
    background: radial-gradient(ellipse at center, rgba(83, 35, 128, 0.9) 0%, rgba(19, 7, 45, 1) 100%) !important;
}
.footer-box-a h3,
.footer-box-b h3,
.footer-box-c h3,
.footer-box-d h3 {
    color: var(--gold-champion) !important;
}
.footer-box-b ul li a,
.footer-box-c p a {
    color: #fff !important;
}
.footer-box-c p i,
.footer-box .socials-box a:hover .social-circle-border {
    color: var(--gold-champion) !important;
}
.footer-box-d ul li span {
    color: #d3d3d3;
}
.copyright-main {
    background: var(--purple-champion) !important;
    color: var(--gold-champion) !important;
}
.copyright-main a {
    color: var(--gold-champion) !important;
}
.reservations-main .block-title {
    color: var(--purple-champion) !important;
    text-align: center;
}
.form-title {
    color: var(--purple-champion);
    margin-bottom: 10px;
}
.reservations-main .form-reservations-box {
    max-width: 980px;
    margin: 0 auto;
    padding: 40px;
}
.reserve-book-btn button {
    background: var(--purple-champion) !important;
    color: var(--gold-champion) !important;
    border: 2px solid var(--purple-champion) !important;
    padding: 14px 30px;
    border-radius: 999px;
    font-weight: 800;
}
.reserve-book-btn button:hover {
    background: var(--gold-champion) !important;
    color: var(--purple-champion) !important;
}
