/* Hero Block Styles */
.wp-block-padel-sevan-hero {
    position: relative;
    height: 70vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
}

.wp-block-padel-sevan-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

/* Navigation */
.wp-block-padel-sevan-hero .hero-nav {
    position: relative;
    z-index: 10;
    padding: 25px 0 15px 0;
    background: #F8F7ED;
    transition: all 0.3s ease;
}

/* Fixed header on scroll */
.hero-nav.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Adjust logo size when fixed */
.hero-nav.fixed .hero-logo {
    height: clamp(80px, 80px + 3vw, 120px);
    transition: height 0.3s ease;
}

/* Placeholder to prevent content jump */
.hero-nav-placeholder {
    display: none;
}

.hero-nav-placeholder.active {
    display: block;
    height: var(--nav-height);
}

.wp-block-padel-sevan-hero .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Utilisation de la classe container existante */


/* Menu gauche - 3 premiers liens */
.wp-block-padel-sevan-hero .nav-left {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.wp-block-padel-sevan-hero .nav-left .nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: clamp(1.5rem, 3.5vw, 3.5rem);
}

/* Logo au centre */
.wp-block-padel-sevan-hero .nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -10px;
    z-index: 11;
}

.wp-block-padel-sevan-hero .hero-logo-link {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.wp-block-padel-sevan-hero .hero-logo-link:hover {
    transform: scale(1.05);
}

.wp-block-padel-sevan-hero .hero-logo-link:focus {
    outline: none;
}

.wp-block-padel-sevan-hero .hero-logo-link:focus-visible {
    outline: 2px solid #A8C09A;
    outline-offset: 4px;
    border-radius: 4px;
}

.wp-block-padel-sevan-hero .hero-logo {
    height: clamp(100px, 100px + 4vw, 180px);
    width: auto;
}

/* Menu droite - 2 derniers liens + bouton CTA */
.wp-block-padel-sevan-hero .nav-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(1.5rem, 3.5vw, 3.5rem);
}

.wp-block-padel-sevan-hero .nav-right .nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: clamp(1.5rem, 3.5vw, 3.5rem);
}

.wp-block-padel-sevan-hero .nav-menu li {
    margin: 0;
}

.wp-block-padel-sevan-hero .nav-menu a {
    color: #863131;
    text-decoration: none;
    font-size: clamp(0.875rem, 0.875rem + 0.3vw, 1.125rem);
    font-weight: 500;
    transition: color 0.3s ease;
}

.wp-block-padel-sevan-hero .nav-menu a:hover {
    color: #6D2E2C;
}

.wp-block-padel-sevan-hero .nav-cta-button {
    background: #863131;
    color: white !important;
    padding: clamp(10px, 0.7rem + 0.2vw, 15px) clamp(1.5rem, 1.5rem + 1vw, 3.5rem);
    text-decoration: none;
    font-size: clamp(0.8rem, 0.8rem + 0.25vw, 1.125rem);
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wp-block-padel-sevan-hero .nav-cta-button:hover {
    background: #6D2E2C;
    transform: translateY(-2px);
}

/* Hero Content */
.wp-block-padel-sevan-hero .hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.wp-block-padel-sevan-hero .hero-content-inner {
    text-align: center;
    margin: 0 auto;
}

.wp-block-padel-sevan-hero .hero-title {
    color: white !important;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.wp-block-padel-sevan-hero .hero-subtitle {
    display: block;
    margin-top: 10px;
    color: white !important;
}

.wp-block-padel-sevan-hero .hero-description {
    color: white !important;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.wp-block-padel-sevan-hero .hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Desktop buttons - visible only on desktop */
.wp-block-padel-sevan-hero .hero-buttons-desktop {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile buttons - hidden by default on desktop */
.wp-block-padel-sevan-hero .hero-buttons-mobile {
    display: none !important;
}

.wp-block-padel-sevan-hero .hero-button {
    padding: 15px 35px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.wp-block-padel-sevan-hero .hero-button-primary {
    background: #A8C09A;
    color: #2C3E2C !important;
    border: 2px solid #A8C09A;
}

.wp-block-padel-sevan-hero .hero-button-primary:hover {
    background: #96B084;
    border-color: #96B084;
    transform: translateY(-2px);
}

.wp-block-padel-sevan-hero .hero-button-secondary {
    background: transparent;
    color: white !important;
    border: 2px solid white;
}

.wp-block-padel-sevan-hero .hero-button-secondary:hover {
    background: white;
    color: #8B4513 !important;
    transform: translateY(-2px);
}

/* Menu Burger Mobile */
.wp-block-padel-sevan-hero .mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: relative;
    z-index: 12;
}

.wp-block-padel-sevan-hero .mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #863131;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.wp-block-padel-sevan-hero .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.wp-block-padel-sevan-hero .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.wp-block-padel-sevan-hero .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.wp-block-padel-sevan-hero .mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #F8F7ED;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 20px;
    z-index: 9;
}

.wp-block-padel-sevan-hero .mobile-menu.active {
    display: block;
}

.wp-block-padel-sevan-hero .mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wp-block-padel-sevan-hero .mobile-menu li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(139, 69, 19, 0.1);
}

.wp-block-padel-sevan-hero .mobile-menu a {
    color: #863131;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    display: block;
}

.wp-block-padel-sevan-hero .mobile-menu .mobile-cta {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid rgba(139, 69, 19, 0.2);
    border-bottom: none;
}

.wp-block-padel-sevan-hero .mobile-menu .mobile-cta-link {
    background: #863131;
    color: white !important;
    padding: 12px 20px;
    text-align: center;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Responsive spécifique 700px - 1000px */
@media (min-width: 700px) and (max-width: 1000px) {
    .wp-block-padel-sevan-hero .nav-left .nav-menu,
    .wp-block-padel-sevan-hero .nav-right .nav-menu {
        gap: 1.5rem;
    }
    
    .wp-block-padel-sevan-hero .nav-menu a {
        font-size: 0.95rem;
    }
    
    .wp-block-padel-sevan-hero .nav-cta-button {
        padding: 10px 2rem;
        font-size: 0.875rem;
    }
    
    .wp-block-padel-sevan-hero .hero-logo {
        height: 120px;
    }
    
    .wp-block-padel-sevan-hero .nav-right {
        gap: 1.5rem;
    }
}

/* Responsive Tablettes (768px - 1024px) */
@media (max-width: 1024px) {
    .wp-block-padel-sevan-hero {
        height: 60vh;
    }
    
    .wp-block-padel-sevan-hero .hero-title {
        font-size: 36px;
    }
    
    .wp-block-padel-sevan-hero .hero-description {
        font-size: 16px;
    }
}

/* Responsive Mobile (< 768px) */
@media (max-width: 768px) {
    .wp-block-padel-sevan-hero {
        height: 50vh;
        min-height: 400px;
    }
    
    .wp-block-padel-sevan-hero .hero-nav {
        padding: 10px 0;
    }
    
    .wp-block-padel-sevan-hero .nav-container {
        padding: 0 15px;
        position: relative;
    }
    
    /* Logo à gauche sur mobile */
    .wp-block-padel-sevan-hero .nav-center {
        position: static;
        transform: none;
        order: -1;
        flex: 0 0 auto;
        margin-right: auto;
    }
    
    .wp-block-padel-sevan-hero .hero-logo {
        height: 80px;
    }
    
    /* Masquer le menu desktop */
    .wp-block-padel-sevan-hero .nav-left {
        display: none;
    }
    
    .wp-block-padel-sevan-hero .nav-right .nav-menu,
    .wp-block-padel-sevan-hero .nav-cta-button {
        display: none;
    }
    
    /* Afficher le burger */
    .wp-block-padel-sevan-hero .mobile-menu-toggle {
        display: block !important;
    }
    
    .wp-block-padel-sevan-hero .nav-right {
        flex: 0 0 auto;
        padding-left: 0;
        gap: 0;
    }
    
    /* Contenu Hero */
    .wp-block-padel-sevan-hero .hero-content {
        padding: 30px 15px;
    }
    
    .wp-block-padel-sevan-hero .hero-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .wp-block-padel-sevan-hero .hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .wp-block-padel-sevan-hero .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    /* Hide desktop buttons on mobile */
    .wp-block-padel-sevan-hero .hero-buttons-desktop {
        display: none !important;
    }
    
    /* Show mobile buttons on mobile */
    .wp-block-padel-sevan-hero .hero-buttons-mobile {
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .wp-block-padel-sevan-hero .hero-button {
        text-align: center;
        padding: 12px 20px;
        font-size: 1rem;
    }
}

/* Très petits écrans (< 480px) */
@media (max-width: 480px) {
    .wp-block-padel-sevan-hero {
        height: 60vh;
        min-height: 350px;
    }
    .wp-block-image.alignright.size-full{
    margin-inline-start: 0 !important;
    }
    .regles-column{
        padding-left: 2rem;
    }
    .forminator-row{
        width: 80%;
    }
    
    .wp-block-padel-sevan-hero .hero-logo {
        height: 80px;
    }
    
    .wp-block-padel-sevan-hero .hero-title {
        font-size: 20px;
    }
    
    .wp-block-padel-sevan-hero .hero-subtitle {
        font-size: 18px;
    }
    
    .wp-block-padel-sevan-hero .hero-description {
        font-size: 13px;
    }
    
    .wp-block-padel-sevan-hero .hero-button {
        font-size: 1rem;
        padding: 10px 15px;
    }
}

/* Mode Header uniquement - sans la section hero */
.wp-block-padel-sevan-hero.header-only-mode {
    height: auto !important;
    min-height: auto !important;
    background: none !important;
}

.wp-block-padel-sevan-hero.header-only-mode .hero-overlay,
.wp-block-padel-sevan-hero.header-only-mode .hero-content {
    display: none !important;
}

.flex-footer {
    display: flex;
    gap:2rem;
    align-items: center;
}
p.has-base-color.has-text-color.has-link-color.wp-elements-fc5eef8f25a11673d4a709ae90cce783{
margin-block-start: 0;
}