/* CSS Reset & Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #d4af37;
    --dark-gold: #b8941f;
    --light-gold: #f4e4a0;
    --burgundy: #800020;
    --dark-burgundy: #6b001a;
    --black: #0a0a0a;
    --dark-gray: #1a1a1a;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --text-light: #e8e8e8;
    --shadow: rgba(0, 0, 0, 0.3);
    --gold-shadow: rgba(212, 175, 55, 0.3);
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-light);
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 2.2rem; }
h4 { font-size: 1.8rem; }

p {
    margin-bottom: 1rem;
    font-weight: 300;
    color: var(--text-light);
}



/* Hero Section */
.hero {
    height: 100vh;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(128, 0, 32, 0.3) 0%, rgba(10, 10, 10, 0.7) 100%);
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 800px;
    padding: 0 20px;
}

.hero-image-link {
    display: inline-block;
    transition: var(--transition);
    animation: fadeInUp 1s ease-out;
}

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

.hero-image {
    max-width: 300px;
    max-height: 300px;
    width: auto;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}



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

/* About Section */
.about-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/gaming-floor.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    color: var(--primary-gold);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px var(--shadow);
}

.section-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--dark-gold));
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-subtitle {
    color: var(--primary-gold);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px var(--shadow);
    font-weight: 600;
}

.about-intro {
    font-size: 1.3rem;
    color: var(--light-gold);
    margin-bottom: 2.5rem;
    font-weight: 400;
    font-style: italic;
}

.about-text p {
    margin-bottom: 2rem;
    color: var(--text-light);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.feature-item:hover {
    transform: translateY(-10px);
    background: rgba(212, 175, 55, 0.15);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.feature-item i {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    display: block;
}

.feature-item h3 {
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Resorts Section */
.resorts-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-burgundy) 100%);
    position: relative;
}

.resorts-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/luxury-suite.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.03;
    z-index: 1;
}

.resorts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.resort-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    border-radius: 20px;
    padding: 40px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.resort-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(128, 0, 32, 0.05) 100%);
    z-index: -1;
}

.resort-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

.resort-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.resort-header h3 {
    color: var(--primary-gold);
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px var(--shadow);
}

.resort-location {
    color: var(--text-light);
    font-size: 1.1rem;
    font-style: italic;
    margin: 0;
}

.resort-location i {
    color: var(--primary-gold);
    margin-right: 0.5rem;
}

.resort-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.resort-section {
    padding: 20px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--primary-gold);
    transition: var(--transition);
}

.resort-section:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(5px);
}

.resort-section h4 {
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.resort-section h4 i {
    font-size: 1.1rem;
}

.resort-section p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Additional Information Section */
.additional-info {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
    border-top: 2px solid rgba(212, 175, 55, 0.3);
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

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

.info-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-light);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-burgundy) 100%);
    padding: 60px 0 20px;
    border-top: 3px solid var(--primary-gold);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.footer-section h3 {
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section p {
    color: var(--text-light);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section i {
    color: var(--primary-gold);
    width: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.social-links a:hover {
    background: var(--primary-gold);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    text-align: center;
}

.copyright {
    margin-bottom: 30px;
}

.copyright p {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 1.1rem;
}

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

.footer-disclaimer h4 {
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-disclaimer p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: left;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2.2rem; }
    h3 { font-size: 1.8rem; }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .resorts-grid {
        grid-template-columns: 1fr;
    }
    
    .resort-card {
        padding: 30px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-disclaimer p {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .about-section,
    .resorts-section {
        padding: 80px 0;
    }
    
    .section-header {
        margin-bottom: 60px;
    }
}

/* Smooth scroll enhancement */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Loading animation */
.loading {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Print styles */
@media print {
    .hero,
    .social-links {
        display: none;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
}