/*!
 * DANDYSHOES - Website Styles
 * Belgian Rock'n'Roll Band from Charleroi, Belgium
 * 
 * Built on: 2025-12-10T19:54:24.484Z
 * Files combined: 23
 * 
 * © 2025 DANDYSHOES. All rights reserved.
 */


/* ===== VARIABLES ===== */
/* DANDYSHOES - CSS Variables */
:root {
    --primary: #ffde59;
    --dark: #121212;
    --light: #f5f5f5;
    --accent: #ff3e3e;
}

/* ===== RESET ===== */
/* DANDYSHOES - CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0a0a0a;
    background-image:
        radial-gradient(ellipse at 20% 30%, rgba(138, 43, 226, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(75, 0, 130, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(25, 25, 112, 0.1) 0%, transparent 100%);
    background-attachment: fixed;
    position: relative;
    color: var(--light);
    overflow-x: hidden;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

/* Effet d'orage animé sur le body */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at var(--x, 50%) var(--y, 50%), rgba(255, 222, 89, 0.15) 0%, transparent 40%);
    opacity: 0;
    pointer-events: none;
    z-index: 9999;
    animation: thunder-flash 2s infinite;
}

@keyframes thunder-flash {
    0%, 100% {
        opacity: 0;
    }
    2% {
        opacity: 0.8;
        --x: 30%;
        --y: 20%;
    }
    2.5% {
        opacity: 0;
    }
    3% {
        opacity: 0.6;
        --x: 70%;
        --y: 40%;
    }
    3.5% {
        opacity: 0;
    }
    45% {
        opacity: 0;
    }
    47% {
        opacity: 0.9;
        --x: 50%;
        --y: 30%;
    }
    47.5% {
        opacity: 0;
    }
    48% {
        opacity: 0.7;
        --x: 60%;
        --y: 50%;
    }
    48.5% {
        opacity: 0;
    }
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

ul, ol {
    list-style: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* Utility classes */
.img-contain {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.img-cover {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.img-scale-down {
    object-fit: scale-down;
    width: 100%;
    height: 100%;
}

/* ===== TYPOGRAPHY ===== */
/* DANDYSHOES - Typography */
@font-face {
    font-family: 'Microgramma-D-Extended-Bold';
    /* Chemin corrigé depuis css/dist/ vers font/ */
    src: url('../../font/Microgramma-D-Extended-Bold.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Microgramma-D-Extended-Bold', 'Arial Black', sans-serif;
    font-weight: normal;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 3rem;
    text-align: center;
    font-family: 'Microgramma-D-Extended-Bold', 'Arial Black', sans-serif;
    letter-spacing: 1px;
}

.container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    padding: 6rem 2rem;
}

/* Logo styling avec font améliorée */
.logo {
    font-size: 5rem;
    text-align: center;
    width: 100%;
    display: block;
}

/* Responsive typography */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .logo {
        font-size: 3.5rem;
    }
    
    .section {
        padding: 4rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .logo {
        font-size: 2.5rem;
    }
}

/* ===== NAVBAR ===== */
/* DANDYSHOES - Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    background: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(10px);
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Microgramma-D-Extended-Bold', sans-serif;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Mobile menu styles */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1000;
    position: relative;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    transition: all 0.3s ease;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
        position: fixed;
        right: 20px;
        top: 20px;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background-color: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 0.5s ease;
        z-index: 999;
        padding-top: 60px;
    }
    
    .nav-links.active {
        right: 0;
    }
}

/* ===== HEADER ===== */
/* DANDYSHOES - Header Section - Version nettoyée */
header {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.parallax-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.9);
}

.dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(18, 18, 18, 0.2) 0%,
        rgba(18, 18, 18, 0.2) 50%,
        rgba(18, 18, 18, 0.1) 100%
    );
    z-index: 2;
}

.header-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding-top: 25vh;
    padding-left: 1rem;
    padding-right: 1rem;
}

.header-content h1 {
    font-size: 5rem;
    color: var(--primary);
    text-shadow: 0 0 10px rgba(255, 222, 89, 0.7);
    animation: pulse 2s infinite;
    font-family: 'Microgramma-D-Extended-Bold', sans-serif;
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-family: 'Microgramma-D-Extended-Bold', sans-serif;
    font-weight: lighter;
}

/* Platforms scrolling section */
.platforms-container {
    margin-top: 2.5rem !important;
    width: 100%;
    max-width: 900px !important;
    overflow: hidden;
    position: relative;
}

.as-seen-on {
    color: var(--light);
    font-size: 1rem !important;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem !important;
    font-weight: 500 !important;
}

.platforms-scroll {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 115px !important;
    border-radius: 58px !important;
    background: rgba(0, 0, 0, 0.4) !important;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.6) !important;
}

.platforms-track {
    display: flex;
    align-items: center;
    position: absolute;
    width: max-content;
    animation: scroll 35s linear infinite;
}

.platform-logo {
    height: 105px !important;
    padding: 0 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.platform-logo img {
    max-height: 78px !important;
    max-width: 210px !important;
    min-height: 60px !important;
    object-fit: contain !important;
    opacity: 1 !important;
    transition: opacity 0.3s ease, transform 0.3s ease, filter 0.3s ease;
    filter: brightness(0) invert(1) !important;
}

.platform-logo:hover img {
    opacity: 1;
    transform: scale(1.15);
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 222, 89, 0.8)) !important;
}

/* Corrections pour la structure picture */
.parallax-bg picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.parallax-bg picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.9);
}

/* Animations */
@keyframes pulse {
    0% {
        text-shadow: 0 0 10px rgba(255, 222, 89, 0.7);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 222, 89, 0.9);
        transform: scale(1.02);
    }
    100% {
        text-shadow: 0 0 10px rgba(255, 222, 89, 0.7);
        transform: scale(1);
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* DESKTOP */
@media screen and (min-width: 993px) {
    .platforms-scroll {
        height: 130px !important;
        border-radius: 65px !important;
    }

    .platform-logo {
        height: 120px !important;
        padding: 0 52px !important;
    }

    .platform-logo img {
        max-height: 90px !important;
        max-width: 235px !important;
        min-height: 70px !important;
    }

    .as-seen-on {
        font-size: 1.2rem !important;
        margin-bottom: 1.5rem !important;
    }
}

/* TABLET */
@media screen and (min-width: 769px) and (max-width: 992px) {
    .platforms-scroll {
        height: 85px !important;
        border-radius: 42px !important;
    }

    .platform-logo {
        height: 70px !important;
        padding: 0 29px !important;
    }

    .platform-logo img {
        max-height: 62px !important;
        max-width: 170px !important;
        min-height: 50px !important;
    }

    .as-seen-on {
        font-size: 1.1rem !important;
    }
}

/* MOBILE */
@media screen and (max-width: 768px) {
    /* Header s'adapte à la hauteur de l'image */
    header {
        height: auto;
        min-height: auto;
        position: relative;
    }

    /* Image du header en largeur complète */
    .parallax-bg {
        position: relative;
        height: auto;
        width: 100%;
    }

    .parallax-bg picture {
        position: relative;
        height: auto;
        width: 100%;
        display: block;
    }

    .parallax-bg picture img {
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: top center;
        position: relative;
        display: block;
    }

    /* Dark overlay sur toute l'image */
    .dark-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
    }

    /* Contenu positionné sur l'image */
    .header-content {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: auto;
        min-height: 100%;
        padding-top: 20vh !important;
        padding-bottom: 2rem;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        z-index: 3;
    }

    .header-content h1 {
        font-size: 3rem;
    }

    .tagline {
        font-size: 1.2rem;
    }
    
    .platforms-scroll {
        height: 80px !important;
        border-radius: 40px !important;
    }

    .platform-logo {
        height: 65px !important;
        padding: 0 26px !important;
    }

    .platform-logo img {
        max-height: 52px !important;
        max-width: 130px !important;
        min-height: 40px !important;
    }

    .as-seen-on {
        font-size: 0.9rem !important;
        margin-bottom: 0.8rem !important;
    }

    .platforms-track {
        animation: scroll 25s linear infinite !important;
    }

    .platforms-container {
        max-width: 90%;
    }
}

/* TRÈS PETITS ÉCRANS */
@media screen and (max-width: 480px) {
    .header-content h1 {
        font-size: 2.5rem;
    }

    .header-content {
        padding-top: 18vh !important;
    }

    .platforms-container {
        margin-top: 1.5rem !important;
    }
    
    .platforms-scroll {
        height: 70px !important;
        border-radius: 35px !important;
    }

    .platform-logo {
        height: 60px !important;
        padding: 0 23px !important;
    }

    .platform-logo img {
        max-height: 45px !important;
        max-width: 115px !important;
        min-height: 32px !important;
    }
}

/* TRÈS TRÈS PETITS ÉCRANS */
@media screen and (max-width: 375px) {
    .header-content {
        padding-top: 15vh !important;
    }

    .header-content h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }

    .platforms-container {
        margin-top: 1rem !important;
    }

    .platforms-scroll {
        height: 65px !important;
    }

    .platform-logo {
        height: 52px !important;
        padding: 0 20px !important;
    }

    .platform-logo img {
        max-height: 42px !important;
        max-width: 105px !important;
        min-height: 31px !important;
    }
}

/* ===== FOOTER ===== */
/* DANDYSHOES - Footer */
footer {
    background-color: transparent;
    padding: 4rem 2rem;
    text-align: center;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-family: 'Microgramma-D-Extended-Bold', sans-serif;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(50, 50, 50, 0.8);
    border-radius: 50%;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-5px);
    background-color: var(--primary);
}

.social-links svg {
    width: 20px;
    height: 20px;
    fill: var(--light);
    transition: fill 0.3s ease;
}

.social-links a:hover svg {
    fill: var(--dark);
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--light);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--primary);
}

.copyright {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Footer responsive */
@media (max-width: 768px) {
    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .footer-nav a {
        margin: 5px 10px;
    }
    
    .footer-logo {
        font-size: 1.5rem;
    }
}

/* ===== MUSIC ===== */
/* DANDYSHOES - Music Section */
.music-section {
    background-color: transparent;
}

.latest-release {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
    width: 100%;
}

.release-art {
    width: 300px;
    height: 300px;
    position: relative;
    margin-bottom: 1rem;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.release-art img, 
.release-art video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Conteneur adapté pour la vidéo YouTube 16:9 */
.release-art.video-container {
    width: 100%;
    max-width: 900px;
    height: auto;
    position: relative;
    margin: 0 auto 2rem;
    background: transparent;
    border-radius: 20px;
    overflow: visible;
    aspect-ratio: 16/9;
    box-shadow: 0 0 0  3px var(--primary),
                0 10px 30px rgba(0, 0, 0, 0.5),
                0 0 20px rgba(255, 222, 89, 0.3);
}

.youtube-container {
    position: relative;
    width: 100%;
    height: 100%;
    padding-bottom: 56.25%; /* 16:9 ratio (9/16 = 0.5625) */
    border-radius: 20px;
    overflow: hidden;
    background: #000;
}

.youtube-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
    box-shadow: 
        0 0 0 3px var(--primary),
        0 15px 50px rgba(0, 0, 0, 0.6), /* Ombre plus prononcée */
        0 0 30px rgba(255, 222, 89, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1); /* Bordure interne subtile */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.video-container::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, var(--primary), transparent, var(--primary));
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    animation: video-pulse 3s infinite ease-in-out;
}
@keyframes video-pulse {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.3; }
}

.video-container:hover iframe {
    box-shadow: 
        0 0 0 2px var(--primary),
        0 15px 40px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(255, 222, 89, 0.5);
    transform: translateY(-2px);
}

.release-info {
    text-align: center;
}

.release-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--primary);
    font-family: 'Microgramma-D-Extended-Bold', sans-serif;
    letter-spacing: 1px;
}

.release-type {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.release-announcement {
    color: #ff3c3c;
    font-weight: bold;
    margin-top: 10px;
    animation: pulse 2s infinite;
}

.streaming-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.streaming-links a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--dark);
    border-radius: 50%;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.streaming-links a:hover {
    transform: translateY(-5px);
    background-color: var(--primary);
}

.streaming-links svg {
    width: 24px;
    height: 24px;
    fill: var(--light);
    transition: fill 0.3s ease;
}

.streaming-links a:hover svg {
    fill: var(--dark);
}

/* Discography */
.discography {
    margin-top: 3rem;
}

.discography .section-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.discography .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

/* Spotify link styling */
.spotify-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.spotify-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 215, 96, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 4px;
}

.spotify-link:hover .spotify-overlay {
    opacity: 1;
}

.spotify-icon {
    width: 40px;
    height: 40px;
    fill: white;
    margin-bottom: 10px;
}

.spotify-overlay span {
    color: white;
    font-weight: bold;
}

/* Coming Soon overlay */
.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 60, 60, 0.3), rgba(255, 222, 89, 0.3));
    border-radius: 4px;
}

.coming-soon-overlay span {
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    padding: 10px 20px;
    border: 2px solid white;
    background-color: rgba(0, 0, 0, 0.4);
}

.coming-soon {
    position: relative;
    overflow: hidden;
    animation: pulse-border 2s infinite;
}

/* Responsive music section */
@media screen and (min-width: 993px) {
    .release-art.video-container {
        width: 80%;
        max-width: 900px;
        height: auto;
        aspect-ratio: 16/9;
    }
}

@media screen and (max-width: 992px) {
    .latest-release {
        flex-direction: column;
    }

    .release-art, .release-info {
        width: 100%;
        max-width: 500px;
        margin: 0 auto 1.5rem;
    }

    .release-art.video-container {
        width: 95%;
        max-width: 750px;
        height: auto;
        aspect-ratio: 16/9;
    }
}

@media screen and (max-width: 768px) {
    .release-title {
        font-size: 2rem;
    }

    .release-art.video-container {
        width: 95%;
        max-width: none;
        aspect-ratio: 16/9;
        border-radius: 12px;
    }

    .streaming-links {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

@media screen and (max-width: 576px) {
    .release-art.video-container {
        width: 95%;
        max-width: none;
        aspect-ratio: 16/9;
        border-radius: 12px;
    }

    .streaming-links {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

/* ===== ABOUT ===== */
/* DANDYSHOES - About Section */
.about-section {
    background-color: transparent;
}

/* Photo principale en haut */
.about-image-top {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 400px;
    margin: 0 auto 3rem;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 100px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text {
    color: var(--light);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* Read More Button */
.read-more-btn {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    margin: 15px 0;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.read-more-btn:hover {
    background-color: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
}

/* Hidden content avec animation */
.hidden-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s ease-in-out, opacity 0.5s ease;
    opacity: 0;
    margin-top: 0;
}

.hidden-content.visible {
    max-height: 2000px;
    opacity: 1;
    margin-top: 1rem;
    transition: max-height 1s ease-in-out, opacity 0.5s 0.3s ease, margin-top 0.3s ease;
}

/* Membres du groupe - Grid de petites cartes */
.members-card {
    overflow: visible;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    padding: 0;
}

.member-card {
    background: rgba(18, 18, 18, 0.4);
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(255, 222, 89, 0.4);
    border-color: var(--primary);
    background: rgba(18, 18, 18, 0.6);
}

.member-card-image {
    width: 100%;
    aspect-ratio: 1;
    margin-bottom: 0.8rem;
    overflow: hidden;
    border-radius: 8px;
    flex-shrink: 0;
}

.member-card-image picture {
    width: 100%;
    height: 100%;
    display: block;
}

.member-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

.member-card-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1;
    justify-content: center;
}

.member-card-info strong {
    font-size: 1rem;
    display: block;
}

.member-card-info span {
    font-size: 0.85rem;
    color: var(--light);
    opacity: 0.8;
}

/* Modal pour agrandir les images */
.member-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.member-modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(255, 222, 89, 0.5);
    animation: zoom 0.3s ease;
}

@keyframes zoom {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.member-modal-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: var(--primary);
    font-size: 45px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.member-modal-close:hover,
.member-modal-close:focus {
    color: var(--light);
}

#memberModalCaption {
    margin: 20px auto;
    text-align: center;
    color: var(--light);
    font-size: 1.2rem;
    max-width: 700px;
}

/* Responsive About */
@media (min-width: 993px) {
    .members-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    .member-card {
        padding: 1.5rem;
    }

    .member-card-image {
        margin-bottom: 1rem;
    }

    .member-card-info strong {
        font-size: 1.1rem;
    }

    .member-card-info span {
        font-size: 0.9rem;
    }
}

@media (min-width: 1200px) {
    .members-grid {
        gap: 2.5rem;
    }

    .member-card {
        padding: 1.8rem;
    }

    .member-card-info strong {
        font-size: 1.2rem;
    }

    .member-card-info span {
        font-size: 1rem;
    }
}

@media (min-width: 1600px) {
    .about-content {
        max-width: 1600px;
        gap: 5rem;
    }

    .about-image {
        height: 600px;
    }

    .about-text p {
        font-size: 1.15rem;
        line-height: 1.9;
    }

    .members-grid {
        gap: 3rem;
    }

    .member-card {
        padding: 2rem;
    }

    .member-card-info strong {
        font-size: 1.3rem;
    }

    .member-card-info span {
        font-size: 1.05rem;
    }
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        height: 350px;
        order: -1; /* Image en premier sur tablettes */
        position: relative;
        top: 0;
    }

    .about-text {
        padding: 0 1rem;
    }
}

@media screen and (max-width: 768px) {
    .about-image-top {
        height: 300px;
        margin-bottom: 2rem;
        border-radius: 12px;
    }

    .about-image {
        height: 300px;
        margin-bottom: 1.5rem;
        position: relative;
        top: 0;
    }

    .about-text p {
        text-align: left;
        font-size: 1rem;
    }

    .members-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr));
    }

    .read-more-btn {
        margin: 1rem auto;
        display: block;
        width: fit-content;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 3rem 1rem;
    }

    .about-image-top {
        height: 220px;
        margin-bottom: 1.5rem;
        border-radius: 8px;
    }

    .about-image {
        height: 220px;
        border-radius: 8px;
    }

    .about-text p {
        font-size: 0.95rem;
        line-height: 1.6;
        text-align: center;
    }

    .members-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(130px, 100%), 1fr));
    }

    .member-modal-close {
        top: 10px;
        right: 20px;
        font-size: 35px;
    }
}

/* ===== TOUR ===== */
/* DANDYSHOES - Tour Section */
.tour-section {
    background-color: transparent;
}

.tour-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tour-date {
    background-color: rgba(40, 40, 40, 0.8);
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.tour-date:hover {
    transform: translateY(-5px);
    background-color: rgba(50, 50, 50, 1);
}

.date-location {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.date {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.location {
    font-size: 1.1rem;
}

.venue {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Tour buttons container */
.tour-buttons {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.tickets-btn {
    padding: 0.6rem 1.2rem;
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}

.tickets-btn:hover {
    background-color: var(--primary);
    color: var(--dark);
}

/* Responsive Tour */
@media screen and (max-width: 768px) {
    .tour-date {
        flex-direction: column;
        gap: 0.8rem;
        align-items: stretch;
        padding: 1rem;
    }

    .date-location {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }

    .date {
        font-size: 1.1rem;
    }

    .tour-buttons {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
        width: 100%;
        margin-top: 0.5rem;
    }

    .tickets-btn {
        flex: 1;
        min-width: 80px;
        max-width: 100%;
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
        text-align: center;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .tour-date {
        padding: 0.8rem;
    }

    .date {
        font-size: 1rem;
    }

    .location {
        font-size: 0.95rem;
    }

    .venue {
        font-size: 0.8rem;
    }

    .tour-buttons {
        flex-direction: column;
        gap: 0.4rem;
    }

    .tickets-btn {
        width: 100%;
        flex: none;
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
}

/* ===== GALLERY ===== */
/* DANDYSHOES - Gallery Section */
.gallery-section {
    background-color: transparent;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1/1; /* Force le ratio carré */
    transition: all 0.3s ease;
    z-index: 1;
    width: 100%; /* S'assure que l'élément prend toute la largeur */
    height: 0; /* La hauteur sera définie par l'aspect-ratio */
    padding-bottom: 100%; /* Alternative à aspect-ratio pour une meilleure compatibilité */
}

.gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Effets Lightning spectaculaires ! */
.gallery-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at center,
        rgba(255, 222, 89, 0),
        rgba(255, 222, 89, 0),
        rgba(255, 222, 89, 0)
    );
    z-index: -1;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
    transition: opacity 0.2s ease;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    z-index: 2;
    animation: lightning-glare 6s infinite;
}

.gallery-item:hover::before {
    opacity: 0.8;
    transform: translate(0, 0) scale(1);
    background: radial-gradient(
        circle at center,
        rgba(255, 222, 89, 0.4),
        rgba(255, 222, 89, 0.1) 30%,
        rgba(255, 222, 89, 0) 70%
    );
    animation: lightning-pulse 2s infinite;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Animated borders */
.animated-border {
    position: relative;
}

/* Responsive Gallery */
@media screen and (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .gallery-item:hover::before {
        animation: lightning-pulse 3s infinite;
    }
}

@media screen and (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 0.75rem;
    }
}

/* ===== CONTACT ===== */
/* DANDYSHOES - Contact Section Enhanced - Solution SÛRE */

/* FORMULAIRE CONTACT - ESPACEMENTS HARMONIEUX ET BIEN RÉPARTIS */

/* Section contact - Padding équilibré */
.contact-section {
    background-color: transparent;
    text-align: center;
    position: relative;
    overflow: visible;
    padding: 5rem 2rem 6rem 2rem; /* Plus d'espace en bas */
}

/* Background effect */
.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(255, 222, 89, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 60, 60, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.contact-section > .container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

/* Container élargi pour les informations de contact */
.contact-info {
    max-width: 1200px !important;
    width: 100%;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Titre - Espacement harmonieux */
.contact-section .section-title {
    font-size: 2.5rem;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 4rem; /* Plus d'espace sous le titre */
    text-align: center;
    font-weight: bold;
    letter-spacing: 1px;
}

/* FORMULAIRE PRINCIPAL - Proportions équilibrées */
.contact-form {
    max-width: 650px; /* Légèrement plus large */
    margin: 0 auto;
    position: relative;
    padding: 3rem 2.5rem; /* Padding interne pour aérer */
    background: rgba(20, 20, 20, 0.3); /* Fond léger pour délimiter */
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* GROUPES DE CHAMPS - Espacement uniforme */
.form-group {
    position: relative;
    margin-bottom: 2.5rem; /* Espacement généreux entre les champs */
}

/* Dernier champ (message) - Moins d'espace en bas */
.form-group:last-of-type {
    margin-bottom: 1.5rem;
}

/* Labels flottants */
.form-group label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    color: rgba(255, 255, 255, 0.7);
    background: var(--dark);
    padding: 0 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    transform-origin: left top;
}

.form-group label.active,
.form-group input:focus + label,
.form-group textarea:focus + label {
    top: -0.5rem;
    left: 0.5rem;
    font-size: 0.75rem;
    color: var(--primary);
    opacity: 1;
    transform: scale(0.9);
}

/* Champs de formulaire - Taille confortable */
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.3rem 1.2rem; /* Padding légèrement plus généreux */
    background-color: rgba(50, 50, 50, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--light);
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background-color: rgba(60, 60, 60, 0.9);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 222, 89, 0.1),
                0 8px 25px rgba(255, 222, 89, 0.15);
    transform: translateY(-2px);
}

.form-group input:hover,
.form-group textarea:hover {
    background-color: rgba(60, 60, 60, 0.9);
    border-color: rgba(255, 255, 255, 0.2);
}

/* États de validation */
.form-group input.error,
.form-group textarea.error {
    border-color: #f44336;
    box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.1);
    animation: shake 0.5s ease-in-out;
}

.form-group input.success,
.form-group textarea.success {
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

/* Animation shake pour les erreurs */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Textarea - Hauteur confortable */
.form-group textarea {
    min-height: 160px; /* Un peu plus haut */
    resize: vertical;
    font-family: inherit;
    line-height: 1.6;
}

/* CHECKBOX RGPD - Espacement parfait */
.contact-form .checkbox-group {
    margin: 2rem 0 2rem 0; /* Espacement équilibré */
    text-align: left;
    position: relative;
    z-index: 10;
    padding: 1rem 0; /* Padding pour éviter les coupures */
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem; /* Plus d'espace entre checkbox et texte */
    cursor: pointer;
    font-size: 0.95rem; /* Légèrement plus grand */
    line-height: 1.5;
    text-align: left;
    padding: 0;
    margin: 0;
    position: relative;
    text-transform: none;
    letter-spacing: normal;
    opacity: 1;
    transition: opacity 0.3s ease;
    user-select: none;
}

.checkbox-label:hover {
    opacity: 0.9;
}

/* Input checkbox */
.checkbox-label input[type="checkbox"] {
    position: absolute;
    top: 2px;
    left: 0;
    width: 22px; /* Légèrement plus grand */
    height: 22px;
    margin: 0;
    cursor: pointer;
    opacity: 0;
    z-index: 999; /* TRÈS IMPORTANT : Au-dessus de tout */
}

.checkmark {
    width: 22px; /* Légèrement plus grand */
    height: 22px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    margin-top: 2px;
    background-color: rgba(50, 50, 50, 0.5);
    position: relative;
    
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: var(--dark);
    font-weight: bold;
    font-size: 15px; /* Un peu plus grand */
    animation: checkmark-pop 0.3s ease;
}

@keyframes checkmark-pop {
    0% { transform: scale(0); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* États de focus pour l'accessibilité */
.checkbox-label input[type="checkbox"]:focus + .checkmark {
    box-shadow: 0 0 0 3px rgba(255, 222, 89, 0.3);
    outline: none;
}

/* Effet hover sur le checkmark */
.checkbox-label:hover .checkmark {
    border-color: rgba(255, 255, 255, 0.5);
    background-color: rgba(60, 60, 60, 0.7);
}

/* DEBUG : Optionnel - Pour voir où est l'input */
.checkbox-label input[type="checkbox"] {
    background: red !important;
    }

/* BOUTON D'ENVOI - Position parfaite */
.contact-form .submit-btn {
    position: static;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    
    display: block;
    margin: 3rem auto 0 auto; /* Plus d'espace au-dessus */
    
    padding: 1.3rem 4rem; /* Plus généreux */
    background: linear-gradient(135deg, var(--primary) 0%, #ffea8c 100%);
    color: var(--dark);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 222, 89, 0.3);
    
    width: auto;
    max-width: 100%;
    clear: both;
    z-index: 1;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 222, 89, 0.4);
    background: linear-gradient(135deg, #ffea8c 0%, var(--primary) 100%);
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 222, 89, 0.3);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Spinner de chargement */
.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid var(--dark);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
    margin-right: 0.5rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* GRILLE D'INFORMATIONS DE CONTACT */
.contact-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.contact-card {
    flex: 0 1 320px;
    padding: 2rem 2rem;
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent, var(--primary));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-family: 'Microgramma-D-Extended-Bold', sans-serif;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0;
}

.contact-card p {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    opacity: 0.9;
}

.contact-card strong {
    color: var(--primary);
    font-weight: 600;
}

/* LIENS SOCIAUX INLINE */
.social-links-inline {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links-inline a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(50, 50, 50, 0.8), rgba(40, 40, 40, 0.9));
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-links-inline a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
    z-index: 0;
}

.social-links-inline a:hover::before {
    transform: scale(1);
}

.social-links-inline a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 222, 89, 0.3);
}

.social-links-inline svg {
    fill: var(--light);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    width: 24px;
    height: 24px;
}

.social-links-inline a:hover svg {
    fill: var(--dark);
    transform: scale(1.1);
}

/* NOTIFICATIONS */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    max-width: 400px;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-content {
    background: var(--dark);
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
}

.notification-success .notification-content {
    border-color: #4CAF50;
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.95), rgba(15, 31, 15, 0.95));
}

.notification-error .notification-content {
    border-color: #f44336;
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.95), rgba(31, 15, 15, 0.95));
}

.notification-info .notification-content {
    border-color: #2196F3;
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.95), rgba(15, 15, 31, 0.95));
}

.notification-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.notification-message {
    flex: 1;
    color: var(--light);
    font-size: 0.95rem;
    line-height: 1.4;
}

.notification-close {
    background: none;
    border: none;
    color: var(--light);
    font-size: 1.8rem;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.notification-close:hover {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

/* RESPONSIVE DESIGN */

/* Tablet */
@media (max-width: 992px) {
    .contact-grid {
        gap: 1.5rem;
    }

    .contact-card {
        flex: 0 1 280px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 4rem 1rem 5rem 1rem;
    }
    
    .contact-section .section-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
        max-width: 90%;
    }
    
    .form-group {
        margin-bottom: 2rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 1.1rem;
        font-size: 0.95rem;
    }
    
    .form-group label {
        font-size: 0.8rem;
    }
    
    .contact-form .submit-btn {
        width: 100%;
        padding: 1.2rem;
        font-size: 0.95rem;
        margin: 2.5rem 0 0 0;
    }
    
    .checkbox-label {
        font-size: 0.9rem;
        gap: 0.8rem;
    }
    
    .checkbox-label input[type="checkbox"],
    .checkmark {
        width: 20px;
        height: 20px;
    }
    
    .contact-grid {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .contact-card {
        flex: 0 1 auto;
        width: 100%;
        max-width: 400px;
        padding: 2rem 1.5rem;
    }
    
    .contact-card h3 {
        font-size: 1.1rem;
    }
    
    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .notification-content {
        padding: 1rem;
    }
    
    .notification-message {
        font-size: 0.9rem;
    }
    
    .social-links-inline a {
        width: 40px;
        height: 40px;
    }
    
    .social-links-inline svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 3rem 0.5rem 4rem 0.5rem;
    }
    
    .contact-form {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }
    
    .form-group {
        margin-bottom: 1.8rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.9rem;
        font-size: 0.9rem;
    }
    
    .form-group label {
        font-size: 0.75rem;
    }
    
    .contact-form .submit-btn {
        font-size: 0.9rem;
        padding: 1.1rem;
        margin: 2rem 0 0 0;
    }
    
    .contact-card {
        padding: 1.5rem 1rem;
    }
    
    .contact-card h3 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .social-links-inline {
        gap: 0.8rem;
    }
}

/* ===== VIDEO ===== */
/* video.css - Styles for the DandyShoes videos section */

/* Hero Section */
.video-hero-section {
    position: relative;
    height: 80vh;
    min-height: 500px;
    max-height: 800px;
    margin-top: 80px;
    overflow: hidden;
}

.video-hero-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-backdrop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8); /* Increased from 0.6 to 0.8 to make the image more visible */
}

.overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(18, 18, 18, 0.75) 0%, /* Reduced opacity from 0.9 to 0.75 */
        rgba(18, 18, 18, 0.4) 50%,  /* Reduced opacity from 0.6 to 0.4 */
        rgba(18, 18, 18, 0.2) 100%  /* Reduced opacity from 0.4 to 0.2 */
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 0 10%;
    max-width: 800px;
}

.video-tag {
    display: inline-block;
    background-color: rgba(255, 222, 89, 0.9);
    color: var(--dark);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.video-title {
    font-family: 'Microgramma-D-Extended-Bold', sans-serif;
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 222, 89, 0.7);
}

.video-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.play-button, .info-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.play-button {
    background-color: var(--primary);
    color: var(--dark);
}

.play-button:hover {
    background-color: #ffea8c;
    transform: scale(1.05);
}

.info-button {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--light);
}

.info-button:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.play-button svg, .info-button svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Video Library Section */
.video-library-section {
    padding: 5rem 0;
    background-color: transparent;
}

.video-categories {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-btn {
    background: none;
    border: none;
    color: var(--light);
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 20px;
    opacity: 0.6;
}

.category-btn:hover {
    opacity: 1;
}

.category-btn.active {
    background-color: var(--primary);
    color: var(--dark);
    opacity: 1;
}

/* Video Rows and Sliders */
.video-row {
    margin-bottom: 4rem;
}

.row-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--light);
    font-family: 'Microgramma-D-Extended-Bold', sans-serif;
}

.video-slider {
    position: relative;
    display: flex;
    align-items: center;
}

.slider-container {
    display: flex;
    gap: 1.5rem;
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer and Edge */
    padding: 1rem 0;
}

slider-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.7);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 4;
    transition: all 0.3s ease;
}

.slider-arrow svg {
    width: 20px;
    height: 20px;
    fill: var(--light);
}

.slider-arrow.prev {
    left: -20px;
}

.slider-arrow.next {
    right: -20px;
}

.slider-arrow:hover {
    background-color: var(--primary);
}

slider-arrow:hover svg {
    fill: var(--dark);
}

/* Video Cards */
.video-card {
    flex: 0 0 300px;
    position: relative;
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: scale(1.05);
    z-index: 3;
}

.card-thumbnail {
    position: relative;
    width: 100%;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 0.8rem;
}

.card-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.video-card:hover .card-thumbnail img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.play-overlay svg {
    width: 40px;
    height: 40px;
    fill: var(--primary);
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.video-card:hover .play-overlay {
    opacity: 1;
}

.video-card:hover .play-overlay svg {
    transform: scale(1);
}

.card-content h4 {
    color: var(--light);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.card-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 101;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background-color: var(--primary);
}

.modal-close svg {
    width: 24px;
    height: 24px;
    fill: var(--light);
}

.modal-close:hover svg {
    fill: var(--dark);
}

.modal-content {
    width: 80%;
    max-width: 1000px;
    max-height: 80vh;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    overflow: hidden;
}

.modal-content video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: black;
}

/* Netflix-inspired hover effect */
.video-card {
    position: relative;
    overflow: visible;
}

.card-content {
    transition: all 0.3s ease;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1rem 0.5rem;
    border-radius: 0 0 8px 8px;
    opacity: 0;
}

.video-card:hover .card-content {
    opacity: 1;
    bottom: -30px;
    padding-bottom: 30px;
}

/* Animation for cards */
.video-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation delay for each card */
.video-card:nth-child(1) { animation-delay: 0.1s; }
.video-card:nth-child(2) { animation-delay: 0.2s; }
.video-card:nth-child(3) { animation-delay: 0.3s; }
.video-card:nth-child(4) { animation-delay: 0.4s; }
.video-card:nth-child(5) { animation-delay: 0.5s; }

/* Lightning effect on hero section */
.hero-backdrop::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(255, 222, 89, 0.1), transparent);
    animation: lightning-glare 8s infinite;
    z-index: 3;
}

@keyframes lightning-glare {
    0%, 100% {
        opacity: 0;
    }
    3%, 6% {
        opacity: 0.8;
    }
    4%, 5% {
        opacity: 0;
    }
    50%, 55%, 65% {
        opacity: 0;
    }
    52%, 62% {
        opacity: 0.6;
    }
}

/* Responsive styling */
@media (max-width: 992px) {
    .video-hero-section {
        height: 70vh;
    }
    
    .video-title {
        font-size: 3.5rem;
    }
    
    .video-description {
        font-size: 1.1rem;
    }
    
    .modal-content {
        width: 90%;
    }
}

@media (max-width: 768px) {
    .video-hero-section {
        height: 60vh;
    }
    
    .hero-content {
        padding: 0 5%;
    }
    
    .video-title {
        font-size: 2.8rem;
    }
    
    .video-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .play-button, .info-button {
        width: 100%;
    }
    
    .video-categories {
        gap: 0.8rem;
        margin-bottom: 2rem;
    }
    
    .category-btn {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }
    
    .slider-arrow {
        width: 35px;
        height: 35px;
    }
    
    .slider-arrow.prev {
        left: -10px;
    }
    
    .slider-arrow.next {
        right: -10px;
    }
    
    .video-card {
        flex: 0 0 250px;
    }
    
    .card-thumbnail {
        height: 150px;
    }
}

@media (max-width: 576px) {
    .video-hero-section {
        height: 67.2vh; /* Increased by 20% from 56vh */
        min-height: 336px; /* Increased by 20% from 280px */
    }
    
    .video-title {
        font-size: 2.2rem;
    }
    
    .video-description {
        font-size: 0.9rem;
    }
    
    .video-tag {
        font-size: 0.7rem;
    }
    
    .category-btn {
        padding: 0.3rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .row-title {
        font-size: 1.5rem;
    }
    
    .video-card {
        flex: 0 0 200px;
    }
    
    .card-thumbnail {
        height: 120px;
    }
    
    .modal-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
    }
    
    /* Improved smartphone styles */
    .video-hero-section {
        height: 50.4vh; /* Increased by 20% from 42vh */
        min-height: 302.4px; /* Increased by 20% from 252px */
        margin-top: 60px;
    }
    
    .hero-backdrop img {
        object-fit: cover;
        object-position: center; /* Center the image */
    }
    
    .overlay-gradient {
        background: linear-gradient(
            90deg,
            rgba(18, 18, 18, 0.85) 0%, /* Reduced opacity from 0.95 to 0.85 */
            rgba(18, 18, 18, 0.65) 50%, /* Reduced opacity from 0.85 to 0.65 */
            rgba(18, 18, 18, 0.5) 100%  /* Reduced opacity from 0.75 to 0.5 */
        );
    }
    
    .video-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .video-library-section {
        padding: 3rem 0;
    }
    
    .video-categories {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 1rem;
        justify-content: flex-start;
        padding: 0 10px 10px 10px;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }
    
    .video-categories::-webkit-scrollbar {
        height: 4px;
    }
    
    .video-categories::-webkit-scrollbar-thumb {
        background: var(--primary);
        border-radius: 4px;
    }
    
    .category-btn {
        flex: 0 0 auto;
        scroll-snap-align: start;
        white-space: nowrap;
    }
}

/* Extra small smartphones */
@media (max-width: 375px) {
    .hero-content {
        padding: 0 15px;
    }
    
    .video-tag {
        padding: 0.3rem 0.6rem;
        font-size: 0.6rem;
    }
    
    .video-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .video-description {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }
    
    .play-button, .info-button {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .video-card {
        flex: 0 0 180px;
    }
    
    .card-thumbnail {
        height: 100px;
    }
    
    .card-content h4 {
        font-size: 0.9rem;
    }
    
    .card-content p {
        font-size: 0.75rem;
    }
    
    .row-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        padding-left: 10px;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .slider-arrow {
        width: 30px;
        height: 30px;
    }
    
    .slider-arrow svg {
        width: 16px;
        height: 16px;
    }
    
    .slider-container {
        gap: 0.8rem;
    }
    
    .modal-content {
        width: 95%;
    }
    
    .video-hero-section {
        height: 42vh; /* Increased by 20% from 35vh */
        min-height: 252px; /* Increased by 20% from 210px */
    }
    
    .hero-backdrop img {
        object-fit: cover;
        object-position: center 30%; /* Adjust vertical position slightly */
    }
}

/* Smartphone landscape orientation */
@media (max-height: 450px) and (orientation: landscape) {
    .video-hero-section {
        height: 120vh;
        min-height: 300px;
    }
    
    .hero-content {
        padding: 0 15% 0 5%;
    }
    
    .hero-buttons {
        flex-direction: row;
    }
    
    .play-button, .info-button {
        width: auto;
    }
    
    .video-categories {
        margin-bottom: 1rem;
    }
    
    .video-row {
        margin-bottom: 2rem;
    }
}

/* Better touch targets for mobile */
@media (max-width: 768px) {
    .slider-arrow {
        opacity: 0.9;
    }
    
    .play-button, .info-button {
        min-height: 44px; /* Minimum touch target size */
    }
    
    .play-overlay svg {
        width: 50px;
        height: 50px;
    }
    
    .modal-close {
        width: 44px;
        height: 44px;
    }
    
    /* Fix content overlapping on small screens */
    .video-card:hover .card-content {
        padding-bottom: 15px;
        bottom: -15px;
    }
}

/* Fix for iOS and Safari */
@supports (-webkit-touch-callout: none) {
    .video-hero-section {
        height: 50.4vh; /* Increased by 20% from 42vh */
        min-height: 302.4px; /* Increased by 20% from 252px */
    }
    
    .video-card:hover {
        transform: scale(1.03); /* Smaller scale for better performance */
    }
}

/* Active menu link */
.nav-links a.active {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}

/* ===== PRO ===== */
    /* Styles spécifiques pour la page Pro */
        .pro-section {
            background-color: transparent;
            padding: 6rem 2rem;
        }
        
        .pro-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }
        
        .pro-card {
            background: rgba(30, 30, 30, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 222, 89, 0.3);
            border-radius: 15px;
            padding: 2rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .pro-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(255, 222, 89, 0.2);
        }
        
        .pro-card h3 {
            color: var(--primary);
            font-family: 'Microgramma-D-Extended-Bold', sans-serif;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .tech-specs table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 1rem;
        }
        
        .tech-specs th,
        .tech-specs td {
            padding: 0.8rem;
            text-align: left;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .tech-specs th {
            color: var(--primary);
            font-weight: 600;
            background: rgba(255, 222, 89, 0.1);
        }
        
        .contact-info p {
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .contact-info strong {
            color: var(--primary);
            min-width: 100px;
        }
        
        .rider-list {
            list-style: none;
            padding: 0;
        }
        
        .rider-list li {
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            padding-left: 1.5rem;
        }
        
        .rider-list li::before {
            content: "•";
            color: var(--primary);
            position: absolute;
            left: 0;
            top: 0.5rem;
        }
        
        .download-btn {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary) 0%, #ffea8c 100%);
            color: var(--dark);
            padding: 0.8rem 2rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 1rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .download-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 222, 89, 0.4);
        }
        
        .emergency-contact {
            background: linear-gradient(145deg, rgba(255, 60, 60, 0.1), rgba(255, 222, 89, 0.1));
            border: 2px solid rgba(255, 60, 60, 0.3);
            padding: 1.5rem;
            border-radius: 10px;
            margin-top: 1rem;
        }
        
        .emergency-contact h4 {
            color: #ff3c3c;
            margin-bottom: 1rem;
            font-family: 'Microgramma-D-Extended-Bold', sans-serif;
        }
        
        /* Protection par mot de passe */
        .password-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(18, 18, 18, 0.95);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        
        .password-form {
            background: rgba(30, 30, 30, 0.9);
            border: 2px solid var(--primary);
            border-radius: 15px;
            padding: 3rem;
            text-align: center;
            max-width: 400px;
            width: 90%;
        }
        
        .password-form h2 {
            color: var(--primary);
            margin-bottom: 2rem;
            font-family: 'Microgramma-D-Extended-Bold', sans-serif;
        }
        
        .password-input {
            width: 100%;
            padding: 1rem;
            background: rgba(50, 50, 50, 0.8);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            color: var(--light);
            margin-bottom: 1.5rem;
            font-size: 1rem;
            text-align: center;
        }
        
        .password-input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 10px rgba(255, 222, 89, 0.3);
        }
        
        .password-submit {
            background: linear-gradient(135deg, var(--primary) 0%, #ffea8c 100%);
            color: var(--dark);
            padding: 1rem 2rem;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .password-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 222, 89, 0.4);
        }
        
        .error-message {
            color: #ff3c3c;
            margin-top: 1rem;
            display: none;
        }
        
        .hidden {
            display: none;
        }
        
        @media (max-width: 768px) {
            .pro-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .pro-card {
                padding: 1.5rem;
            }
            
            .tech-specs th,
            .tech-specs td {
                padding: 0.5rem;
                font-size: 0.9rem;
         }
            
            .password-form {
                padding: 2rem;
                margin: 1rem;
            }
        }
   

/* pro.css - Styles spécifiques pour la page Pro DANDYSHOES */

/* ==========================================================================
   PROTECTION PAR MOT DE PASSE
   ========================================================================== */

.password-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(18, 18, 18, 0.95), rgba(30, 30, 30, 0.98));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(15px);
    animation: fadeInOverlay 0.5s ease;
}

@keyframes fadeInOverlay {
    from { opacity: 0; }
    to { opacity: 1; }
}

.password-form {
    background: rgba(30, 30, 30, 0.95);
    border: 2px solid var(--primary);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    max-width: 450px;
    width: 90%;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(255, 222, 89, 0.2);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.password-form::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 222, 89, 0.03), transparent);
    animation: rotate 20s linear infinite;
    z-index: -1;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.password-form h2 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-family: 'Microgramma-D-Extended-Bold', sans-serif;
    font-size: 2rem;
    text-shadow: 0 0 10px rgba(255, 222, 89, 0.5);
}

.password-form p {
    margin-bottom: 2rem;
    opacity: 0.8;
    font-size: 1rem;
}

.password-input {
    width: 100%;
    padding: 1.2rem;
    background: rgba(50, 50, 50, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-align: center;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.password-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 
        0 0 20px rgba(255, 222, 89, 0.4),
        inset 0 0 10px rgba(255, 222, 89, 0.1);
    background: rgba(60, 60, 60, 0.9);
}

.password-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
}

.password-submit {
    background: linear-gradient(135deg, var(--primary) 0%, #ffea8c 100%);
    color: var(--dark);
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.password-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.password-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 222, 89, 0.5);
}

.password-submit:hover::before {
    left: 100%;
}

.password-submit:active {
    transform: translateY(-1px);
}

.error-message {
    color: #ff3c3c;
    margin-top: 1rem;
    display: none;
    font-weight: 600;
    animation: slideInError 0.3s ease;
}

@keyframes slideInError {
    from { 
        opacity: 0; 
        transform: translateY(-10px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* ==========================================================================
   LAYOUT PRINCIPAL PRO
   ========================================================================== */

.pro-section {
    background: transparent;
    padding: 6rem 2rem;
    min-height: 100vh;
    position: relative;
}

.pro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 222, 89, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 60, 60, 0.03) 0%, transparent 50%);
    z-index: 0;
}

.pro-section > .container {
    position: relative;
    z-index: 1;
}

.pro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

/* ==========================================================================
   CARTES PRO
   ========================================================================== */

.pro-card {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.9), rgba(40, 40, 40, 0.7));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 222, 89, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent, var(--primary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.pro-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(255, 222, 89, 0.2);
    border-color: rgba(255, 222, 89, 0.4);
}

.pro-card:hover::before {
    transform: scaleX(1);
}

.pro-card h3 {
    color: var(--primary);
    font-family: 'Microgramma-D-Extended-Bold', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-left: 3rem;
}

.pro-card h3::before {
    content: attr(data-emoji);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8rem;
    filter: drop-shadow(0 0 10px rgba(255, 222, 89, 0.5));
}

/* ==========================================================================
   TABLEAUX TECHNIQUES
   ========================================================================== */

.tech-specs table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.tech-specs th,
.tech-specs td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-specs th {
    color: var(--primary);
    font-weight: 700;
    background: rgba(255, 222, 89, 0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.tech-specs td {
    color: var(--light);
    font-weight: 500;
}

.tech-specs tr:last-child th,
.tech-specs tr:last-child td {
    border-bottom: none;
}

.tech-specs tr:hover {
    background: rgba(255, 222, 89, 0.05);
}

/* ==========================================================================
   LISTES ET INFORMATIONS
   ========================================================================== */

.rider-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.rider-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 2rem;
    transition: all 0.3s ease;
}

.rider-list li::before {
    content: "⚡";
    color: var(--primary);
    position: absolute;
    left: 0;
    top: 0.8rem;
    font-size: 1rem;
    filter: drop-shadow(0 0 5px rgba(255, 222, 89, 0.7));
}

.rider-list li:hover {
    background: rgba(255, 222, 89, 0.05);
    padding-left: 2.5rem;
}

.rider-list li:last-child {
    border-bottom: none;
}

/* ==========================================================================
   INFORMATIONS DE CONTACT
   ========================================================================== */

.contact-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.contact-info p:hover {
    background: rgba(255, 222, 89, 0.05);
}

.contact-info strong {
    color: var(--primary);
    min-width: 120px;
    font-weight: 600;
}

.contact-info a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: #ffea8c;
    text-shadow: 0 0 8px rgba(255, 222, 89, 0.5);
}

/* ==========================================================================
   CONTACT D'URGENCE
   ========================================================================== */

.emergency-contact {
    background: linear-gradient(145deg, rgba(255, 60, 60, 0.1), rgba(255, 222, 89, 0.1));
    border: 2px solid rgba(255, 60, 60, 0.3);
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.emergency-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff3c3c, var(--primary), #ff3c3c);
    animation: emergency-pulse 2s ease-in-out infinite;
}

@keyframes emergency-pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.emergency-contact h4 {
    color: #ff3c3c;
    margin-bottom: 1rem;
    font-family: 'Microgramma-D-Extended-Bold', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.emergency-contact a {
    color: #ff3c3c !important;
    font-weight: 700;
}

.emergency-contact a:hover {
    color: #ff6b6b !important;
    text-shadow: 0 0 10px rgba(255, 60, 60, 0.7);
}

/* ==========================================================================
   BOUTONS DE TÉLÉCHARGEMENT
   ========================================================================== */

.download-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, #ffea8c 100%);
    color: var(--dark);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 222, 89, 0.5);
}

.download-btn:hover::before {
    left: 100%;
}

.download-btn:active {
    transform: translateY(-1px);
}

/* ==========================================================================
   PLAN DE SCÈNE ET PATCH LIST
   ========================================================================== */

.pro-card pre {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 222, 89, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
    font-family: 'Courier New', monospace;
    color: var(--light);
    overflow-x: auto;
    margin: 1rem 0;
    font-size: 0.85rem;
    line-height: 1.4;
}

.pro-card pre:hover {
    border-color: rgba(255, 222, 89, 0.4);
    background: rgba(0, 0, 0, 0.4);
}

/* ==========================================================================
   SETLIST ET NUMÉROTATION
   ========================================================================== */

.pro-card ol {
    padding-left: 2rem;
    color: var(--light);
}

.pro-card ol li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.pro-card ol li:hover {
    background: rgba(255, 222, 89, 0.05);
    padding-left: 0.5rem;
    border-radius: 5px;
}

.pro-card ol li:last-child {
    border-bottom: none;
}

/* ==========================================================================
   SECTIONS SPÉCIALISÉES
   ========================================================================== */

.pro-card h4 {
    color: var(--primary);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.pro-card h4::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 0.8rem;
    top: 2px;
}

/* Zones d'information avec style spécial */
.pro-card > div[style*="background"] {
    border-radius: 10px;
    position: relative;
    transition: all 0.3s ease;
}

.pro-card > div[style*="background"]:hover {
    transform: translateX(5px);
    box-shadow: -5px 0 15px rgba(255, 222, 89, 0.1);
}

/* ==========================================================================
   FOOTER PRO
   ========================================================================== */

.pro-section .container > div:last-child {
    background: rgba(20, 20, 20, 0.5);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.cta-button {
    background: linear-gradient(135deg, var(--primary) 0%, #ffea8c 100%);
    color: var(--dark) !important;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 222, 89, 0.4);
}

.cta-button[style*="background: #ff3c3c"] {
    background: linear-gradient(135deg, #ff3c3c 0%, #ff6b6b 100%) !important;
    color: white !important;
}

/* ==========================================================================
   UTILITAIRES
   ========================================================================== */

.hidden {
    display: none !important;
}

/* Animation pour l'erreur de mot de passe */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 768px) {
    .pro-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pro-card {
        padding: 1.5rem;
    }
    
    .pro-card h3 {
        font-size: 1.3rem;
        padding-left: 2.5rem;
    }
    
    .tech-specs th,
    .tech-specs td {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    
    .password-form {
        padding: 2rem;
        margin: 1rem;
    }
    
    .password-form h2 {
        font-size: 1.5rem;
    }
    
    .contact-info strong {
        min-width: 80px;
        font-size: 0.9rem;
    }
    
    .download-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .pro-card pre {
        font-size: 0.75rem;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .pro-section {
        padding: 4rem 1rem;
    }
    
    .pro-card {
        padding: 1rem;
    }
    
    .contact-info p {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .contact-info strong {
        min-width: auto;
    }
    
    .emergency-contact {
        padding: 1rem;
    }
    
    .password-form {
        padding: 1.5rem;
    }
}
    

/* ===== AUDIO PLAYER ===== */


/* ===== BUTTONS ===== */
/* DANDYSHOES - Buttons Components */

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: var(--dark);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    margin-top: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(255, 222, 89, 0.3);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 222, 89, 0.5);
}

.cta-button:active {
    transform: translateY(-2px);
}

/* Video CTA Button */
.video-cta {
    display: inline-flex;
    align-items: center;
    background: #ff3c3c;
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 60, 60, 0.4);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.video-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 60, 60, 0.6);
    background: #fff;
    color: #ff3c3c;
    border: 2px solid #ff3c3c;
}

.video-cta:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(255, 60, 60, 0.4);
}

/* Video icon dans le bouton */
.video-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    fill: currentColor;
}
/* Styles pour le bouton d'ajout au calendrier */
.calendar-btn {
    background: linear-gradient(145deg, #2c2c2c, #1a1a1a);
    border: 1px solid rgba(255, 222, 89, 0.3);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.calendar-btn:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 222, 89, 0.4);
    border-color: var(--primary);
}

.calendar-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 222, 89, 0.3);
}

.calendar-btn svg {
    transition: transform 0.3s ease;
}

.calendar-btn:hover svg {
    transform: scale(1.1);
}

/* Menu de sélection du calendrier */
.calendar-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.calendar-menu.active {
    opacity: 1;
    visibility: visible;
}

.calendar-menu-content {
    background: linear-gradient(145deg, #1c1c1c, #181818);
    border: 1px solid rgba(255, 222, 89, 0.3);
    border-radius: 15px;
    padding: 2rem;
    max-width: 400px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.calendar-menu.active .calendar-menu-content {
    transform: scale(1);
}

.calendar-menu-content h4 {
    color: var(--primary);
    margin: 0 0 1.5rem 0;
    text-align: center;
    font-family: 'Microgramma-D-Extended-Bold', sans-serif;
    font-size: 1.2rem;
}

.calendar-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.calendar-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.calendar-option:hover {
    background: rgba(255, 222, 89, 0.1);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateX(5px);
}

.calendar-option svg {
    flex-shrink: 0;
}

.calendar-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: var(--light);
    font-size: 24px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.calendar-close:hover {
    background: rgba(255, 60, 60, 0.2);
    color: #ff3c3c;
    transform: scale(1.1);
}

/* Adaptation pour mobile */
@media (max-width: 768px) {
    .tour-date {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .tour-date .date-location {
        text-align: center;
    }
    
    .tour-date .tickets-btn,
    .tour-date .calendar-btn {
        margin: 0;
        justify-content: center;
        width: 100%;
    }
    
    .calendar-btn {
        margin-top: 8px;
        margin-left: 0;
    }
    
    .calendar-menu-content {
        margin: 20px;
        padding: 1.5rem;
    }
    
    .calendar-option {
        padding: 14px 16px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .calendar-menu-content {
        margin: 10px;
        padding: 1rem;
    }
    
    .calendar-menu-content h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .calendar-option {
        padding: 12px 14px;
        font-size: 0.9rem;
        gap: 10px;
    }
    
    .calendar-option svg {
        width: 18px;
        height: 18px;
    }
}

/* Animation pour les boutons de la section tour */
.tour-date {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: rgba(30, 30, 30, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.tour-date:hover {
    transform: translateY(-5px);
}

/* Conteneur pour les boutons */
.tour-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Amélioration du style du bouton Go existant pour la cohérence */
.tickets-btn {
    background: linear-gradient(145deg, #ff3c3c, #d32f2f);
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(255, 60, 60, 0.3);
}

.tickets-btn:hover {
    background: linear-gradient(145deg, #d32f2f, #b71c1c);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 60, 60, 0.5);
}

/* ===== CARDS ===== */
/* DANDYSHOES - Cards Components */

.glass-card {
    background: rgba(30, 30, 30, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    transition: transform 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
}

/* Neomorphic Elements */
.neomorph {
    border-radius: 20px;
    background: linear-gradient(145deg, #1c1c1c, #181818);
    box-shadow: 8px 8px 16px #121212, -8px -8px 16px #242424;
}

/* 3D Hover Effect */
.hover-3d {
    transition: transform 0.5s ease;
    transform-style: preserve-3d;
}

.hover-3d:hover {
    transform: perspective(1000px) rotateY(10deg) rotateX(5deg);
}

/* Static border for certain elements */
.static-border {
    border: 2px solid rgba(255, 222, 89, 0.3);
    border-radius: 8px;
}

/* Video container specific styles */
.video-container {
    position: relative;
    overflow: visible;
}

/* Coming soon card */
.coming-soon {
    position: relative;
    overflow: hidden;
    animation: pulse-border 2s infinite;
}

/* Spotify link specific styling */
.spotify-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.spotify-link:hover {
    transform: scale(1.02);
}

/* ===== MODALS ===== */
/* DANDYSHOES - Modals */

/* Base modal styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-modal);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

/* Video Modal (pour la page videos.html) */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

/* Modal close button */
.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 101;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.modal-close:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

.modal-close svg {
    width: 24px;
    height: 24px;
    fill: var(--light);
    transition: fill 0.3s ease;
}

.modal-close:hover svg {
    fill: var(--dark);
}

/* Modal content container */
.modal-content {
    width: 80%;
    max-width: 1000px;
    max-height: 80vh;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    overflow: hidden;
    background: var(--dark);
}

.modal-content video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: black;
}

/* Audio player modal (si utilisé) */
.audio-modal .modal-content {
    background: linear-gradient(145deg, #1c1c1c, #181818);
    border: 1px solid rgba(255, 222, 89, 0.3);
    padding: 2rem;
    max-width: 500px;
    border-radius: 20px;
}

/* Image gallery modal */
.gallery-modal .modal-content {
    max-width: 90vw;
    max-height: 90vh;
    background: transparent;
    box-shadow: none;
}

.gallery-modal img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

/* Contact success modal */
.success-modal .modal-content {
    background: var(--dark);
    border: 2px solid var(--primary);
    padding: 2rem;
    text-align: center;
    max-width: 400px;
    border-radius: 15px;
}

.success-modal h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-family: 'Microgramma-D-Extended-Bold', sans-serif;
}

.success-modal p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Modal animations */
.modal-enter {
    opacity: 0;
    transform: scale(0.8);
}

.modal-enter-active {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.modal-exit {
    opacity: 1;
    transform: scale(1);
}

.modal-exit-active {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Responsive modals */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 85vh;
        margin: 0 10px;
    }
    
    .modal-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
    }
    
    .modal-close svg {
        width: 20px;
        height: 20px;
    }
    
    .audio-modal .modal-content,
    .success-modal .modal-content {
        width: 90%;
        margin: 0 5%;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 98%;
        max-height: 90vh;
    }
    
    .gallery-modal .modal-content {
        width: 95%;
        max-height: 80vh;
    }
    
    .audio-modal .modal-content {
        padding: 1rem;
    }
}

/* Accessibility */
.modal[aria-hidden="true"] {
    display: none;
}

.modal-content:focus {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
}

/* Prevent body scroll when modal is open */
body.modal-open {
    overflow: hidden;
}

/* ===== ANIMATIONS ===== */
/* DANDYSHOES - Animations */

@keyframes pulse {
    0% { text-shadow: 0 0 10px rgba(255, 222, 89, 0.7); }
    50% { text-shadow: 0 0 20px rgba(255, 222, 89, 0.9); }
    100% { text-shadow: 0 0 10px rgba(255, 222, 89, 0.7); }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes neon-pulse {
    from { text-shadow: 0 0 5px var(--primary), 0 0 10px var(--primary), 0 0 20px var(--primary); }
    to { text-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary), 0 0 30px var(--primary); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-20px) rotate(10deg); }
    100% { transform: translateY(0) rotate(0); }
}

@keyframes pulse-border {
    0% { box-shadow: 0 0 0 0 rgba(255, 60, 60, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 60, 60, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 60, 60, 0); }
}

/* Classes utilitaires pour les animations */
.neon-text {
    color: var(--light);
    text-shadow: 0 0 5px var(--primary), 0 0 10px var(--primary), 0 0 20px var(--primary);
    animation: neon-pulse 2s infinite alternate;
}

/* Animation on scroll elements */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== LIGHTNING ===== */
/* DANDYSHOES - Lightning Effects */

/* Animation lightning pulse pour la galerie */
@keyframes lightning-pulse {
    0% {
        box-shadow: 0 0 5px 1px rgba(255, 222, 89, 0.3);
    }
    25% {
        box-shadow: 0 0 15px 5px rgba(255, 222, 89, 0.7);
    }
    50% {
        box-shadow: 0 0 5px 1px rgba(255, 222, 89, 0.3);
    }
    75% {
        box-shadow: 0 0 20px 7px rgba(255, 222, 89, 0.6);
    }
    100% {
        box-shadow: 0 0 5px 1px rgba(255, 222, 89, 0.3);
    }
}

/* Animation lightning glare */
@keyframes lightning-glare {
    0%, 100% {
        opacity: 0;
    }
    3%, 6% {
        opacity: 0.8;
    }
    4%, 5% {
        opacity: 0;
    }
    50%, 55%, 65% {
        opacity: 0;
    }
    52%, 62% {
        opacity: 0.6;
    }
}

/* Effet d'orage aléatoire sur chaque élément */
.gallery-item:nth-child(1)::after {
    animation-delay: 0s;
}

.gallery-item:nth-child(2)::after {
    animation-delay: 1s;
}

.gallery-item:nth-child(3)::after {
    animation-delay: 2s;
}

.gallery-item:nth-child(4)::after {
    animation-delay: 3s;
}

.gallery-item:nth-child(5)::after {
    animation-delay: 4s;
}

.gallery-item:nth-child(6)::after {
    animation-delay: 5s;
}

/* Lightning général pour le header */
.lightning {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 200px;
    background-color: var(--primary);
    box-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary), 0 0 30px var(--primary);
    animation: lightning 5s infinite;
    opacity: 0;
    z-index: 1;
}

@keyframes lightning {
    0% { opacity: 0; transform: translateX(-50%) translateY(-100px); }
    2% { opacity: 1; transform: translateX(-50%) translateY(100vh); }
    3% { opacity: 0; transform: translateX(-50%) translateY(100vh); }
    100% { opacity: 0; transform: translateX(-50%) translateY(100vh); }
}

.lightning:nth-child(2) {
    left: 30%;
    animation-delay: 2s;
}

.lightning:nth-child(3) {
    left: 70%;
    animation-delay: 3.5s;
}

/* Thunder effect */
.thunder-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 222, 89, 0) 0%, rgba(255, 222, 89, 0) 50%, rgba(255, 222, 89, 0.05) 100%);
    opacity: 0;
    animation: thunder 2s infinite;
    z-index: 0;
}

@keyframes thunder {
    0% { opacity: 0; }
    2% { opacity: 1; }
    3% { opacity: 0; }
    100% { opacity: 0; }
}

/* ===== HOVER EFFECTS ===== */
/* DANDYSHOES - Hover Effects */

/* Neon text effect */
.neon-text {
    color: var(--light);
    text-shadow: 0 0 5px var(--primary), 0 0 10px var(--primary), 0 0 20px var(--primary);
    animation: neon-pulse 2s infinite alternate;
}

/* 3D tilt effect for cards */
.hover-3d {
    transition: transform 0.5s ease;
    transform-style: preserve-3d;
}

.hover-3d:hover {
    transform: perspective(1000px) rotateY(10deg) rotateX(5deg);
}

/* Enhanced 3D tilt with mouse tracking */
.tilt-3d {
    transition: transform 0.1s ease-out;
    transform-style: preserve-3d;
}

/* Glow effects */
.glow-on-hover {
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.glow-on-hover:hover {
    box-shadow: 0 0 20px rgba(255, 222, 89, 0.6);
    transform: translateY(-2px);
}

/* Scale effects */
.scale-on-hover {
    transition: transform 0.3s ease;
}

.scale-on-hover:hover {
    transform: scale(1.05);
}

/* Lift effect */
.lift-on-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lift-on-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Border glow effect */
.border-glow-hover {
    position: relative;
    transition: all 0.3s ease;
}

.border-glow-hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(45deg, var(--primary), transparent, var(--primary));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.border-glow-hover:hover::before {
    opacity: 1;
}

/* Text highlight effects */
.highlight-on-hover {
    position: relative;
    transition: color 0.3s ease;
}

.highlight-on-hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.highlight-on-hover:hover {
    color: var(--primary);
}

.highlight-on-hover:hover::after {
    width: 100%;
}

/* Underline expand effect */
.underline-expand {
    position: relative;
    text-decoration: none;
}

.underline-expand::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.underline-expand:hover::before {
    width: 100%;
}

/* Button pulse effect */
.pulse-on-hover {
    transition: all 0.3s ease;
}

.pulse-on-hover:hover {
    animation: pulse-effect 0.6s ease;
}

@keyframes pulse-effect {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Rotate effect */
.rotate-on-hover {
    transition: transform 0.3s ease;
}

.rotate-on-hover:hover {
    transform: rotate(5deg);
}

/* Shake effect */
.shake-on-hover:hover {
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Color transition effects */
.color-transition {
    transition: color 0.3s ease, background-color 0.3s ease;
}

/* Specific DANDYSHOES hover effects */

/* Streaming links hover */
.streaming-links a {
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.streaming-links a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 222, 89, 0.4);
}

/* Gallery items lightning hover */
.gallery-item {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gallery-item:hover {
    transform: scale(1.02);
}

/* Navigation links hover */
.nav-links a {
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Social links hover effect */
.social-links a {
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 8px 20px rgba(255, 222, 89, 0.3);
}

/* Platform logos hover */
.platform-logo {
    transition: all 0.3s ease;
}

.platform-logo:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

/* Tour date cards hover */
.tour-date {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tour-date::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 222, 89, 0.1), transparent);
    transition: left 0.5s ease;
}

.tour-date:hover::before {
    left: 100%;
}

/* Form elements hover */
.form-group input:hover,
.form-group textarea:hover {
    background-color: rgba(60, 60, 60, 0.9);
    box-shadow: 0 0 15px rgba(255, 222, 89, 0.2);
}

/* CTA button advanced hover */
.cta-button {
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

/* Responsive hover effects */
@media (max-width: 768px) {
    /* Disable complex hovers on mobile for performance */
    .hover-3d:hover {
        transform: scale(1.03);
    }
    
    .gallery-item:hover::before {
        animation: lightning-pulse 3s infinite;
    }
}

/* Accessibility: Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .hover-3d,
    .scale-on-hover,
    .lift-on-hover,
    .rotate-on-hover {
        transition: none;
    }
    
    .hover-3d:hover,
    .scale-on-hover:hover,
    .lift-on-hover:hover,
    .rotate-on-hover:hover {
        transform: none;
    }
}

/* ===== MOBILE ===== */
/* DANDYSHOES - Mobile Responsive (max-width: 768px) */

@media (max-width: 768px) {
    /* Navigation mobile */
    .mobile-menu-toggle {
        display: flex;
        position: fixed;
        right: 20px;
        top: 20px;
    }
    
    .mobile-menu-toggle span {
        transition: all 0.3s ease;
        transform-origin: center;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background-color: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        transition: all 0.5s ease;
        z-index: 999;
        padding-top: 80px;
        padding-bottom: 20px;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        margin: 8px 0;
        padding: 8px 0;
        font-size: 1rem;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .nav-links.active a {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.3s;
    }
    
    /* Header mobile */
    .parallax-image {
        object-position: center center;
        transform: translateZ(-1px) scale(1.5);
    }
    
    .header-content {
        padding-left: 1rem;
        padding-right: 1rem;
        text-align: center;
    }
    
    .header-content h1.logo {
        font-size: 2.2rem; /* Réduit mais reste lisible */
        margin-bottom: 0.5rem;
        text-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
        line-height: 1.1;
        text-align: center;
        width: 100%;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    
    .tagline {
        font-size: 0.9rem;
        margin-bottom: 1rem; /* Réduit l'espacement */
        text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
        opacity: 0.95;
    }
    
    /* Sections mobile */
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    /* Music section mobile */
    .release-title {
        font-size: 2rem;
    }
    
    .release-art.video-container {
        width: 98%;
        max-width: none;
        aspect-ratio: 16/9;
        border-radius: 10px;
    }

    .youtube-container iframe {
        border-radius: 10px;
        box-shadow:
            0 0 0 2px var(--primary),
            0 8px 20px rgba(0, 0, 0, 0.4),
            0 0 15px rgba(255, 222, 89, 0.3);
    }
    
    .streaming-links {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    /* About section mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        height: 300px;
        margin-bottom: 1.5rem;
        order: -1;
    }
    
    .about-text p {
        text-align: left;
        font-size: 1rem;
    }
    
    .members-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .member-item {
        flex-direction: column;
        text-align: center;
    }
    
    .read-more-btn {
        margin: 1rem auto;
        display: block;
        width: fit-content;
    }
    
    /* Tour section mobile */
    .date-location {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .tour-date {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .tickets-btn {
        margin-top: 15px;
        align-self: flex-end;
    }
    
    /* Gallery mobile */
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .gallery-item:hover::before {
        animation: lightning-pulse 3s infinite;
    }
    
    /* Contact mobile */
    .contact-form {
        padding: 15px;
        margin: 0 15px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .submit-btn {
        width: 100%;
        padding: 1rem;
    }
    
    /* Footer mobile */
    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-nav a {
        margin: 5px 10px;
    }
    
    .footer-logo {
        font-size: 1.5rem;
    }
    
    /* Video section mobile (si applicable) */
    .video-promo-section {
        padding: 60px 20px;
    }
    
    .video-promo-text {
        font-size: 1rem;
    }
    .header-content h1.logo {
    font-size: 1.5rem; /* Réduction de la taille pour les très petits écrans */
    max-width: 90%; /* Limitation de la largeur du texte */
    margin: 0 auto; /* Centrage horizontal */
    text-align: center;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
    }
    
    /* Platform logos mobile - supprimé pour éviter les conflits, voir header.css */
}
/* DANDYSHOES - Mobile Responsive CTA Buttons (max-width: 768px) */

@media (max-width: 768px) {
    /* CTA Principal - Optimisé mobile */
    .cta-button {
        display: block;
        width: 90%;
        max-width: 280px;
        margin: 1.5rem auto;
        padding: 1rem 2rem;
        background: linear-gradient(135deg, var(--primary) 0%, #ffea8c 100%);
        color: var(--dark);
        text-decoration: none;
        font-weight: 700;
        text-transform: uppercase;
        border-radius: 40px;
        transition: all 0.2s ease;
        letter-spacing: 1px;
        font-size: 0.95rem;
        box-shadow: 0 4px 15px rgba(255, 222, 89, 0.3);
        text-align: center;
        cursor: pointer;
        border: none;
        /* Optimisation tactile */
        -webkit-tap-highlight-color: rgba(255, 222, 89, 0.3);
        touch-action: manipulation;
        user-select: none;
        min-height: 48px; /* Taille minimum pour les doigts */
    }

    .cta-button:active {
        transform: scale(0.98);
        box-shadow: 0 2px 10px rgba(255, 222, 89, 0.4);
        background: linear-gradient(135deg, #ffea8c 0%, var(--primary) 100%);
    }

    /* Bouton vidéo mobile */
    .video-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 260px;
        margin: 1rem auto;
        background: linear-gradient(135deg, #ff3c3c 0%, #ff5555 100%);
        color: white;
        padding: 12px 24px;
        border-radius: 35px;
        text-decoration: none;
        font-weight: 700;
        font-size: 0.9rem;
        box-shadow: 0 4px 12px rgba(255, 60, 60, 0.4);
        transition: all 0.2s ease;
        border: 2px solid transparent;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        /* Optimisation tactile */
        -webkit-tap-highlight-color: rgba(255, 60, 60, 0.3);
        touch-action: manipulation;
        user-select: none;
        min-height: 48px;
    }

    .video-cta:active {
        transform: scale(0.97);
        box-shadow: 0 2px 8px rgba(255, 60, 60, 0.5);
        background: linear-gradient(135deg, #fff 0%, #f5f5f5 100%);
        color: #ff3c3c;
        border: 2px solid #ff3c3c;
    }

    /* Icône vidéo mobile */
    .video-icon {
        width: 20px;
        height: 20px;
        margin-right: 8px;
        fill: currentColor;
        flex-shrink: 0;
    }

    /* Boutons de tickets mobile */
    .tickets-btn {
        width: 100%;
        max-width: 200px;
        padding: 0.8rem 1.5rem;
        background: linear-gradient(135deg, transparent 0%, rgba(255, 222, 89, 0.1) 100%);
        border: 2px solid var(--primary);
        color: var(--primary);
        border-radius: 40px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        font-size: 0.85rem;
        cursor: pointer;
        transition: all 0.2s ease;
        text-decoration: none;
        display: block;
        text-align: center;
        margin: 1rem auto 0 auto;
        /* Optimisation tactile */
        -webkit-tap-highlight-color: rgba(255, 222, 89, 0.3);
        touch-action: manipulation;
        user-select: none;
        min-height: 44px;
    }

    .tickets-btn:active {
        background: var(--primary);
        color: var(--dark);
        transform: scale(0.98);
        box-shadow: 0 2px 8px rgba(255, 222, 89, 0.3);
    }

    /* Bouton Read More mobile */
    .read-more-btn {
        background: linear-gradient(135deg, transparent 0%, rgba(255, 222, 89, 0.1) 100%);
        border: 2px solid var(--primary);
        color: var(--primary);
        padding: 10px 20px;
        border-radius: 25px;
        font-size: 0.85rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        cursor: pointer;
        margin: 1rem auto;
        transition: all 0.2s ease;
        display: block;
        width: fit-content;
        min-width: 130px;
        text-align: center;
        /* Optimisation tactile */
        -webkit-tap-highlight-color: rgba(255, 222, 89, 0.3);
        touch-action: manipulation;
        user-select: none;
        min-height: 44px;
    }

    .read-more-btn:active {
        background: var(--primary);
        color: var(--dark);
        transform: scale(0.98);
        box-shadow: 0 2px 8px rgba(255, 222, 89, 0.3);
    }

    /* Bouton de soumission mobile */
    .submit-btn {
        position: static;
        display: block;
        width: 100%;
        max-width: 100%;
        margin: 2rem 0 0 0;
        padding: 1.2rem 2rem;
        background: linear-gradient(135deg, var(--primary) 0%, #ffea8c 100%);
        color: var(--dark);
        border: none;
        border-radius: 40px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        cursor: pointer;
        transition: all 0.2s ease;
        font-size: 0.95rem;
        box-shadow: 0 4px 15px rgba(255, 222, 89, 0.3);
        text-align: center;
        /* Optimisation tactile */
        -webkit-tap-highlight-color: rgba(255, 222, 89, 0.3);
        touch-action: manipulation;
        user-select: none;
        min-height: 52px; /* Plus haut pour le bouton principal */
    }

    .submit-btn:active {
        transform: scale(0.98);
        box-shadow: 0 2px 10px rgba(255, 222, 89, 0.4);
        background: linear-gradient(135deg, #ffea8c 0%, var(--primary) 100%);
    }

    /* États de focus pour l'accessibilité mobile */
    .cta-button:focus,
    .video-cta:focus,
    .tickets-btn:focus,
    .read-more-btn:focus,
    .submit-btn:focus {
        outline: 2px solid var(--primary);
        outline-offset: 2px;
    }

    /* Conteneurs de boutons mobile */
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        width: 100%;
        padding: 0 1rem;
    }

    .streaming-links {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
        margin-top: 1.5rem;
        padding: 0 1rem;
    }

    /* Tour dates - boutons adaptés */
    .tour-date {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
        padding: 1.2rem;
    }

    .date-location {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        text-align: left;
    }

    /* Espacement des sections avec boutons */
    .platforms-container {
        margin-top: 2rem;
    }

    .latest-release .streaming-links {
        margin-top: 2rem;
    }
}

/* Très petits écrans (max-width: 480px) */
@media (max-width: 480px) {
    /* Navigation encore plus compacte */
    .nav-links a {
        margin: 6px 0;
        padding: 6px 0;
        font-size: 0.95rem;
    }

    .cta-button {
        width: 95%;
        max-width: 260px;
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
        margin: 1.2rem auto;
    }

    .video-cta {
        width: 95%;
        max-width: 240px;
        padding: 11px 20px;
        font-size: 0.85rem;
    }

    .tickets-btn {
        max-width: 180px;
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }

    .read-more-btn {
        padding: 9px 18px;
        font-size: 0.8rem;
        min-width: 120px;
    }

    .submit-btn {
        padding: 1.1rem 1.8rem;
        font-size: 0.9rem;
        margin: 1.8rem 0 0 0;
    }

    /* Ajustements des conteneurs */
    .hero-buttons {
        padding: 0 0.5rem;
    }

    .streaming-links {
        padding: 0 0.5rem;
    }
}

/* Écrans Samsung Galaxy et similaires (360px-375px) */
@media (max-width: 375px) {
    /* Navigation ultra compacte pour petits écrans */
    .nav-links {
        padding-top: 70px;
    }

    .nav-links a {
        margin: 5px 0;
        padding: 5px 0;
        font-size: 0.9rem;
    }

    .header-content h1.logo {
        font-size: 2rem;
        text-align: center !important;
        width: 100% !important;
        display: block !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        position: relative;
        left: 0 !important;
        transform: translateX(0) !important;
    }

    .cta-button {
        width: 100%;
        max-width: 240px;
        padding: 0.85rem 1.3rem;
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }

    .video-cta {
        width: 100%;
        max-width: 220px;
        padding: 10px 18px;
        font-size: 0.8rem;
    }

    .video-icon {
        width: 18px;
        height: 18px;
        margin-right: 6px;
    }

    .tickets-btn {
        max-width: 160px;
        padding: 0.6rem 1rem;
        font-size: 0.75rem;
    }

    .read-more-btn {
        padding: 8px 16px;
        font-size: 0.75rem;
        min-width: 110px;
    }

    .submit-btn {
        padding: 1rem 1.5rem;
        font-size: 0.85rem;
    }
}

/* Optimisations spécifiques iOS */
@supports (-webkit-touch-callout: none) {
    .cta-button,
    .video-cta,
    .tickets-btn,
    .read-more-btn,
    .submit-btn {
        -webkit-appearance: none;
        appearance: none; /* Standard property for broader compatibility */
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none; /* Standard property for broader compatibility */
    }

    /* Évite le zoom sur les inputs */
    .submit-btn {
        font-size: 16px;
    }
}

/* Animation de feedback tactile */
@keyframes mobile-tap {
    0% { transform: scale(1); }
    50% { transform: scale(0.98); }
    100% { transform: scale(1); }
}

/* États désactivés pour mobile */
.cta-button:disabled,
.video-cta:disabled,
.tickets-btn:disabled,
.read-more-btn:disabled,
.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    pointer-events: none;
}

/* Amélioration de la lisibilité sur petits écrans */
@media (max-width: 768px) and (max-height: 600px) {
    /* Écrans courts - réduction des marges */
    .cta-button {
        margin: 1rem auto;
    }

    .submit-btn {
        margin: 1.5rem 0 0 0;
    }

    .hero-buttons {
        gap: 0.8rem;
    }
}

/* Samsung Galaxy et petits écrans (360px) */
@media screen and (max-width: 360px) {
    .header-content h1.logo {
        font-size: 1.8rem !important;
        text-align: center !important;
        width: 100% !important;
        display: block !important;
        margin: 0 auto 0.5rem auto !important;
        padding: 0 !important;
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
        transform: translateX(0) !important;
    }

    .header-content {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
}

@media screen and (max-width: 575px) {
    .release-art.video-container {
        width: 98%;
        max-width: none;
        border-radius: 12px;
        margin: 0 auto 1rem;
    }
    
    .youtube-container iframe {
        border-radius: 12px;
    }
    
    /* Réduction des effets pour les performances mobile */
    .video-container:hover iframe {
        transform: none;
        box-shadow: 
            0 0 0 2px var(--primary),
            0 12px 40px rgba(0, 0, 0, 0.5),
            0 0 20px rgba(255, 222, 89, 0.3);
    }
    
    /* Désactiver l'animation de pulsation sur très petits écrans */
    .video-container::before {
        display: none;
    }
}

/* Mobile Extra Small (max-width: 375px) */
@media screen and (max-width: 375px) {
    .release-art.video-container {
        width: 98%;
        max-width: none;
        border-radius: 10px;
        margin: 0 auto 1rem;
    }
    
    .youtube-container iframe {
        border-radius: 10px;
    }
}

/* Amélioration pour les écrans tactiles */
@media (hover: none) and (pointer: coarse) {
    /* Sur les appareils tactiles, simplifier les interactions */
    .video-container:hover iframe {
        transform: none;
    }
    
    .video-container::before {
        animation: none;
    }
}

/* Support pour les écrans haute densité */
@media screen and (min-resolution: 2dppx) {
    .youtube-container iframe {
        /* Amélioration de la netteté sur écrans Retina */
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Mode sombre amélioré */
@media (prefers-color-scheme: dark) {
    .youtube-container {
        background: #0a0a0a;
    }
    
    .youtube-container iframe {
        box-shadow: 
            0 0 0 3px var(--primary),
            0 15px 50px rgba(0, 0, 0, 0.8),
            0 0 30px rgba(255, 222, 89, 0.3),
            inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    }
}

/* Animation d'apparition pour la vidéo */
.video-container {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fallback pour les navigateurs qui ne supportent pas aspect-ratio */
@supports not (aspect-ratio: 16/9) {
    .release-art.video-container {
        height: 0;
        padding-bottom: 56.25%; /* 16:9 aspect ratio */
    }
    
    .youtube-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}
/* Amélioration de la responsivité pour les plateformes - voir header.css */

/* Correction pour la hiérarchie des z-index */
.parallax-bg {
    z-index: 1;
}

.dark-overlay {
    z-index: 2;
}

.header-content {
    z-index: 3;
    position: relative;
}

/* Amélioration du responsive pour le header-content */
@media (max-width: 768px) {
    .header-content {
        padding-left: 1rem;
        padding-right: 1rem;
        text-align: center;
    }
    
    .header-content h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .tagline {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
}

/* Remonter tout le contenu - géré dans header.css */

/* Logo plus compact */
.header-content h1.logo {
    font-size: 2.2rem; /* Réduit mais reste lisible */
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
    line-height: 1.1;
}

/* Tagline plus compact */
.tagline {
    font-size: 0.9rem;
    margin-bottom: 1rem; /* Réduit l'espacement */
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    opacity: 0.95;
}

/* Bouton CTA plus compact */
.cta-button {
    margin-top: 1rem; /* Réduit de 2rem à 1rem */
    margin-bottom: 1rem;
    padding: 0.8rem 1.8rem;
    font-size: 0.85rem;
    min-width: 200px;
}

/* Section plateformes compacte - voir header.css pour les styles */

/* ========================================
   RELEASE PARTY BANNER - RESPONSIVE
   ======================================== */

/* Tablette et mobile */
@media (max-width: 768px) {
    .release-banner {
        display: block !important;
        width: 90% !important;
        max-width: 320px !important;
        margin: 1.5rem auto !important;
    }

    .release-banner > div {
        padding: 1rem 1.2rem !important;
        border-radius: 10px !important;
    }

    .release-banner span[style*="font-size: 0.75rem"] {
        font-size: 0.65rem !important;
        letter-spacing: 2px !important;
    }

    .release-banner span[style*="font-size: 1.4rem"] {
        font-size: 1.2rem !important;
    }

    .release-banner span[style*="font-size: 0.95rem"] {
        font-size: 0.85rem !important;
    }

    .release-banner span[style*="font-size: 0.85rem"] {
        font-size: 0.75rem !important;
    }

    .release-banner span[style*="padding: 0.4rem 1.2rem"] {
        padding: 0.35rem 1rem !important;
        font-size: 0.7rem !important;
    }
}

/* Mobile petit */
@media (max-width: 480px) {
    .release-banner {
        width: 95% !important;
        max-width: 280px !important;
        margin: 1rem auto !important;
    }

    .release-banner > div {
        padding: 0.9rem 1rem !important;
    }

    .release-banner span[style*="font-size: 0.75rem"] {
        font-size: 0.6rem !important;
        letter-spacing: 1.5px !important;
    }

    .release-banner span[style*="font-size: 1.4rem"] {
        font-size: 1.1rem !important;
    }

    .release-banner span[style*="font-size: 0.95rem"] {
        font-size: 0.8rem !important;
    }

    .release-banner span[style*="font-size: 0.85rem"] {
        font-size: 0.7rem !important;
    }
}

/* Très petit écran */
@media (max-width: 360px) {
    .release-banner {
        width: 98% !important;
        max-width: 260px !important;
    }

    .release-banner > div {
        padding: 0.8rem 0.9rem !important;
    }

    .release-banner span[style*="font-size: 1.4rem"] {
        font-size: 1rem !important;
    }
}

/* ========================================
   EP DIURNE CARD (Music Section) - RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    .glass-card[style*="EP"] {
        padding: 1.2rem 1rem !important;
        margin: 0 1rem 1.5rem 1rem !important;
        max-width: calc(100% - 2rem) !important;
    }

    .glass-card[style*="EP"] h4 {
        font-size: 1.2rem !important;
    }

    .glass-card[style*="EP"] p {
        font-size: 0.95rem !important;
    }

    .glass-card[style*="EP"] a[style*="Get Tickets"] {
        padding: 0.5rem 1.2rem !important;
        font-size: 0.85rem !important;
    }
}

/* ========================================
   TOUR SECTION - RELEASE PARTY & TOGGLE - RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    /* Release party tour date */
    .tour-date[style*="border: 2px solid #ff3c3c"] {
        padding: 1rem !important;
        margin-bottom: 0.5rem;
    }

    .tour-date[style*="border: 2px solid #ff3c3c"] .date {
        font-size: 1rem !important;
    }

    .tour-date[style*="border: 2px solid #ff3c3c"] .location {
        font-size: 0.9rem !important;
    }

    .tour-date[style*="border: 2px solid #ff3c3c"] .venue {
        font-size: 0.8rem !important;
    }

    .tour-date[style*="border: 2px solid #ff3c3c"] .tour-buttons {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
        margin-top: 0.8rem;
    }

    .tour-date[style*="border: 2px solid #ff3c3c"] .tickets-btn {
        width: 100% !important;
        max-width: none !important;
        text-align: center;
        margin: 0 !important;
    }

    /* Toggle button 2025 */
    #toggle2025Dates {
        padding: 0.8rem !important;
        font-size: 0.9rem !important;
        margin: 0.8rem 0 !important;
    }

    /* Dates 2025 container */
    #dates2025 .tour-date {
        padding: 1rem !important;
    }
}

@media (max-width: 480px) {
    .tour-date[style*="border: 2px solid #ff3c3c"] {
        padding: 0.8rem !important;
    }

    .tour-date[style*="border: 2px solid #ff3c3c"] .date {
        font-size: 0.9rem !important;
    }

    .tour-date[style*="border: 2px solid #ff3c3c"] .location {
        font-size: 0.85rem !important;
    }

    #toggle2025Dates {
        padding: 0.7rem !important;
        font-size: 0.85rem !important;
    }
}

/* ========================================
   SPOTIFY EMBEDS SECTION - RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    .spotify-players {
        padding: 0 1rem !important;
    }

    .spotify-embeds {
        padding: 0 !important;
        gap: 1.5rem !important;
    }

    .spotify-embeds .glass-card {
        padding: 1rem !important;
    }
}

/* ===== TABLET ===== */
/* DANDYSHOES - Tablet Responsive (768px to 992px) */

@media (min-width: 769px) and (max-width: 992px) {
    /* Container adjustments */
    .container {
        width: 95%;
        padding: 0 15px;
    }
    
    /* Header tablet */
    .header-content h1.logo {
        font-size: 4rem;
    }
    
    .tagline {
        font-size: 1.3rem;
    }
    
    /* About section tablet */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        height: 350px;
        order: -1; /* Image en premier sur tablettes */
    }
    
    .about-text {
        padding: 0 1rem;
    }
    
    /* Music section tablet */
    .latest-release {
        flex-direction: column;
    }
    
    .release-art, .release-info {
        width: 100%;
        max-width: 500px;
        margin: 0 auto 1.5rem;
    }
    
    .release-art.video-container {
        width: 95%;
        max-width: 900px;
        aspect-ratio: 16/9;
    }
    
    /* Gallery tablet */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* Tour dates tablet */
    .tour-date {
        padding: 1.2rem;
    }
    
    .date {
        font-size: 1.3rem;
    }
    
    /* Contact tablet */
    .contact-form {
        max-width: 500px;
    }
    
    /* Navigation tablet */
    .nav-links {
        gap: 1.5rem;
    }
    
    .nav-links a {
        font-size: 0.85rem;
    }
    
    /* Platform logos tablet - voir header.css */
}

/* iPad specific adjustments */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .section {
        padding: 5rem 2rem;
    }
    
    .header-content {
        padding-top: 22vh;
    }
    
    .release-art.video-container {
        width: 95%;
        max-width: 900px;
    }
}

/* iPad landscape */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .header-content {
        padding-top: 15vh;
    }
    
    .header-content h1.logo {
        font-size: 3.5rem;
    }
    
    .section {
        padding: 4rem 2rem;
    }
}
/* DANDYSHOES - Tablette Responsive CTA Buttons (768px to 992px) */

@media (min-width: 769px) and (max-width: 992px) {
    /* CTA Principal - Ajusté pour tablettes */
    .cta-button {
        display: inline-block;
        padding: 1rem 2.5rem;
        background: linear-gradient(135deg, var(--primary) 0%, #ffea8c 100%);
        color: var(--dark);
        text-decoration: none;
        font-weight: 700;
        text-transform: uppercase;
        border-radius: 45px;
        margin-top: 1.5rem;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        letter-spacing: 1px;
        font-size: 1rem;
        box-shadow: 0 4px 20px rgba(255, 222, 89, 0.3);
        position: relative;
        overflow: hidden;
        min-width: 240px;
        text-align: center;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }

    .cta-button:hover,
    .cta-button:active {
        transform: translateY(-6px) scale(1.03);
        box-shadow: 0 8px 30px rgba(255, 222, 89, 0.5);
        background: linear-gradient(135deg, #ffea8c 0%, var(--primary) 100%);
    }

    /* Bouton vidéo optimisé tablette */
    .video-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #ff3c3c 0%, #ff5555 100%);
        color: white;
        padding: 12px 30px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 700;
        font-size: 1rem;
        box-shadow: 0 4px 18px rgba(255, 60, 60, 0.4);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border: 2px solid transparent;
        min-width: 220px;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        -webkit-tap-highlight-color: transparent;
    }

    .video-cta:hover,
    .video-cta:active {
        transform: translateY(-4px) scale(1.02);
        box-shadow: 0 8px 25px rgba(255, 60, 60, 0.6);
        background: linear-gradient(135deg, #fff 0%, #f5f5f5 100%);
        color: #ff3c3c;
        border: 2px solid #ff3c3c;
    }

    /* Icône vidéo dans le bouton */
    .video-icon {
        width: 22px;
        height: 22px;
        margin-right: 8px;
        fill: currentColor;
    }

    /* Boutons de tickets - Optimisés pour tablette */
    .tickets-btn {
        padding: 0.9rem 1.8rem;
        background: linear-gradient(135deg, transparent 0%, rgba(255, 222, 89, 0.1) 100%);
        border: 2px solid var(--primary);
        color: var(--primary);
        border-radius: 45px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.95rem;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        text-decoration: none;
        display: inline-block;
        min-width: 120px;
        text-align: center;
        position: relative;
        overflow: hidden;
        -webkit-tap-highlight-color: transparent;
    }

    .tickets-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 222, 89, 0.2), transparent);
        transition: left 0.4s ease;
    }

    .tickets-btn:hover,
    .tickets-btn:active {
        background: var(--primary);
        color: var(--dark);
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 6px 20px rgba(255, 222, 89, 0.3);
    }

    .tickets-btn:hover::before {
        left: 100%;
    }

    /* Bouton Read More - Tablette */
    .read-more-btn {
        background: linear-gradient(135deg, transparent 0%, rgba(255, 222, 89, 0.1) 100%);
        border: 2px solid var(--primary);
        color: var(--primary);
        padding: 10px 22px;
        border-radius: 25px;
        font-size: 0.95rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        cursor: pointer;
        margin: 18px auto;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: block;
        width: fit-content;
        min-width: 140px;
        text-align: center;
        -webkit-tap-highlight-color: transparent;
    }

    .read-more-btn:hover,
    .read-more-btn:active {
        background: var(--primary);
        color: var(--dark);
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 5px 18px rgba(255, 222, 89, 0.3);
    }

    /* Bouton de soumission - Tablette */
    .submit-btn {
        position: static;
        display: block;
        margin: 2.5rem auto 0 auto;
        padding: 1.3rem 3.5rem;
        background: linear-gradient(135deg, var(--primary) 0%, #ffea8c 100%);
        color: var(--dark);
        border: none;
        border-radius: 45px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        font-size: 1rem;
        overflow: hidden;
        box-shadow: 0 4px 18px rgba(255, 222, 89, 0.3);
        width: auto;
        max-width: 90%;
        min-width: 260px;
        z-index: 1;
        -webkit-tap-highlight-color: transparent;
    }

    .submit-btn:hover,
    .submit-btn:active {
        transform: translateY(-4px) scale(1.01);
        box-shadow: 0 8px 28px rgba(255, 222, 89, 0.5);
        background: linear-gradient(135deg, #ffea8c 0%, var(--primary) 100%);
    }

    /* États de focus pour l'accessibilité tablette */
    .cta-button:focus,
    .video-cta:focus,
    .tickets-btn:focus,
    .read-more-btn:focus,
    .submit-btn:focus {
        outline: 2px solid var(--primary);
        outline-offset: 3px;
        box-shadow: 0 0 0 3px rgba(255, 222, 89, 0.3);
    }

    /* Animation spéciale pour tablettes */
    @keyframes tablet-bounce {
        0% { transform: translateY(0) scale(1); }
        50% { transform: translateY(-3px) scale(1.01); }
        100% { transform: translateY(0) scale(1); }
    }

    .cta-button:active,
    .video-cta:active {
        animation: tablet-bounce 0.3s ease;
    }
}

/* iPad spécifique (portrait) */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .cta-button {
        margin-top: 2rem;
        padding: 1.1rem 2.8rem;
        font-size: 1.05rem;
    }

    .video-cta {
        padding: 14px 32px;
        font-size: 1.05rem;
    }

    .submit-btn {
        padding: 1.4rem 4rem;
        font-size: 1.05rem;
        min-width: 280px;
    }

    /* Espacement amélioré pour portrait */
    .streaming-links {
        gap: 1.8rem;
        margin-top: 2.5rem;
    }

    .hero-buttons {
        gap: 1.2rem;
        margin-top: 2rem;
    }
}

/* iPad paysage */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .cta-button {
        padding: 1rem 2.3rem;
        font-size: 0.98rem;
    }

    .video-cta {
        padding: 11px 28px;
        font-size: 0.98rem;
    }

    .submit-btn {
        padding: 1.2rem 3.2rem;
        font-size: 0.98rem;
    }

    /* Layout en paysage */
    .hero-buttons {
        flex-direction: row;
        gap: 1.5rem;
        justify-content: center;
    }
}

/* Amélioration des interactions tactiles */
@media (min-width: 769px) and (max-width: 992px) {
    .cta-button,
    .video-cta,
    .tickets-btn,
    .read-more-btn,
    .submit-btn {
        /* Améliore les interactions tactiles */
        touch-action: manipulation;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        
        /* Taille minimale pour les touches */
        min-height: 44px;
    }

    /* Effet de feedback tactile */
    .cta-button:active,
    .video-cta:active,
    .tickets-btn:active,
    .read-more-btn:active,
    .submit-btn:active {
        opacity: 0.9;
        transition: opacity 0.1s ease;
    }
}

/* ===== DESKTOP ===== */
/* DANDYSHOES - Desktop Responsive (993px and above) */

@media screen and (min-width: 993px) {
    /* Container desktop */
    .container {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    /* Section spacing desktop */
    .section {
        padding: 6rem 2rem;
    }
    
    /* Header desktop */
    .header-content h1.logo {
        font-size: 5rem;
    }
    
    .tagline {
        font-size: 1.5rem;
    }
    
        
    .latest-release {
        flex-direction: column;
        align-items: center;
    }
    
    .streaming-links {
        gap: 2rem;
    }
    
    /* About section desktop */
    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }
    
    .about-image {
        height: 400px;
    }

    /* Gallery desktop */
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    /* Tour section desktop */
    .tour-date {
        padding: 1.5rem;
    }
    
    .date-location {
        gap: 2rem;
    }
    
    .date {
        font-size: 1.5rem;
    }
    
    /* Navigation desktop */
    .nav-links {
        gap: 2rem;
    }
    
    .nav-links a {
        font-size: 0.9rem;
    }
    
    /* Hover effects enhanced for desktop */
    .gallery-item:hover {
        transform: scale(1.05);
    }
    
    .streaming-links a:hover {
        transform: translateY(-8px) scale(1.15);
    }
    
    .social-links a:hover {
        transform: translateY(-8px) rotate(15deg);
    }
    
    /* Platform scrolling desktop - voir header.css */
    
    /* Contact desktop */
    .contact-form {
        max-width: 600px;
    }
    
    /* Footer desktop */
    .footer-nav {
        gap: 2rem;
    }
    
    .social-links {
        gap: 1.5rem;
    }
}

/* Large desktop (1200px+) */
@media screen and (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }
    
    .section {
        padding: 8rem 2rem;
    }
    
    .header-content h1.logo {
        font-size: 6rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 2.5rem;
    }
    
    .release-art.video-container {
        width: 85%;
        max-width: 1400px;
    }
}

/* Ultra-wide screens (1400px+) */
@media screen and (min-width: 1400px) {
    .container {
        max-width: 1600px;
    }
    
    .about-content {
        gap: 6rem;
    }
    
    .date-location {
        gap: 3rem;
    }
    
    .streaming-links {
        gap: 2.5rem;
    }
}

/* High DPI displays */
@media screen and (min-resolution: 2dppx) {
    .platform-logo img,
    .member-img,
    .gallery-item img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}
/* DANDYSHOES - Desktop Responsive CTA Buttons (993px and above) */

@media screen and (min-width: 993px) {
    /* CTA Principal - Bouton "Out now : Thunder" */
    .cta-button {
        display: inline-block;
        padding: 1.2rem 3rem;
        background: linear-gradient(135deg, var(--primary) 0%, #ffea8c 100%);
        color: var(--dark);
        text-decoration: none;
        font-weight: 700;
        text-transform: uppercase;
        border-radius: 50px;
        margin-top: 2rem;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        letter-spacing: 1.5px;
        font-size: 1.1rem;
        box-shadow: 0 6px 25px rgba(255, 222, 89, 0.4);
        position: relative;
        overflow: hidden;
        min-width: 280px;
        text-align: center;
        cursor: pointer;
    }

    .cta-button:hover {
        transform: translateY(-8px) scale(1.05);
        box-shadow: 0 12px 40px rgba(255, 222, 89, 0.6);
        background: linear-gradient(135deg, #ffea8c 0%, var(--primary) 100%);
    }

    .cta-button:active {
        transform: translateY(-4px) scale(1.02);
        transition: all 0.1s ease;
    }

    /* Bouton vidéo amélioré */
    .video-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #ff3c3c 0%, #ff5555 100%);
        color: white;
        padding: 15px 35px;
        border-radius: 35px;
        text-decoration: none;
        font-weight: 700;
        font-size: 1.1rem;
        box-shadow: 0 6px 20px rgba(255, 60, 60, 0.5);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border: 2px solid transparent;
        min-width: 250px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .video-cta:hover {
        transform: translateY(-5px) scale(1.03);
        box-shadow: 0 10px 30px rgba(255, 60, 60, 0.7);
        background: linear-gradient(135deg, #fff 0%, #f5f5f5 100%);
        color: #ff3c3c;
        border: 2px solid #ff3c3c;
    }

    .video-cta:active {
        transform: translateY(-2px) scale(1.01);
        box-shadow: 0 4px 15px rgba(255, 60, 60, 0.5);
    }

    /* Boutons de tickets pour les concerts */
    .tickets-btn {
        padding: 1rem 2rem;
        background: linear-gradient(135deg, transparent 0%, rgba(255, 222, 89, 0.1) 100%);
        border: 2px solid var(--primary);
        color: var(--primary);
        border-radius: 50px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        text-decoration: none;
        display: inline-block;
        min-width: 140px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .tickets-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 222, 89, 0.3), transparent);
        transition: left 0.5s ease;
    }

    .tickets-btn:hover {
        background: var(--primary);
        color: var(--dark);
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 8px 25px rgba(255, 222, 89, 0.4);
    }

    .tickets-btn:hover::before {
        left: 100%;
    }

    /* Bouton Read More */
    .read-more-btn {
        background: linear-gradient(135deg, transparent 0%, rgba(255, 222, 89, 0.1) 100%);
        border: 2px solid var(--primary);
        color: var(--primary);
        padding: 12px 25px;
        border-radius: 30px;
        font-size: 1rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        cursor: pointer;
        margin: 20px 0;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: inline-block;
        min-width: 160px;
        text-align: center;
    }

    .read-more-btn:hover {
        background: var(--primary);
        color: var(--dark);
        transform: translateY(-4px) scale(1.03);
        box-shadow: 0 6px 20px rgba(255, 222, 89, 0.4);
    }

    /* Bouton de soumission de formulaire */
    .submit-btn {
        position: static;
        display: block;
        margin: 3rem auto 0 auto;
        padding: 1.5rem 4.5rem;
        background: linear-gradient(135deg, var(--primary) 0%, #ffea8c 100%);
        color: var(--dark);
        border: none;
        border-radius: 50px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        font-size: 1.1rem;
        overflow: hidden;
        box-shadow: 0 6px 20px rgba(255, 222, 89, 0.4);
        width: auto;
        max-width: 100%;
        min-width: 300px;
        z-index: 1;
    }

    .submit-btn:hover {
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 12px 35px rgba(255, 222, 89, 0.6);
        background: linear-gradient(135deg, #ffea8c 0%, var(--primary) 100%);
    }

    .submit-btn:active {
        transform: translateY(-2px) scale(1.01);
        box-shadow: 0 6px 20px rgba(255, 222, 89, 0.4);
    }

    /* Effets supplémentaires pour Desktop */
    .cta-button,
    .video-cta,
    .tickets-btn,
    .read-more-btn,
    .submit-btn {
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
    }

    /* Animation de pulsation pour les boutons importants */
    @keyframes cta-pulse {
        0% { box-shadow: 0 6px 25px rgba(255, 222, 89, 0.4); }
        50% { box-shadow: 0 8px 30px rgba(255, 222, 89, 0.6); }
        100% { box-shadow: 0 6px 25px rgba(255, 222, 89, 0.4); }
    }

    .cta-button:focus,
    .video-cta:focus {
        outline: none;
        animation: cta-pulse 2s infinite;
    }
}

/* Large Desktop (1200px+) - Boutons encore plus grands */
@media screen and (min-width: 1200px) {
    .cta-button {
        padding: 1.4rem 3.5rem;
        font-size: 1.2rem;
        min-width: 320px;
    }

    .video-cta {
        padding: 18px 40px;
        font-size: 1.2rem;
        min-width: 280px;
    }

    .submit-btn {
        padding: 1.6rem 5rem;
        font-size: 1.2rem;
        min-width: 350px;
    }
}

/* Ultra-wide screens (1400px+) */
@media screen and (min-width: 1400px) {
    .cta-button {
        padding: 1.5rem 4rem;
        font-size: 1.3rem;
    }

    .video-cta {
        padding: 20px 45px;
        font-size: 1.3rem;
    }
}
/* Desktop Large (1200px+) - VIDEO OPTIMISÉE */
@media screen and (min-width: 1200px) {
    .release-art.video-container {
        max-width: 1400px;
        width: 85%;
        border-radius: 25px;
    }

    .youtube-container iframe {
        border-radius: 25px;
    }

    .video-container:hover iframe {
        transform: translateY(-8px) scale(1.03);
    }
}

/* Desktop Standard (993px to 1199px) */
@media screen and (min-width: 993px) and (max-width: 1199px) {
    .release-art.video-container {
        max-width: 1200px;
        width: 90%;
    }
}

/* Tablet Portrait (769px to 992px) */
@media screen and (min-width: 769px) and (max-width: 992px) {
    .release-art.video-container {
        width: 95%;
        max-width: 900px;
        border-radius: 18px;
    }

    .youtube-container iframe {
        border-radius: 18px;
    }

    .video-container:hover iframe {
        transform: translateY(-3px) scale(1.01);
    }
}

/* Mobile Large (576px to 768px) - PLUS GRAND SUR MOBILE */
@media screen and (max-width: 768px) {
    .latest-release {
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .release-art.video-container {
        width: 98%;
        max-width: none;
        border-radius: 15px;
        margin: 0 auto 1.5rem;
    }

    .youtube-container iframe {
        border-radius: 15px;
        box-shadow:
            0 0 0 2px var(--primary),
            0 10px 35px rgba(0, 0, 0, 0.5),
            0 0 20px rgba(255, 222, 89, 0.3);
    }

    .video-container:hover iframe {
        transform: translateY(-2px);
        box-shadow:
            0 0 0 2px var(--primary),
            0 15px 45px rgba(0, 0, 0, 0.6),
            0 0 25px rgba(255, 222, 89, 0.4);
    }
}
