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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #E6E6E6;
    background-color: #000000;
    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;
    color: #D4AF37;
    letter-spacing: 1.5px;
    text-align: center;
}

h2 {
    font-size: 2.5rem;
    color: #D4AF37;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 3rem;
}

h3 {
    font-size: 1.75rem;
    color: #E6E6E6;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
}

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

p {
    margin-bottom: 1.5rem;
    color: #E6E6E6;
    letter-spacing: 0.2px;
}

a {
    color: #E6E6E6;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #D4AF37;
}

/* Container and Layout */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid #4A5568;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

.nav-logo h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #D4AF37;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #D4AF37;
    background: rgba(212, 175, 55, 0.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #E6E6E6;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    margin-top: 150px; /* Push picture down from top */
    margin-bottom: 500px; /* Push content way down */
    padding: 20px;
}

.hero-link {
    display: block;
    max-width: 450px;
    width: 100%;
}

.hero-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    display: block;
    cursor: pointer;
    transition: opacity 0.3s ease;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.hero-image:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

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

/* Main Content */
.main {
    margin-top: 200px; /* Additional push for content */
}

/* Section Titles */
.section-title {
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37, #F8E4A0);
    border-radius: 2px;
}

/* About Section */
.about {
    background: rgba(17, 17, 17, 0.3);
}

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

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

/* Resort Cards */
.resorts {
    background: linear-gradient(135deg, rgba(10, 25, 47, 1) 0%, rgba(17, 17, 17, 0.8) 100%);
}

.resort-card {
    background: rgba(74, 85, 104, 0.15);
    border: 1px solid #4A5568;
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 4rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.resort-card:hover {
    border-color: #D4AF37;
    box-shadow: 0 12px 48px rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
}

.resort-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 300px;
}

.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-content {
    padding-left: 1rem;
}

.resort-name {
    color: #D4AF37;
    border-bottom: 2px solid #4A5568;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.resort-section {
    margin-bottom: 2rem;
}

.resort-subtitle {
    color: #D4AF37;
    font-size: 1.1rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1rem;
}

.resort-subtitle::before {
    content: '♦';
    position: absolute;
    left: -0.5rem;
    color: #D4AF37;
    font-size: 1.2rem;
}

/* Features Section */
.features {
    background: rgba(17, 17, 17, 0.5);
    text-align: center;
}

.features-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

/* Disclaimer Section */
.disclaimer {
    background: rgba(10, 25, 47, 0.8);
    text-align: center;
}

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

.disclaimer-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #C1C1C1;
}

/* Footer */
.footer {
    background: #111111;
    padding: 4rem 0 2rem;
    border-top: 2px solid #4A5568;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #D4AF37;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section p {
    color: #C1C1C1;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #C1C1C1;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
}

.footer-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, #4A5568, transparent);
    margin-bottom: 1.5rem;
}

.copyright {
    color: #C1C1C1;
    font-size: 0.875rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .resort-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .resort-image {
        height: 250px;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(17, 17, 17, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    /* Typography adjustments */
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    h4 {
        font-size: 1.1rem;
    }
    
    body {
        font-size: 16px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .resort-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .resort-content {
        padding-left: 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .resort-card {
        padding: 1rem;
    }
    
    .resort-image {
        height: 200px;
    }
    
    .section {
        padding: 40px 0;
    }
}

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0A192F;
}

::-webkit-scrollbar-thumb {
    background: #4A5568;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #D4AF37;
}

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

/* Print styles */
@media print {
    .header,
    .footer {
        display: none;
    }
    
    .hero {
        height: auto;
        padding: 2rem 0;
    }
    
    body {
        color: #000;
        background: #fff;
    }
}