/* 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.6;
    color: #FDF6E9;
    background-color: #000000;
    overflow-x: hidden;
}

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

h1 {
    font-size: clamp(48px, 5vw, 72px);
    letter-spacing: -1.5px;
}

h2 {
    font-size: clamp(36px, 4vw, 48px);
    letter-spacing: -0.5px;
    margin-bottom: 2rem;
}

h3 {
    font-size: clamp(28px, 3vw, 32px);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1.5rem;
    color: #FDF6E9;
}

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

/* User Photo Section */
.user-photo-section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #000000;
    padding: 2rem;
}

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

.user-photo-link {
    display: inline-block;
    text-decoration: none;
}

.user-photo {
    max-width: 350px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(198, 168, 125, 0.4);
    border: 3px solid #C6A87D;
    cursor: pointer;
}

.spacer-section {
    height: 30vh;
    background: linear-gradient(180deg, #000000 0%, #111111 100%);
}

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

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 34, 64, 0.8), rgba(198, 168, 125, 0.3));
}

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

.hero-title {
    color: #FDF6E9;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 24px;
    color: #C6A87D;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    margin: 0;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: #000000;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #FDF6E9;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(10, 34, 64, 0.15);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: translateY(-5px);
}

/* Resorts Section */
.resorts-section {
    padding: 5rem 0;
    background: #000000;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    color: #0A2240;
}

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

.resort-card {
    background: #FDF6E9;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(10, 34, 64, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(198, 168, 125, 0.2);
}

.resort-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(10, 34, 64, 0.15);
}

.resort-image {
    height: 300px;
    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-content {
    padding: 2rem;
}

.resort-location {
    color: #6c757d;
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 1rem;
}

.resort-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #C6A87D, transparent);
    margin: 1rem 0 1.5rem 0;
}

.resort-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 1rem;
}

/* Concluding Section */
.concluding-section {
    padding: 4rem 0;
    background: #0A2240;
}

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

.concluding-content p {
    font-size: 20px;
    line-height: 1.7;
    color: #FDF6E9;
    margin: 0;
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 4rem 0;
    background: #000000;
}

.disclaimer-section h2 {
    text-align: center;
    color: #0A2240;
    margin-bottom: 3rem;
}

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

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

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

/* Footer */
.footer {
    background: #0A2240;
    padding: 2rem 0;
    text-align: center;
}

.footer-content p {
    color: #6c757d;
    font-size: 14px;
    margin: 0;
}

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

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .user-photo-section {
        height: 100vh;
        padding: 1.5rem;
    }
    
    .user-photo-container {
        padding: 1.5rem;
    }
    
    .user-photo {
        max-width: 280px;
    }
    
    .spacer-section {
        height: 70vh;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        order: -1;
    }

    .resorts-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .resort-card {
        min-width: auto;
    }

    .resort-content {
        padding: 1.5rem;
    }

    .concluding-content p {
        font-size: 18px;
    }

    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .user-photo-section {
        height: 100vh;
        padding: 1rem;
    }
    
    .user-photo-container {
        padding: 1rem;
    }
    
    .user-photo {
        max-width: 240px;
    }
    
    .spacer-section {
        height: 80vh;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .about-section,
    .resorts-section {
        padding: 3rem 0;
    }

    .resort-content {
        padding: 1rem;
    }

    .concluding-section,
    .disclaimer-section {
        padding: 3rem 0;
    }
}

/* Extra spacing for very small or tall mobile screens */
@media (max-width: 390px) {
    .spacer-section {
        height: 90vh;
    }
}

@media (max-height: 667px) and (max-width: 480px) {
    .spacer-section {
        height: 100vh;
    }
}

/* Extra tall phones like iPhone Pro Max */
@media (min-height: 850px) and (max-width: 480px) {
    .spacer-section {
        height: 70vh;
    }
}

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

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

/* Print styles */
@media print {
    .header,
    .hero,
    .footer {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .resort-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
}