/* =============================================
   Casino Hotel Website - Luxury Design
   Color Palette:
   - Midnight Blue: #0D1B2A
   - Prestige Gold: #BFA181
   - Ivory Cream: #FDFBF7
   - Charcoal: #252525
   - Stone Grey: #E0E0E0
   - White: #FFFFFF
   ============================================= */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: #252525;
    background-color: #FDFBF7;
    overflow-x: hidden;
}

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

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

h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #BFA181;
    text-transform: capitalize;
}

h2 {
    font-size: 2.25rem;
    color: #252525;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
    color: #252525;
    margin-bottom: 0.5rem;
}

h4 {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #BFA181;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

p {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #252525;
}

a {
    color: #0D1B2A;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #BFA181;
    border-bottom: 2px solid #BFA181;
}

/* Section Styling */
section {
    padding: 5rem 0;
}

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

.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #BFA181, #0D1B2A);
    margin: 1rem auto 2rem;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
}



/* Hero Section */
.hero {
    height: 100vh;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero-image-link {
    display: inline-block;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out;
}

.hero-image {
    max-width: 100%;
    max-height: 80vh;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.hero-image-link:hover .hero-image {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.hero-image-link:hover {
    border-bottom: none;
}

/* About Section */
.about {
    background: #FDFBF7;
    padding: 6rem 0;
}

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

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

/* Resorts Section */
.resorts {
    background: linear-gradient(135deg, #f8f6f3, #FDFBF7);
    padding: 6rem 0;
}

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

.resort-card {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #E0E0E0;
}

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

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

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

.resort-card:hover .resort-image img {
    transform: scale(1.05);
}

.resort-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    gap: 10px;
}

.casino-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(191, 161, 129, 0.9);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    backdrop-filter: blur(5px);
}

.resort-content {
    padding: 2.5rem;
}

.resort-content h3 {
    font-size: 1.75rem;
    color: #0D1B2A;
    margin-bottom: 0.5rem;
}

.resort-content h4 {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.resort-content p {
    margin-bottom: 1.5rem;
    color: #444;
    line-height: 1.7;
}

/* Services Section */
.services {
    background: #0D1B2A;
    color: #FFFFFF;
    padding: 6rem 0;
}

.services .section-header h2 {
    color: #FFFFFF;
}

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

.service-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(191, 161, 129, 0.2);
}

.service-item:hover {
    background: rgba(191, 161, 129, 0.1);
    transform: translateY(-3px);
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #BFA181, #d4b896);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.1);
}

.service-icon i {
    color: #FFFFFF;
    font-size: 2rem;
}

.service-item h3 {
    color: #BFA181;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-item p {
    color: #E0E0E0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Disclaimer Section */
.disclaimer {
    background: #f8f6f3;
    padding: 5rem 0;
}

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

.disclaimer-content p {
    margin-bottom: 1.5rem;
}

.disclaimer-content strong {
    color: #0D1B2A;
    font-weight: 700;
}

.disclaimer-links {
    margin-top: 2rem;
    padding: 2rem;
    background: #FFFFFF;
    border-radius: 8px;
    border-left: 4px solid #BFA181;
}

.disclaimer-links ul {
    list-style: none;
    margin-top: 1rem;
}

.disclaimer-links li {
    padding: 0.5rem 0;
    color: #0D1B2A;
    font-weight: 500;
    position: relative;
    padding-left: 20px;
}

.disclaimer-links li:before {
    content: "♦";
    position: absolute;
    left: 0;
    color: #BFA181;
    font-weight: bold;
}

/* Footer */
.footer {
    background: #0D1B2A;
    color: #FFFFFF;
    padding: 3rem 0 1rem;
}

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

.footer-info h3 {
    color: #BFA181;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.footer-info p {
    color: #E0E0E0;
    font-size: 1rem;
    margin: 0;
}

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

.footer-links a {
    color: #E0E0E0;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a:hover {
    color: #BFA181;
}

.footer-bottom {
    border-top: 1px solid rgba(191, 161, 129, 0.3);
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #E0E0E0;
    font-size: 0.9rem;
    margin: 0;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .resorts-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .resort-card {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {

    
    .hero-image {
        max-height: 60vh;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .resorts-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .resort-content {
        padding: 2rem;
    }
    
    p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-image {
        max-height: 50vh;
    }
    
    .resort-content {
        padding: 1.5rem;
    }
}

/* Smooth scroll offset for fixed header */
section {
    scroll-margin-top: 80px;
}

/* Loading animations for images */
.resort-image img {
    opacity: 0;
    animation: fadeIn 0.6s ease-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Enhanced hover effects */
.resort-card {
    position: relative;
    overflow: hidden;
}

.resort-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(191, 161, 129, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.resort-card:hover::before {
    left: 100%;
}

/* Scroll progress indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #BFA181, #0D1B2A);
    z-index: 9999;
    transition: width 0.1s ease;
}
