/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #F5F5F5;
    background-color: #000000;
    overflow-x: hidden;
}

/* ===== LUXURY COLOR PALETTE ===== */
:root {
    --primary-black: #000000;
    --secondary-black: #111111;
    --luxe-gold: #D4AF37;
    --soft-white: #F5F5F5;
    --rich-black: #000000;
    --accent-dark: #1a1a1a;
    --light-gold: #F4E4BC;
    --shadow-dark: rgba(0, 0, 0, 0.8);
    --shadow-light: rgba(212, 175, 55, 0.2);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--luxe-gold);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    color: var(--soft-white);
    margin-bottom: 2rem;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    color: var(--luxe-gold);
    margin-bottom: 1rem;
}

p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--soft-white);
}

a {
    color: var(--luxe-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--light-gold);
}

/* ===== CONTAINER & LAYOUT ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== AGE VERIFICATION BANNER ===== */
.age-banner {
    width: 100%;
    background: var(--primary-black);
    position: relative;
    z-index: 1001;
    padding: 50px 0;
    margin-top: 150px; /* Push banner lower from top */
    margin-bottom: 800px; /* Massive spacing before main content */
}

.age-banner-link {
    display: flex;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    position: relative;
    width: 100%; /* Full width container */
    margin: 0 auto;
}

.age-banner-link:hover {
    transform: scale(1.01);
}

.age-banner-image {
    width: 100%; /* Maximum full width */
    height: auto;
    display: block !important;
    max-height: 500px; /* Significantly increased height */
    object-fit: contain; /* Keep contain for proper scaling */
    object-position: center;
    transition: transform 0.3s ease;
    opacity: 1 !important;
    visibility: visible !important;
}

.age-banner-link:focus {
    outline: 2px solid var(--soft-white);
    outline-offset: 2px;
}

/* Responsive adjustments for age banner */
@media (max-width: 768px) {
    .age-banner {
        margin-top: 100px; /* Reduced top spacing on mobile */
        margin-bottom: 600px; /* Large spacing on mobile */
        padding: 40px 0;
    }
    
    .age-banner-image {
        width: 100%; /* Full width on mobile */
        max-height: 400px;
    }
}

@media (max-width: 480px) {
    .age-banner {
        margin-top: 80px;
        margin-bottom: 450px; /* Still very large spacing */
        padding: 30px 0;
    }
    
    .age-banner-image {
        width: 100%;
        max-height: 350px;
    }
}

/* Navigation removed - clean minimal design */

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('../images/hero-casino.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-top: 0; /* No navigation offset needed */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(13, 27, 42, 0.8), rgba(27, 38, 59, 0.6));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--light-gold);
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--luxe-gold);
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: var(--luxe-gold);
    margin: 0.5rem auto;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -3px;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--luxe-gold);
    border-bottom: 2px solid var(--luxe-gold);
    transform: rotate(45deg);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--luxe-gold);
    color: var(--rich-black);
    border-color: var(--luxe-gold);
}

.btn-primary:hover {
    background: var(--light-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--luxe-gold);
    border-color: var(--luxe-gold);
}

.btn-secondary:hover {
    background: var(--luxe-gold);
    color: var(--rich-black);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

/* ===== SECTIONS ===== */
section {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--luxe-gold), var(--light-gold));
    border-radius: 2px;
}

/* ===== ABOUT SECTION ===== */
.about {
    background: linear-gradient(135deg, var(--secondary-black), var(--accent-dark));
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 35px,
        rgba(212, 175, 55, 0.05) 35px,
        rgba(212, 175, 55, 0.05) 70px
    );
}

.about-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

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

/* ===== CASINO HOTELS SECTION ===== */
.casino-hotels {
    background: var(--primary-black);
    position: relative;
}

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

.casino-card {
    background: linear-gradient(145deg, var(--secondary-black), var(--accent-dark));
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    transition: all 0.4s ease;
    border-top: 3px solid var(--luxe-gold);
    position: relative;
}

.casino-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(212, 175, 55, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.casino-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.2);
}

.casino-card:hover::before {
    opacity: 1;
}

.card-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.card-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.card-title {
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.card-description {
    margin-bottom: 1.5rem;
    color: rgba(245, 245, 245, 0.9);
    line-height: 1.6;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature {
    background: rgba(212, 175, 55, 0.1);
    color: var(--luxe-gold);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* ===== RESPONSIBLE GAMBLING SECTION ===== */
.responsible-gambling {
    background: linear-gradient(135deg, var(--accent-dark), var(--secondary-black));
    position: relative;
}

.disclaimer-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.disclaimer-text ul {
    text-align: left;
    max-width: 600px;
    margin: 2rem auto;
    padding-left: 2rem;
}

.disclaimer-text li {
    margin-bottom: 0.5rem;
    color: var(--soft-white);
}

.age-restriction {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--luxe-gold);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 2rem;
    font-weight: 600;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-black);
    border-top: 3px solid var(--luxe-gold);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--luxe-gold);
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(245, 245, 245, 0.7);
    max-width: 300px;
}

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

.footer-links a {
    color: var(--soft-white);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(245, 245, 245, 0.1);
    font-size: 0.9rem;
    color: rgba(245, 245, 245, 0.7);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 200px;
    }
    
    .casino-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 580px) {
    .casino-grid {
        grid-template-columns: 1fr;
    }
    
    .casino-card {
        margin: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
a:focus,
button:focus,
.nav-link:focus {
    outline: 2px solid var(--luxe-gold);
    outline-offset: 2px;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

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

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

::-webkit-scrollbar-thumb:hover {
    background: var(--light-gold);
}