/* ==========================================================================
   1. ZÁKLADNÍ NASTAVENÍ A RESET
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #0b0b0b;
    color: #e0e0e0;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   2. NAVIGACE (HEADER)
   ========================================================================== */
header {
    background-color: rgba(18, 18, 18, 0.95);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    border-bottom: 2px solid #d4af37; /* Zlatá linka */
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo span {
    color: #d4af37; /* Zlaté zvýraznění */
}

nav {
    display: flex;
    gap: 25px;
}

nav a {
    color: #b3b3b3;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
}

nav a:hover, nav a.active {
    color: #d4af37;
    border-bottom: 2px solid #d4af37;
}

.btn-nav {
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
    padding: 8px 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.btn-nav:hover {
    background: #d4af37;
    color: #0b0b0b;
}

/* ==========================================================================
   3. HERO BANNERY
   ========================================================================== */
.hero {
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.85)), 
                url('https://images.unsplash.com/photo-1596838132731-3301c3fd4317?auto=format&fit=crop&w=1600&q=80') no-repeat center center/cover;
    height: 75vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.casino-hero {
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.85)), 
                url('https://images.unsplash.com/photo-1511193311914-0346f16efe90?auto=format&fit=crop&w=1600&q=80') no-repeat center center/cover;
    height: 80vh;
}

.hero-subtitle {
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 800;
    max-width: 900px;
    line-height: 1.2;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 750px;
    margin: 0 auto 35px auto;
    color: #cccccc;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Tlačítka */
.btn {
    background-color: #d4af37;
    color: #0b0b0b;
    padding: 14px 35px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #f3cf65;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #0b0b0b;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.btn-block {
    width: 100%;
    margin-top: 10px;
}

/* ==========================================================================
   4. SEKCÍ TITULKY A BLOKY (FEATURES)
   ========================================================================== */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title span {
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #ffffff;
    font-weight: 700;
}

.content-section {
    padding: 80px 0;
}

.features {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-box {
    background-color: #121212;
    border: 1px solid #222222;
    padding: 40px 30px;
    flex: 1;
    min-width: 280px;
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-box:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.6);
}

.feature-icon {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 20px;
}

.feature-box h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.feature-box p {
    color: #aaaaaa;
    font-size: 0.95rem;
}

/* ==========================================================================
   5. O NÁS / VIP SEKCE
   ========================================================================== */
.about-section, .vip-section {
    padding: 100px 0;
    background-color: #121212;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
}

.about-text, .vip-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text h2, .vip-text h2 {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 25px;
}

.lead {
    font-size: 1.3rem;
    color: #d4af37;
    margin-bottom: 20px;
    font-weight: 500;
}

.about-text p, .vip-text p {
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Statistiky */
.stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.stat-item strong {
    display: block;
    font-size: 3rem;
    color: #d4af37;
    font-weight: 800;
}

.stat-item span {
    color: #888888;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* VIP benefity list */
.vip-benefits {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 40px auto 0 auto;
}

.vip-benefits li {
    margin-bottom: 18px;
    font-size: 1.05rem;
    color: #e0e0e0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.vip-benefits i {
    color: #d4af37;
    font-size: 1.2rem;
    min-width: 25px;
}

/* ==========================================================================
   6. JÍDELNÍ LÍSTEK (MENU) & EVENTY
   ========================================================================== */
.menu-preview {
    padding: 100px 0;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.menu-item {
    background: #121212;
    padding: 25px;
    border-left: 3px solid #d4af37;
    border-radius: 0 4px 4px 0;
}

.menu-details h3 {
    display: flex;
    justify-content: space-between;
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.menu-details h3 span {
    color: #d4af37;
    font-weight: 700;
}

.menu-details p {
    color: #999999;
    font-size: 0.95rem;
}

/* Eventy */
.events-section {
    padding: 100px 0;
    background-color: #090909;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.event-card {
    background: #161616;
    padding: 35px;
    border-radius: 6px;
    border: 1px solid #222;
}

.event-date {
    color: #d4af37;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.event-card h3 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.event-card p {
    color: #aaaaaa;
}

/* ==========================================================================
   7. INTERAKTIVNÍ JACKPOT WIDGET
   ========================================================================== */
.jackpot-container {
    background: linear-gradient(145deg, #1f1111, #120808);
    border: 2px solid #8b0000; /* Temně červená */
    padding: 30px;
    max-width: 500px;
    margin: 30px auto 0 auto;
    border-radius: 8px;
    box-shadow: 0 0 25px rgba(139, 0, 0, 0.4);
}

.jackpot-container h3 {
    color: #ffffff;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.jackpot-amount {
    font-size: 2.5rem;
    color: #ffcc00;
    font-weight: 900;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.6);
    margin-bottom: 8px;
}

.jackpot-info {
    font-size: 0.75rem;
    color: #666666 !important;
    margin-bottom: 0 !important;
}

/* ==========================================================================
   8. RECENZE (TESTIMONIALS)
   ========================================================================== */
.testimonials {
    padding: 100px 0;
    background-color: #121212;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.testimonial-item {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 6px;
    position: relative;
}

.testimonial-item p {
    font-style: italic;
    color: #cccccc;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.testimonial-item h4 {
    color: #d4af37;
    font-weight: 600;
}

/* ==========================================================================
   9. REZERVACE A KONTAKTY
   ========================================================================== */
.reservation-section {
    padding: 100px 0;
}

.reservation-flex {
    display: flex;
    gap: 50px;
}

.reservation-form, .contact-info {
    flex: 1;
    background: #121212;
    padding: 45px;
    border-radius: 6px;
    border: 1px solid #1f1f1f;
}

.reservation-form h2, .contact-info h2 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.reservation-form p {
    color: #999999;
    margin-bottom: 30px;
}

/* Formulářové prvky */
.form-group {
    margin-bottom: 20px;
}

.flex-group {
    display: flex;
    gap: 20px;
}

.flex-group input {
    flex: 1;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="time"],
select {
    width: 100%;
    padding: 14px;
    background-color: #1a1a1a;
    border: 1px solid #333333;
    color: #ffffff;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

input:focus, select:focus {
    outline: none;
    border-color: #d4af37;
}

/* Kontakt Info bloky */
.info-block {
    margin-bottom: 25px;
}

.info-block h3 {
    color: #d4af37;
    font-size: 1.1rem;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-block p {
    color: #cccccc;
}

/* ==========================================================================
   10. PRÁVNÍ STRÁNKY (LEGAL SECTIONS)
   ========================================================================== */
.legal-section {
    padding: 80px 0;
    max-width: 900px;
    margin: 0 auto;
}

.legal-section h1 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.last-updated {
    color: #666666;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.legal-divider {
    border: 0;
    height: 1px;
    background: #222222;
    margin: 30px 0;
}

.legal-section h3 {
    color: #d4af37;
    font-size: 1.4rem;
    margin-top: 35px;
    margin-bottom: 15px;
}

.legal-section p {
    color: #cccccc;
    margin-bottom: 20px;
    text-align: justify;
}

.legal-section ul {
    margin-left: 20px;
    margin-bottom: 25px;
    color: #cccccc;
}

.legal-section li {
    margin-bottom: 10px;
}

/* ==========================================================================
   11. PATIČKA (FOOTER)
   ========================================================================== */
footer {
    background-color: #050505;
    padding: 40px 20px;
    border-top: 1px solid #1a1a1a;
    text-align: center;
}

.footer-bottom p {
    color: #666666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.legal-warning {
    font-size: 0.8rem !important;
    color: #555555 !important;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.5;
    border: 1px solid #111111;
    padding: 15px;
    background-color: #080808;
    border-radius: 4px;
}

/* ==========================================================================
   12. RESPONZIVITA (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 992px) {
    .menu-grid, .testimonials-grid, .reservation-flex {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
    .hero-content h1 {
        font-size: 2.6rem;
    }
    .stats {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    .flex-group {
        flex-direction: column;
        gap: 20px;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ===== FULL RESPONSIVE FIX ===== */

img {
    max-width: 100%;
    height: auto;
}

body {
    overflow-x: hidden;
}

.burger {
    display: none;
    width: 42px;
    height: 34px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.burger span {
    display: block;
    height: 3px;
    width: 100%;
    background: #d4af37;
    margin: 7px 0;
    border-radius: 3px;
    transition: 0.3s;
}

.mobile-reserve {
    display: none;
}

/* Tablet */
@media (max-width: 992px) {
    header {
        padding: 18px 24px;
    }

    .hero {
        min-height: 680px;
        height: auto;
        padding: 100px 20px;
    }

    .hero-content h1 {
        font-size: clamp(2.2rem, 6vw, 3rem);
    }

    .menu-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .reservation-flex {
        flex-direction: column;
    }

    .stats {
        flex-wrap: wrap;
    }
}

/* Mobile menu */
@media (max-width: 768px) {
    header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 16px 20px;
    }

    .logo {
        font-size: 1.35rem;
        letter-spacing: 1px;
    }

    .burger {
        display: block;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 82%;
        max-width: 340px;
        height: 100vh;
        background: #111;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 95px 30px 30px;
        gap: 22px;
        border-left: 2px solid #d4af37;
        transition: right 0.35s ease;
        z-index: 1050;
    }

    nav.active {
        right: 0;
    }

    nav a {
        font-size: 1rem;
        width: 100%;
        padding: 10px 0;
    }

    .header-contact {
        display: none;
    }

    .mobile-reserve {
        display: block;
        color: #d4af37 !important;
        border: 1px solid #d4af37;
        text-align: center;
        padding: 12px !important;
        margin-top: 10px;
    }

    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .burger.active span:nth-child(2) {
        opacity: 0;
    }

    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero {
        min-height: 620px;
        padding: 90px 18px;
    }

    .hero-content h1 {
        font-size: 2.1rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        max-width: none;
        text-align: center;
        padding: 13px 22px;
    }

    .about-section,
    .vip-section,
    .menu-preview,
    .events-section,
    .testimonials,
    .reservation-section,
    .content-section {
        padding: 65px 0;
    }

    .section-title h2,
    .about-text h2,
    .vip-text h2 {
        font-size: 2rem;
    }

    .menu-details h3 {
        flex-direction: column;
        gap: 6px;
    }

    .stats {
        flex-direction: column;
        gap: 25px;
    }

    .reservation-form,
    .contact-info,
    .testimonial-item,
    .event-card {
        padding: 28px 22px;
    }

    .flex-group {
        flex-direction: column;
        gap: 0;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }

    .section-title h2,
    .about-text h2,
    .vip-text h2 {
        font-size: 1.75rem;
    }

    .lead {
        font-size: 1.05rem;
    }

    .menu-item {
        padding: 20px;
    }

    .jackpot-amount {
        font-size: 1.8rem;
    }

    footer {
        padding: 30px 15px;
    }
}