/* Casino Hotels Poland - Luxury Theme */

:root {
    --gold-primary: #D4A574;
    --gold-secondary: #F4E4BC;
    --gold-dark: #B8956A;
    --black-primary: #1A1A1A;
    --black-secondary: #2D2D2D;
    --burgundy-primary: #8B1538;
    --burgundy-secondary: #A01B3D;
    --burgundy-light: #C41E3A;
    --white: #FFFFFF;
    --cream: #FDF5E6;
    --gray-light: #F5F5F5;
    --gray-dark: #666666;
}

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

body {
    font-family: 'Playfair Display', 'Georgia', serif;
    line-height: 1.6;
    color: var(--black-primary);
    background-color: var(--cream);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Age Verification Overlay */
.age-verification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.age-verification.show {
    display: flex !important;
}

.age-modal {
    background: linear-gradient(135deg, var(--black-primary), var(--black-secondary));
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--gold-primary);
    max-width: 500px;
    margin: 20px;
}

.age-modal h2 {
    color: var(--gold-primary);
    margin-bottom: 20px;
    font-size: 2em;
}

.age-modal p {
    color: var(--white);
    margin-bottom: 30px;
    font-size: 1.1em;
}

.age-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-age {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.btn-age.confirm {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--black-primary);
}

.btn-age.confirm:hover {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
    transform: translateY(-2px);
}

.btn-age.deny {
    background: linear-gradient(135deg, var(--burgundy-primary), var(--burgundy-secondary));
    color: var(--white);
}

.btn-age.deny:hover {
    background: linear-gradient(135deg, var(--burgundy-secondary), var(--burgundy-light));
    transform: translateY(-2px);
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--black-primary), var(--black-secondary));
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(212, 165, 116, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    color: var(--gold-primary);
    font-size: 2.5em;
    font-weight: bold;
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.logo:hover {
    color: var(--gold-secondary);
    text-decoration: none;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav a:hover,
.nav a.active {
    color: var(--gold-primary);
    background: rgba(212, 165, 116, 0.1);
    text-decoration: none;
}

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

.nav a:hover::after,
.nav a.active::after {
    width: 80%;
    left: 10%;
}

.header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.currency-selector {
    background: var(--gold-primary);
    color: var(--black-primary);
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

.btn-book {
    background: linear-gradient(135deg, var(--burgundy-primary), var(--burgundy-secondary));
    color: var(--white);
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-book:hover {
    background: linear-gradient(135deg, var(--burgundy-secondary), var(--burgundy-light));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 21, 56, 0.4);
    color: var(--white);
    text-decoration: none;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--gold-primary);
    font-size: 1.5em;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(26, 26, 26, 0.6), rgba(139, 21, 56, 0.4)),
                url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600" fill="none"><rect width="1200" height="600" fill="%23D4A574"/><path d="M0 300L50 310C100 320 200 340 300 330C400 320 500 280 600 270C700 260 800 280 900 290C1000 300 1100 300 1150 300L1200 300V600H1150C1100 600 1000 600 900 600C800 600 700 600 600 600C500 600 400 600 300 600C200 600 100 600 50 600H0V300Z" fill="%238B1538"/></svg>') center/cover;
    padding: 120px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4em;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    color: var(--gold-primary);
}

.hero p {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--black-primary);
    padding: 18px 35px;
    border: none;
    border-radius: 30px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
    color: var(--black-primary);
    text-decoration: none;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 18px 35px;
    border: 2px solid var(--gold-primary);
    border-radius: 30px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary:hover {
    background: var(--gold-primary);
    color: var(--black-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
    text-decoration: none;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3em;
    color: var(--burgundy-primary);
    margin-bottom: 15px;
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-dark));
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    font-size: 1.2em;
    color: var(--gray-dark);
    max-width: 600px;
    margin: 0 auto;
}

/* Card Layouts */
.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 300px;
    max-width: 350px;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(139, 21, 56, 0.2);
}

.card-image {
    height: 200px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3em;
    color: var(--black-primary);
}

.card-content {
    padding: 30px;
}

.card h3 {
    color: var(--burgundy-primary);
    font-size: 1.5em;
    margin-bottom: 15px;
}

.card p {
    color: var(--gray-dark);
    margin-bottom: 20px;
}

.card-price {
    font-size: 1.3em;
    font-weight: bold;
    color: var(--gold-dark);
    margin-bottom: 20px;
}

.card .btn-primary {
    padding: 12px 25px;
    font-size: 1em;
}

/* Features Section */
.features {
    background: linear-gradient(135deg, var(--black-primary), var(--black-secondary));
    color: var(--white);
}

.features .section-title h2 {
    color: var(--gold-primary);
}

.features .section-title p {
    color: var(--cream);
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.feature-item {
    text-align: center;
    max-width: 250px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2em;
    color: var(--black-primary);
}

.feature-item h4 {
    color: var(--gold-primary);
    margin-bottom: 15px;
    font-size: 1.3em;
}

/* VIP Section */
.vip-section {
    background: linear-gradient(135deg, var(--burgundy-primary), var(--burgundy-secondary));
    color: var(--white);
    text-align: center;
}

.vip-section .section-title h2 {
    color: var(--gold-primary);
}

.vip-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.vip-benefit {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(212, 165, 116, 0.3);
    max-width: 300px;
}

.vip-benefit h4 {
    color: var(--gold-primary);
    margin-bottom: 15px;
}

/* Footer */
.footer {
    background: var(--black-primary);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h4 {
    color: var(--gold-primary);
    margin-bottom: 20px;
    font-size: 1.3em;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--cream);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--gold-primary);
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid var(--gray-dark);
    padding-top: 20px;
    text-align: center;
    color: var(--gray-dark);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--black-secondary);
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
    
    .nav.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5em;
    }
    
    .hero p {
        font-size: 1.1em;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title h2 {
        font-size: 2.2em;
    }
    
    .cards-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .card {
        max-width: 100%;
    }
    
    .features-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .vip-benefits {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo {
        font-size: 2em;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 2em;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 1.8em;
    }
    
    .age-modal {
        padding: 20px;
        margin: 10px;
    }
    
    .age-buttons {
        flex-direction: column;
    }
}

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

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

.animate-slide-in {
    animation: slideIn 0.8s ease-out;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-gold {
    color: var(--gold-primary);
}

.text-burgundy {
    color: var(--burgundy-primary);
}

.bg-dark {
    background: var(--black-primary);
}

.bg-gold {
    background: var(--gold-primary);
}

.bg-burgundy {
    background: var(--burgundy-primary);
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .age-verification,
    .btn-book,
    .hero-buttons {
        display: none;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    .section {
        page-break-inside: avoid;
    }
}