/* Casino TRIPLE 7 - Styles CSS */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --gold: #FFC107;
    --gold-dark: #8B7355;
    --red: #DC143C;
    --orange: #FF6347;
    --green: #10B981;
    --black: #000000;
    --white: #FFFFFF;
    --gray-light: #CCCCCC;
    --gray-dark: #333333;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 193, 7, 0.2);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--red) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--black);
}

.logo-text {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--gold);
}

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

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-lang {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-lang.active,
.btn-lang:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.btn-visit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: none;
    color: var(--white);
    padding: 0.5rem 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.3s;
}

.btn-visit:hover {
    color: var(--gold);
}

.btn-reserve {
    background: linear-gradient(135deg, #6B5D4F 0%, #8B7355 100%);
    color: var(--gold);
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-reserve:hover {
    background: linear-gradient(135deg, #8B7355 0%, #A0826D 100%);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

/* Vidéo desktop visible par défaut */
.hero-video-desktop {
    display: block;
}

/* Vidéo mobile cachée par défaut */
.hero-video-mobile {
    display: none;
}



.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.7), rgba(0,0,0,1));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 900;
    margin-bottom: 1rem;
}

.text-gradient-gold {
    background: linear-gradient(90deg, #FFD700 0%, #FF8C00 50%, #FF6347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.7);
}

.hero-subtitle {
    font-size: clamp(2rem, 5vw, 5rem);
    font-weight: bold;
    margin-bottom: 2rem;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--gray-light);
    max-width: 64rem;
    margin: 0 auto 3rem;
}

.hero-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.hero-card {
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
}

.icon-circle-gold,
.icon-circle-red {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.icon-circle-gold {
    background: var(--gold);
}

.icon-circle-red {
    background: var(--red);
}

.hero-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.hero-card p {
    color: var(--gray-light);
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn-gold {
    background: linear-gradient(135deg, #6B5D4F 0%, #8B7355 100%);
    color: var(--gold);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-gold:hover {
    background: linear-gradient(135deg, #8B7355 0%, #A0826D 100%);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.btn-red {
    background: linear-gradient(135deg, #5C0000 0%, #8B0000 100%);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-red:hover {
    background: linear-gradient(135deg, #8B0000 0%, #A52A2A 100%);
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--gold);
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--gold);
}

.underline-orange {
    width: 4rem;
    height: 0.25rem;
    background: var(--orange);
    margin: 1rem auto;
}

.section-subtitle-large {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-light);
    max-width: 48rem;
    margin: 0 auto;
}

/* Carousel */
.carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.carousel-content {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 193, 7, 0.2);
    border: 1px solid var(--gold);
    color: var(--gold);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--gold);
    color: var(--black);
}

.carousel-prev {
    left: -4rem;
}

.carousel-next {
    right: -4rem;
}

.carousel-card {
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
}

.badge-green {
    background: var(--green);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
}

.badge-orange {
    background: var(--orange);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 0.75rem;
    padding: 2rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 1rem;
}

.service-desc {
    color: var(--gray-light);
    margin-bottom: 1.5rem;
}

.service-features-title {
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 193, 7, 0.1);
}

.services-cta {
    text-align: center;
    padding: 3rem 0;
}

.services-cta-text {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.services-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-map h3 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.contact-form-container h3 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.contact-form-container p {
    color: var(--gray-light);
    margin-bottom: 1.5rem;
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#contact-form input,
#contact-form textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 193, 7, 0.3);
    color: var(--white);
    padding: 0.75rem;
    border-radius: 0.375rem;
    font-family: inherit;
}

#contact-form input::placeholder,
#contact-form textarea::placeholder {
    color: var(--gray-light);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.contact-info-card {
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 0.75rem;
    padding: 2rem;
}

.contact-info-card h4 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.contact-info-card a {
    color: var(--white);
    text-decoration: none;
}

.contact-info-card a:hover {
    color: var(--gold);
}

/* Footer */
.footer {
    background: rgba(10, 10, 10, 0.95);
    border-top: 1px solid rgba(255, 193, 7, 0.3);
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
}

.footer-tagline {
    color: var(--gray-light);
    font-size: 0.875rem;
}

.footer-col h4 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 193, 7, 0.1);
    color: var(--gray-light);
    font-size: 0.875rem;
}

.footer-responsible {
    margin-top: 1rem;
}
/* Images des sections Events, Promotions, Winners */
.event-image,
.promo-image {
    width: 100%;
    max-width: 500px;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    margin: 0 auto 1.5rem;
    display: block;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
}

.winner-photo {
    width: 320px;
    height: 320px;
    object-fit: cover;
    border-radius: 10px;
    margin: 0 auto 1.5rem;
    display: block;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    /* Masquer vidéo desktop sur mobile */
    .hero-video-desktop {
        display: none;
    }
    
    /* Afficher vidéo mobile */
    .hero-video-mobile {
        display: block;
        object-fit: cover;
        object-position: center;
    }
    
    .hero {
        min-height: 100vh;
        padding: 6rem 1rem 3rem;
    }
    
    .hero-title {
        font-size: 3rem !important;
    }
    
    .hero-subtitle {
        font-size: 2rem !important;
    }
    
    .event-image,
    .promo-image {
        max-width: 100%;
        height: 350px;
    }
    
    .winner-photo {
        width: 256px;
        height: 256px;
    }
    
    .carousel-prev {
        left: 0;
    }
    
    .carousel-next {
        right: 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    /* AJOUTEZ ICI ⬇️ */
    .hero-video {
        object-fit: cover;
        object-position: center;
    }
    
    .hero {
        min-height: 100vh;
        padding: 6rem 1rem 3rem;
    }
    
    .hero-title {
        font-size: 3rem !important;
    }
    
    .hero-subtitle {
        font-size: 2rem !important;
    }
    
    .event-image,
    .promo-image {
        max-width: 100%;
        height: 350px;
    }
    
    .winner-photo {
        width: 256px;
        height: 256px;
    }
    /* JUSQU'ICI ⬆️ */
    
    .carousel-prev {
        left: 0;
    }
    
    .carousel-next {
        right: 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}


/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #FFD700;
}
/* Navigation Responsive */
@media (max-width: 1023px) {
    #desktop-menu {
        display: none !important;
    }
    
    #burger-btn {
        display: block !important;
    }
}

@media (min-width: 1024px) {
    #desktop-menu {
        display: flex !important;
    }
    
    #burger-btn {
        display: none !important;
    }
    
    #mobile-menu {
        display: none !important;
    }
}

/* Menu Mobile - CACHÉ PAR DÉFAUT */
#mobile-menu {
    display: none !important;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.98);
    z-index: 999;
    padding: 2rem;
    overflow-y: auto;
}

/* Quand le menu est actif */
#mobile-menu.active {
    display: block !important;
}


#mobile-menu.active {
    display: block !important;
}

/* Navbar */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--gold);
}

/* Burger Button */
#burger-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

/* Responsive padding pour le contenu */
body {
    padding-top: 80px;
}

@media (max-width: 768px) {
    #navbar {
        padding: 0.75rem 1rem;
    }
    
    body {
        padding-top: 70px;
    }
}
/* Bouton Visit mobile - caché par défaut */
#mobile-visit-btn {
    display: none;
}

/* Afficher le bouton Visit sur mobile */
@media (max-width: 1023px) {
    #mobile-visit-btn {
        display: inline-block !important;
    }
}

/* Cacher le bouton Visit sur desktop */
@media (min-width: 1024px) {
    #mobile-visit-btn {
        display: none !important;
    }
}
