/* ===================================
   JFDev Champagne - Custom Styles Premium
   Couleurs premium: sombres et dorées
   =================================== */
/* Margin top pour la navbar sur les articles */

.container {
    margin-top: 70px;
}

strong {
    color: #dfce72;
}

   /* Sélecteur de langue Polylang */
.language-switcher {
    margin-left: 1rem;
}

.language-switcher .dropdown-trigger button {
    background: transparent !important;
    border: 1px solid var(--color-gold) !important;
    color: var(--color-gold) !important;
    transition: var(--color-transition);
}

.language-switcher .dropdown-trigger button:hover {
    background: var(--color-gold) !important;
    color: var(--color-darker-bg) !important;
    transform: translateY(-1px);
}

.language-switcher .dropdown-content {
    background: var(--color-darker-bg) !important;
    border: 1px solid var(--color-gold);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.language-switcher .dropdown-item {
    color: var(--color-light-text) !important;
    transition: var(--color-transition);
}

.language-switcher .dropdown-item:hover {
    background: var(--color-gold) !important;
    color: var(--color-darker-bg) !important;
}

.language-switcher .dropdown-item.is-active {
    background: var(--color-dark-gold) !important;
    color: var(--color-darker-bg) !important;
}

/* Import Google Fonts - Typos Premium */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Cormorant+Garamond:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700;800;900&family=Libre+Baskerville:wght@400;700&display=swap');

:root {
    --color-gold: #c9a961;
    --color-dark-gold: #b8941f;
    --color-light-gold: #e6d5a8;
    --color-dark-bg: #0a0a0a;
    --color-darker-bg: #000000;
    --color-light-text: #f5f5f5;
    --color-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'Cinzel', serif;
    --font-body: 'Cormorant Garamond', serif;
}

/* Global */
body {
    font-family: var(--font-body);
    background-color: var(--color-dark-bg);
    color: var(--color-light-text);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Fix pour iOS - empêcher les problèmes de zoom */
@media screen and (max-width: 1023px) {
    body {
        -webkit-text-size-adjust: 100%;
        -moz-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
}

.has-text-gold {
    color: var(--color-gold) !important;
}

.is-gold {
    background-color: var(--color-gold) !important;
    border-color: var(--color-gold) !important;
    color: var(--color-darker-bg) !important;
    font-weight: 600;
    transition: var(--color-transition);
}

.is-gold:hover {
    background-color: var(--color-dark-gold) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(212, 175, 55, 0.3);
}

.is-gold.is-outlined {
    background-color: transparent !important;
    border-color: var(--color-gold) !important;
    color: var(--color-gold) !important;
}

.is-gold.is-outlined:hover {
    background-color: var(--color-gold) !important;
    color: var(--color-darker-bg) !important;
}

/* ===================================
   NAVBAR PREMIUM
   =================================== */

.champagne-navbar {
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 169, 97, 0.15);
    padding: 0;
    z-index: 1000;
    transition: var(--color-transition);
}

.champagne-navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
}

.champagne-logo {
    padding: 0.5rem 0 !important;
    display: flex;
    align-items: center;
}

.champagne-logo {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.champagne-logo img,
.custom-logo {

    max-width: 220px;

}

.champagne-logo:hover {
    background-color: transparent !important;
}

.champagne-logo:hover .logo-image {
    opacity: 1;
}

.champagne-logo::before {
    display: none !important;
}

.champagne-navbar .navbar-menu {
    background-color: transparent;
}

.champagne-navbar .navbar-item {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--color-light-text);
    padding: 1.68rem 1.5rem;
    transition: var(--color-transition);
    position: relative;
    background-color: transparent !important;
}

.champagne-navbar .navbar-item:not(.has-dropdown):not(.language-switcher)::before {
    content: '';
    position: absolute;
    bottom: 2.3rem;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.champagne-navbar .navbar-item:not(.has-dropdown):not(.language-switcher):hover {
    color: var(--color-gold) !important;
}

.champagne-navbar .navbar-item:not(.has-dropdown):not(.language-switcher):hover::before {
    width: 100%;
}

.champagne-navbar .navbar-link {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 1.68rem 1.5rem;
    position: relative;
    transition: var(--color-transition);
    background-color: transparent !important;
}

.champagne-navbar .navbar-link:hover {
    color: var(--color-gold) !important;
    background-color: transparent !important;
}

.champagne-navbar .has-dropdown:hover .navbar-link {
    color: var(--color-gold) !important;
    background-color: transparent !important;
}

.champagne-navbar .navbar-dropdown {
    background-color: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--color-gold);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8);
    padding: 0.5rem 0;
}

.champagne-navbar .navbar-dropdown .navbar-item {
    font-size: 0.8rem;
    letter-spacing: 2px;
    padding: 1rem 2rem;
}

.champagne-navbar .navbar-dropdown .navbar-item:hover {
    background-color: rgba(201, 169, 97, 0.1) !important;
    color: var(--color-gold) !important;
}

/* État actif pour la page courante */
.champagne-navbar .navbar-item:not(.has-dropdown):not(.language-switcher).current-menu-item,
.champagne-navbar .navbar-item:not(.has-dropdown):not(.language-switcher).current_page_item,
.champagne-navbar .navbar-item:not(.has-dropdown):not(.language-switcher).current-menu-ancestor {
    color: var(--color-gold) !important;
}

.champagne-navbar .navbar-item:not(.has-dropdown):not(.language-switcher).current-menu-item::before,
.champagne-navbar .navbar-item:not(.has-dropdown):not(.language-switcher).current_page_item::before,
.champagne-navbar .navbar-item:not(.has-dropdown):not(.language-switcher).current-menu-ancestor::before {
    width: 100% !important;
}

/* Hover permanent pour la page courante */
.champagne-navbar .navbar-item:not(.has-dropdown):not(.language-switcher).current-menu-item:hover,
.champagne-navbar .navbar-item:not(.has-dropdown):not(.language-switcher).current_page_item:hover,
.champagne-navbar .navbar-item:not(.has-dropdown):not(.language-switcher).current-menu-ancestor:hover {
    color: var(--color-gold) !important;
}

/* Chevron pour les éléments avec dropdown - SUPPRIMÉ */

/* Corriger le chevron Bulma par défaut */
.champagne-navbar .navbar-link::after {
    display: none !important;
}

/* Dropdown visible au hover */
.champagne-navbar .has-dropdown:hover .navbar-dropdown {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

/* Animation du dropdown */
.champagne-navbar .navbar-dropdown {
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

/* Mobile dropdown */
@media screen and (max-width: 1023px) {
    .champagne-navbar .navbar-menu.is-active .has-dropdown .navbar-dropdown {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }
    
    /* Dropdown actif sur mobile */
    .champagne-navbar .navbar-dropdown.is-active {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }
    
    /* Style pour les liens dropdown sur mobile */
    .champagne-navbar .navbar-item.has-dropdown .navbar-link::after {
        content: '▼';
        position: static;
        margin-left: 0.5rem;
        font-size: 0.7rem;
        color: var(--color-gold);
        transition: transform 0.3s ease;
        opacity: 1;
        transform: none;
    }
    
    .champagne-navbar .navbar-item.has-dropdown .navbar-link.is-active::after {
        transform: rotate(180deg);
    }
}

.navbar-burger {
    color: var(--color-gold);
    width: 4rem;
    height: 4rem;
    position: relative;
}

.menu-text {
    display: none; /* Masqué par défaut sur desktop */
}

.navbar-burger span {
    height: 2px;
    width: 22px;
    transition: all 0.3s ease;
}

/* Animation du burger en croix */
.navbar-burger.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.navbar-burger.is-active span:nth-child(2) {
    opacity: 0;
}

.navbar-burger.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Responsive Navbar */
@media screen and (max-width: 1023px) {
    .champagne-navbar {
        padding: 0;
        position: relative;
    }
    
    .champagne-navbar-container {
        padding: 1rem 2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        z-index: 1001;
    }
    
    .champagne-logo {
        padding: 0;
        flex-shrink: 0;
    }
    
    .champagne-logo img {
        height: 40px;
        max-height: 40px;
        width: auto;
        max-width: 120px;
    }
    
    .navbar-burger-wrapper {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        flex-shrink: 0;
        position: relative;
        z-index: 1002;
    }
    
    .menu-text {
        display: block;
        font-family: var(--font-display);
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: var(--color-gold);
    }
    
    .navbar-burger {
        display: flex;
        align-items: center;
        padding: 0;
        position: relative;
        z-index: 1002;
    }
    
    .champagne-navbar .navbar-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        margin: 0;
        padding-top: 80px;
        overflow-y: auto;
        display: none;
        z-index: 1000;
    }
    
    .champagne-navbar .navbar-menu.is-active {
        display: block;
    }
    
    .champagne-navbar .navbar-item {
        padding: 1.5rem 2rem;
        font-size: 1rem;
    }
    
    .champagne-navbar .navbar-dropdown {
        position: static;
        box-shadow: none;
        padding-left: 1rem;
    }
}

/* Main Content */
.main-content {
    padding-top: 0;
    min-height: calc(100vh - 300px);
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

/* ===================================
   HERO SECTION PREMIUM
   =================================== */

.champagne-hero-premium {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 800px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background Image */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/big_visual_v2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.hero-bg-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.2) 100%);
}

/* Content Wrapper */
.hero-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* CHAMPAGNE Text - Parallax Speed -6 */
.hero-champagne-text {
    margin-bottom: 2rem;
}

.champagne-word {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 4rem);
    font-weight: 900;
    letter-spacing: 0.75rem;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px var(--color-gold);
    text-stroke: 1px var(--color-gold);
    display: inline-block;
    text-shadow: 0 0 40px rgba(201, 169, 97, 0.3);
}

/* CHARLES WESTLER with Vignes Background - Parallax Speed -2 */
.hero-brand-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.hero-brand-content {
    width: 55%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
    overflow: hidden;
}

.hero-vignes-bg {
    display: none;
}

.hero-brand-text {
    font-family: 'Oswald', 'Arial Black', Impact, sans-serif;
    font-stretch: ultra-expanded;
    font-size: clamp(3.5rem, 10vw, 9rem);
    font-weight: 1000;
    letter-spacing: 1.5rem;
    text-transform: uppercase;
    background-image: url('../img/vignes-bg.jpg');
    background-position: center center;
    background-size: cover;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    margin: 0;
    line-height: 1.1;
   
}

.hero-brand-text-libre {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(1.44rem, 3.24vw, 3.24rem);
    font-weight: 700;
    letter-spacing: 0.288rem;
    text-transform: uppercase;
    color: white;
    text-shadow: none;
    margin: 0;
    line-height: 1.1;
    word-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
    overflow-wrap: break-word;
}

/* CHAMPAGNE Text repositionné sous le h1 */
.hero-champagne-text {
    margin-top: 1rem;
    margin-bottom: 0;
}

.champagne-word {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(0.672rem, 1.68vw, 1.68rem);
    font-weight: 700;
    letter-spacing: 0.168rem;
    text-transform: uppercase;
    color: white;
    display: inline-block;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
    max-width: 100%;
    overflow-wrap: break-word;
}

@media (max-width: 600px) {
    .champagne-word {
        font-size: clamp(0.504rem, 1.26vw, 1.26rem);
    }
}

/* Subtitle - Parallax Speed -4 */
.hero-subtitle-wrapper {
    margin-top: 3rem;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 400;
    letter-spacing: 0.5rem;
    text-transform: uppercase;
    color: var(--color-light-gold);
    opacity: 0.9;
}

/* CTA Button Premium */
.hero-cta {
    margin-top: 4rem;
}

.btn-premium {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-darker-bg) !important;
    background-color: var(--color-gold) !important;
    padding: 1.25rem 3rem;
    border: 2px solid var(--color-gold) !important;
    border-radius: 0;
    text-decoration: none !important;
    display: inline-block;
    transition: var(--color-transition);
    position: relative;
    overflow: hidden;
}

.btn-premium span {
    color: var(--color-darker-bg) !important;
    text-decoration: none !important;
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-light-gold);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-premium:hover {
    color: var(--color-darker-bg) !important;
    border-color: var(--color-light-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.4);
}

.btn-premium:hover span {
    color: var(--color-darker-bg) !important;
}

.btn-premium:hover::before {
    left: 0;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
    animation: float 3s ease-in-out infinite;
}

.scroll-text {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, var(--color-gold) 0%, transparent 100%);
}

@keyframes float {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* Hero Responsive - Synchronisé avec le menu mobile */
@media screen and (max-width: 1023px) {
    .champagne-hero-premium {
        min-height: 100vh;
        height: auto;
    }
    
    /* Fix pour iOS - désactiver background-attachment fixed */
    .hero-bg-image {
        background-attachment: scroll !important;
        background-size: cover;
        background-position: center center;
    }
    
    .hero-content-wrapper {
        padding-top: 90px !important;
        padding-bottom: 60px;
    }
    
    .hero-brand-wrapper {
        justify-content: center;
        padding: 1.5rem 2rem;
    }
    
    .hero-brand-content {
        width: 100%;
        max-width: 100%;
        padding-right: 0;
        padding-left: 0;
        padding-top: 4rem;
    }
    
    .champagne-word {
        font-size: 1.3rem;
        letter-spacing: 0.5rem;
        color: white;
    }
    
    .hero-brand-text-libre {
        font-size: 4.5rem;
        letter-spacing: -0.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.875rem;
        letter-spacing: 0.3rem;
    }
}

/* Section Découverte */
.champagne-discover {
    background: linear-gradient(180deg, var(--color-darker-bg) 0%, var(--color-dark-bg) 100%);
    padding: 6rem 1.5rem;
    position: relative;
    z-index: 2;
}

/* Grid des cartes découverte */
.discover-cards-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.discover-cards-grid .column {
    flex: 0 0 calc(25% - 1.5rem);
    max-width: calc(25% - 1.5rem);
    margin-bottom: 0;
}

/* Images uniformes pour les cartes */
.champagne-card .card-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.champagne-card .card-image .image {
    height: 100%;
    width: 100%;
}

.champagne-card .champagne-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.champagne-card:hover .champagne-card-img {
    transform: scale(1.05);
}

/* Contenu des cartes amélioré */
.champagne-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.champagne-card .card-content {
    padding: 1.5rem;
    background-color: rgba(13, 13, 13, 0.9);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.champagne-card .card-content .content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.champagne-card .card-content p {
    color: #b1a7a7;
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.champagne-card .title.is-4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.champagne-card .title.is-4 i {
    margin-right: 0.5rem;
    color: var(--color-gold);
}

.champagne-card .button {
    margin-top: auto;
    align-self: flex-start;
}

/* Index/Archive Template */
.section {
    padding: 8rem 3rem 4rem;
    position: relative;
    z-index: 2;
}

/* Cards */
.champagne-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--color-transition);
    height: 100%;
}

.champagne-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(212, 175, 55, 0.2);
    border-color: var(--color-gold);
}

.champagne-card-img {
    transition: transform 0.5s ease;
}

.champagne-card:hover .champagne-card-img {
    transform: scale(1.1);
}

.champagne-card .card-image {
    overflow: hidden;
}

.champagne-card .card-content {
    background-color: rgba(13, 13, 13, 0.9);
}

.champagne-card .title {
    color: var(--color-gold);
}

.champagne-card .title a {
    color: var(--color-gold);
    transition: var(--color-transition);
}

.champagne-card .title a:hover {
    color: var(--color-light-gold);
}

/* Section Parallax Intermédiaire */
.champagne-parallax-section {
    position: relative;
    padding: 0;
    min-height: max(800px, 90vh);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.champagne-parallax-section .container {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 4rem 1.5rem;
}

.champagne-parallax-section .title {
    margin-bottom: 2rem !important;
}

.champagne-parallax-section .subtitle {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Fix parallax pour mobile/iOS */
@media screen and (max-width: 1023px) {
    .champagne-parallax-section {
        background-attachment: scroll !important;
        min-height: max(600px, 70vh);
    }
    
    .champagne-parallax-section .container {
        padding: 3rem 1.5rem;
    }
}

/* Écrans moyens type laptop */
@media screen and (min-width: 1024px) and (max-height: 768px) {
    .champagne-parallax-section {
        min-height: 900px;
    }
    
    .champagne-parallax-section .container {
        padding: 3rem 1.5rem;
    }
}

.champagne-parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 13, 13, 0.75);
}

.champagne-parallax-section .container {
    position: relative;
    z-index: 2;
}

/* Page Template */
.champagne-page {
    background-color: var(--color-dark-bg);
    padding: 8rem 1.5rem 4rem;
    position: relative;
    z-index: 2;
}

.champagne-page-header {
    position: relative;
    margin-bottom: 3rem;
    border-radius: 12px;
    overflow: hidden;
    max-height: 500px;
    display: none !important;
}

.champagne-page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 13, 13, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.champagne-content {
    
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
}

.champagne-content p {
    margin-bottom: 1.5rem;
}

.champagne-content h2,
.champagne-content h3,
.champagne-content h4 {
    color: var(--color-gold);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.champagne-content img {
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

/* Single Post Template */
.champagne-single {
    background-color: var(--color-dark-bg);
    padding: 8rem 1.5rem 4rem;
    position: relative;
    z-index: 2;
}

.champagne-single-header {
    margin-bottom: 3rem;
}

.champagne-single-featured {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
    max-height: 600px;
}

.champagne-single-featured img {
    width: 100%;
    height: auto;
}

.champagne-single-title-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.champagne-single-meta {
    color: var(--color-light-text);
    opacity: 0.8;
    margin-top: 1rem;
}

.champagne-single-meta .icon-text {
    margin-right: 1.5rem;
}

.champagne-single-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.champagne-post-navigation {
    max-width: 900px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 2px solid rgba(212, 175, 55, 0.3);
}

/* ===================================
   FOOTER PREMIUM
   =================================== */

.champagne-footer-premium {
    background: linear-gradient(180deg, var(--color-dark-bg) 0%, var(--color-darker-bg) 100%);
    color: var(--color-light-text);
    padding: 0;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
    margin-top: 0;
    position: relative;
    z-index: 10;
    clear: both;
}

.footer-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 6rem 3rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

/* Logo Section */
.footer-logo-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    width: auto;
}

.footer-tagline {
    font-family: var(--font-body);
    font-size: 0.875rem;
    letter-spacing: 0.3rem;
    text-transform: uppercase;
    color: var(--color-light-gold);
    opacity: 0.8;
    line-height: 1.6;
}

/* Footer Titles */
.footer-title {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

/* Links Section */
.footer-menu-premium {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu-premium li {
    margin-bottom: 0.75rem;
}

.footer-menu-premium a {
    font-family: var(--font-body);
    font-size: 1rem;
    letter-spacing: 0.5px;
    color: var(--color-light-text);
    text-decoration: none;
    transition: var(--color-transition);
    display: inline-block;
    position: relative;
}

.footer-menu-premium a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width 0.3s ease;
}

.footer-menu-premium a:hover {
    color: var(--color-gold);
    transform: translateX(5px);
}

.footer-menu-premium a:hover::after {
    width: 100%;
}

/* Contact Section */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-info p {
    font-family: var(--font-body);
    font-size: 1rem;
    letter-spacing: 0.5px;
    color: var(--color-light-text);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-icon {
    font-size: 1.1rem;
    opacity: 0.7;
}

/* Divider */
.footer-divider-premium {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    opacity: 0.3;
    margin: 3rem 0;
}

/* Bottom Section */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
}

.footer-copyright {
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-light-text);
    opacity: 0.6;
}

.footer-credits {
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-light-text);
    opacity: 0.6;
}

.credit-highlight {
    color: var(--color-gold);
    font-weight: 700;
}

/* Footer Responsive */
@media screen and (max-width: 1024px) {
    .footer-content-wrapper {
        padding: 4rem 3rem 2rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Responsive */
@media screen and (max-width: 768px) {
    .champagne-hero-title {
        font-size: 2.5rem;
    }
    
    .champagne-hero-subtitle {
        font-size: 1.5rem;
    }
    
    .champagne-navbar .navbar-menu {
        background-color: rgba(13, 13, 13, 0.98);
    }
    
    /* Logo adapté sur petits écrans */
    .champagne-logo img {
        height: 35px;
        max-height: 35px;
        max-width: 100px;
    }
    
    /* Hero - Ajustements supplémentaires pour petits écrans */
    .champagne-hero-premium {
        min-height: 100vh;
    }
    
    .hero-brand-text-libre {
        font-size: clamp(2.5rem, 8vw, 4rem) !important;
        letter-spacing: 0.1rem !important;
    }
    
    .hero-subtitle-wrapper {
        margin-top: 2rem !important;
        padding: 0 1rem;
    }
    
    .hero-cta {
        margin-top: 2rem !important;
    }
    
    /* Grid responsive pour les cartes */
    .discover-cards-grid .column {
        flex: 0 0 calc(50% - 1rem);
        max-width: calc(50% - 1rem);
    }
    
    .champagne-card .card-image {
        height: 150px;
    }
    
    .champagne-card .card-content p {
        font-size: 1.1em;
    }
}

@media screen and (max-width: 480px) {
    .discover-cards-grid .column {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    /* Hero - Ajustements pour très petits écrans */
    .hero-brand-text-libre {
        font-size: clamp(2rem, 10vw, 3rem) !important;
        letter-spacing: 0.05rem !important;
        line-height: 1 !important;
    }
    
    .champagne-word {
        font-size: clamp(0.8rem, 3vw, 1.2rem) !important;
        letter-spacing: 0.2rem !important;
    }
    
    .hero-subtitle {
        font-size: clamp(0.7rem, 2.5vw, 0.875rem) !important;
        letter-spacing: 0.2rem !important;
    }
    
    .hero-brand-content {
        padding-top: 2rem !important;
    }
    
    .btn-premium {
        font-size: 0.75rem !important;
        padding: 1rem 2rem !important;
        letter-spacing: 2px !important;
    }
}

/* Animations supplémentaires */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* ============================================
   Liens classiques du body
   ============================================ */
body a {
    color: var(--color-gold) !important;
    text-decoration: underline;
    text-decoration-style: dotted;
    text-decoration-thickness: 1px;
    transition: all 0.3s ease;
}

body a:hover {
    color: var(--color-gold-dark) !important;
    text-decoration-style: solid;
    text-decoration-thickness: 2px;
}

/* Exceptions pour les éléments spécifiques */
.champagne-navbar a,
.footer-menu-premium a,
.language-switcher a,
.button,
.btn-premium,
.champagne-card a {
    text-decoration: none !important;
}

/* ============================================ */

/* ============================================
   H1 des pages de contenu - Style champagne
   ============================================ */
h1.title.is-1.has-text-centered.has-text-gold,
.page-content h1.title.is-1,
.single-content h1.title.is-1,
.entry-content h1.title.is-1 {
    font-family: var(--font-display) !important;
    font-size: clamp(1.8rem, 4.5vw, 3.6rem) !important;
    font-weight: 900 !important;
    letter-spacing: 0.45rem !important;
    text-transform: uppercase !important;
    color: transparent !important;
    -webkit-text-stroke: 1px var(--color-gold) !important;
    text-stroke: 1px var(--color-gold) !important;
    text-align: center !important;
    margin: 1.8rem 0 2.7rem 0 !important;
    text-shadow: 0 0 40px rgba(201, 169, 97, 0.3) !important;
    line-height: 1.08 !important;
}


/* Cibler spécifiquement les H1 avec classes Bulma */
h1.title.is-1.has-text-gold {
    font-family: var(--font-display) !important;
    font-size: clamp(2rem, 5vw, 4rem) !important;
    font-weight: 900 !important;
    letter-spacing: 0.5rem !important;
    text-transform: uppercase !important;
    color: transparent !important;
    -webkit-text-stroke: 1px var(--color-gold) !important;
    text-stroke: 1px var(--color-gold) !important;
    text-shadow: 0 0 40px rgba(201, 169, 97, 0.3) !important;
}

/* Responsive pour mobile */
@media (max-width: 768px) {
    h1.title.is-1.has-text-centered.has-text-gold,
    h1.title.is-1.has-text-gold,
    .page-content h1.title.is-1,
    .single-content h1.title.is-1,
    .entry-content h1.title.is-1 {
        font-size: clamp(1.5rem, 4vw, 2.5rem) !important;
        letter-spacing: 0.3rem !important;
        margin: 1.5rem 0 2rem 0 !important;
    }
}

/* ============================================
   H2 des pages de contenu - Style champagne (petit frère)
   ============================================ */
h2.wp-block-heading,
h2.title.is-2.has-text-centered.has-text-gold,
h2.title.is-2.has-text-gold,
.page-content h2.title.is-2,
.single-content h2.title.is-2,
.entry-content h2.title.is-2 {
    font-family: var(--font-display) !important;
    font-size: clamp(1.2rem, 3vw, 2.5rem) !important;
    font-weight: 600 !important;
    letter-spacing: 0.1rem !important;
    text-transform: uppercase !important;
    color: var(--color-gold) !important;
    margin: 1rem 0 1.5rem 0 !important;
    line-height: 1.4 !important;
}

/* Spécificité maximale pour H2 */
body h2.wp-block-heading,
body h2.title.is-2.has-text-centered.has-text-gold,
body h2.title.is-2.has-text-gold,
body .page-content h2.title.is-2,
body .single-content h2.title.is-2,
body .entry-content h2.title.is-2 {
    font-family: var(--font-display) !important;
    font-size: clamp(1.2rem, 3vw, 2.5rem) !important;
    font-weight: 600 !important;
    letter-spacing: 0.1rem !important;
    text-transform: uppercase !important;
    color: var(--color-gold) !important;
}

/* Responsive pour mobile */
@media (max-width: 768px) {
    h2.wp-block-heading,
    h2.title.is-2.has-text-centered.has-text-gold,
    h2.title.is-2.has-text-gold,
    .page-content h2.title.is-2,
    .single-content h2.title.is-2,
    .entry-content h2.title.is-2,
    body h2.wp-block-heading,
    body h2.title.is-2.has-text-centered.has-text-gold,
    body h2.title.is-2.has-text-gold,
    body .page-content h2.title.is-2,
    body .single-content h2.title.is-2,
    body .entry-content h2.title.is-2 {
        font-size: clamp(1rem, 2.5vw, 2rem) !important;
        letter-spacing: 0.05rem !important;
        margin: 0.8rem 0 1.2rem 0 !important;
    }
}

/* ============================================ */

/* ===================================
   CAROUSEL CUVÉES - Style Premium Élégant
   =================================== */

.champagne-cuvees-carousel-section {
    position: relative;
    z-index: 2;
}

.cuvees-carousel-title {
    margin-bottom: 4rem;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    letter-spacing: 0.2rem;
}

.cuvees-carousel-wrapper {
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cuvees-carousel-container {
    flex: 1;
    overflow: hidden;
    padding: 3rem 0;
}

.cuvees-carousel-track {
    display: flex;
    gap: 50px;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.cuvees-carousel-item {
    flex: 0 0 500px;
    display: flex;
    flex-direction: column;
}

.cuvees-bottle-link {
    position: relative;
    display: block;
    text-decoration: none;
    transition: var(--color-transition);
}

.cuvees-bottle-image {
    width: 100%;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    position: relative;
}

.cuvees-bottle-image::before {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 30px;
    background: radial-gradient(ellipse at center, rgba(201, 169, 97, 0.2) 0%, transparent 70%);
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cuvees-bottle-link:hover .cuvees-bottle-image::before {
    opacity: 1;
}

.cuvees-bottle-image img {
    max-width: 90%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.6));
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cuvees-bottle-link:hover .cuvees-bottle-image img {
    transform: translateY(-12px) scale(1.08);
    filter: drop-shadow(0 25px 50px rgba(201, 169, 97, 0.4));
}

.cuvees-bottle-title {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--color-light-text);
    text-align: center;
    margin: 0;
    line-height: 1.4;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(10, 10, 10, 0.9) 100%);
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 4px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
}

.cuvees-bottle-link:hover .cuvees-bottle-title {
    color: var(--color-gold);
    border-color: var(--color-gold);
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(20, 20, 20, 0.95) 100%);
    box-shadow: 0 12px 32px rgba(201, 169, 97, 0.3);
}

/* Navigation Buttons */
.cuvees-carousel-nav {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
    font-size: 2.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--color-transition);
    flex-shrink: 0;
    line-height: 1;
    padding: 0;
    backdrop-filter: blur(5px);
}

.cuvees-carousel-nav span {
    display: block;
    margin-top: -5px;
}

.cuvees-carousel-nav:hover:not(:disabled) {
    background: var(--color-gold);
    color: var(--color-darker-bg);
    transform: scale(1.15);
    box-shadow: 0 10px 25px rgba(201, 169, 97, 0.5);
}

.cuvees-carousel-nav:disabled {
    opacity: 0.2;
    cursor: not-allowed;
    border-color: rgba(201, 169, 97, 0.2);
}

.cuvees-carousel-nav:active:not(:disabled) {
    transform: scale(0.95);
}

/* Responsive */
@media screen and (max-width: 1200px) {
    .cuvees-carousel-item {
        flex: 0 0 340px;
    }
    
    .cuvees-bottle-image {
        height: 460px;
    }
}

@media screen and (max-width: 900px) {
    .cuvees-carousel-item {
        flex: 0 0 300px;
    }
    
    .cuvees-bottle-image {
        height: 420px;
    }
    
    .cuvees-carousel-nav {
        width: 55px;
        height: 55px;
        font-size: 2.2rem;
    }
    
    .cuvees-bottle-title {
        font-size: 1rem;
        letter-spacing: 1.5px;
        padding: 0.85rem 1.2rem;
    }
}

@media screen and (max-width: 600px) {
    .champagne-cuvees-carousel-section {
        padding: 3rem 1rem;
    }
    
    .cuvees-carousel-title {
        margin-bottom: 2rem;
    }
    
    .cuvees-carousel-wrapper {
        gap: 1rem;
    }
    
    .cuvees-carousel-item {
        flex: 0 0 260px;
    }
    
    .cuvees-bottle-image {
        height: 380px;
    }
    
    .cuvees-carousel-nav {
        width: 48px;
        height: 48px;
        font-size: 1.9rem;
    }
    
    .cuvees-bottle-title {
        font-size: 0.9rem;
        letter-spacing: 1px;
        padding: 0.75rem 1rem;
    }
}

/* ============================================ */


