/* ==========================================================================
   Casino Hotels Website - Luxury Design
   ========================================================================== */

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #343A40;
    background-color: #F8F9FA;
    overflow-x: hidden;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    color: #0D1B2A;
}

h3 {
    font-size: 1.75rem;
    color: #0D1B2A;
}

h4 {
    font-family: 'Lato', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #C5A572;
    margin: 1.5rem 0 0.75rem 0;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

.lead-paragraph {
    font-size: 1.125rem;
    font-weight: 400;
    color: #0D1B2A;
    margin-bottom: 1.5rem;
}

/* ==========================================================================
   Layout Components
   ========================================================================== */

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

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

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #C5A572, #D4AF37);
    margin: 1rem auto;
}

/* ==========================================================================
   Header & Navigation - REMOVED
   ========================================================================== */

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #000000;
    overflow: hidden;
}

.hero-content {
    color: #FFFFFF;
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

.hero-image-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.hero-image-link:hover {
    transform: scale(1.05);
}

.hero-logo {
    max-width: 500px;
    max-height: 400px;
    width: auto;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.hero-title {
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: #D4AF37;
    color: #FFFFFF;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
    background: #C5A572;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* ==========================================================================
   Sections
   ========================================================================== */

.about-section,
.features-section {
    padding: 5rem 0;
    background: #FFFFFF;
}

.hotels-section {
    padding: 5rem 0;
    background: #F8F9FA;
}

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

/* ==========================================================================
   Hotel Cards
   ========================================================================== */

.hotel-card {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 4rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
}

.hotel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.hotel-card:nth-child(even) {
    direction: rtl;
}

.hotel-card:nth-child(even) .hotel-content {
    direction: ltr;
}

.hotel-image {
    height: 100%;
    min-height: 400px;
}

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hotel-content {
    padding: 3rem;
}

.hotel-name {
    color: #0D1B2A;
    margin-bottom: 0.5rem;
}

.hotel-location {
    color: #C5A572;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.hotel-description p {
    margin-bottom: 1.25rem;
    color: #343A40;
}

/* ==========================================================================
   Features Grid
   ========================================================================== */

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

.feature-card {
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.feature-card h3 {
    color: #0D1B2A;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer-section {
    background: #0D1B2A;
    color: #FFFFFF;
    padding: 3rem 0;
    text-align: center;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.copyright {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #D4AF37;
}

.disclaimer {
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.9;
}

/* ==========================================================================
   Animations
   ========================================================================== */

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

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hotel-card {
        grid-template-columns: 1fr;
    }
    
    .hotel-card:nth-child(even) {
        direction: ltr;
    }
    
    .hotel-image {
        min-height: 300px;
    }
    
    .hotel-content {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .nav-container {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .about-section,
    .hotels-section,
    .features-section {
        padding: 3rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .hotel-content {
        padding: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .footer-section {
        padding: 2rem 0;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .nav-links {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .hotel-content {
        padding: 1rem;
    }
}

/* ==========================================================================
   Accessibility & High Contrast
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus states for accessibility */
a:focus,
button:focus {
    outline: 2px solid #D4AF37;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .sticky-header,
    .cta-button {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero-section {
        height: auto;
        page-break-after: always;
    }
}