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

:root {
    /* Tropical Color Palette */
    --ocean-blue: #006BA6;
    --lagoon-teal: #00A6A0;
    --coral-pink: #FF6B6B;
    --sunset-orange: #FF9F40;
    --palm-green: #4ECDC4;
    --sand-beige: #F7E7CE;
    --hilton-blue: #004B87;
    --dark-blue: #003865;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --medium-gray: #E0E0E0;
    --dark-gray: #333333;
    
    /* Typography */
    --font-primary: 'Open Sans', sans-serif;
    --font-display: 'Playfair Display', serif;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

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

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2.5rem;
    font-family: var(--font-display);
    color: var(--dark-blue);
}

h3 {
    font-size: 1.75rem;
    color: var(--ocean-blue);
}

h4 {
    font-size: 1.25rem;
    color: var(--lagoon-teal);
}

p {
    margin-bottom: 1rem;
}

/* Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: var(--hilton-blue);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand h1 {
    font-size: 1.5rem;
    color: var(--hilton-blue);
    margin: 0;
}

.navbar.scrolled .nav-brand h1 {
    color: var(--white);
}

.resort-name {
    display: block;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--lagoon-teal);
}

.navbar.scrolled .resort-name {
    color: var(--palm-green);
}

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

.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar.scrolled .nav-link {
    color: var(--white);
}

.nav-link:hover {
    color: var(--lagoon-teal);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-gray);
    transition: all 0.3s ease;
}

.navbar.scrolled .mobile-toggle span {
    background-color: var(--white);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    margin-top: 80px;
    overflow: hidden;
}

.hero-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--ocean-blue), var(--lagoon-teal));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    color: var(--white);
    font-family: var(--font-display);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-badge {
    background-color: var(--coral-pink);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--sunset-orange);
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: var(--coral-pink);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Image Placeholders */
.image-placeholder, .placeholder-text {
    width: 100%;
    height: 100%;
    background-color: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    color: var(--dark-gray);
    font-style: italic;
    border: 2px dashed var(--medium-gray);
}

.image-placeholder {
    min-height: 300px;
}

.image-placeholder.large {
    min-height: 400px;
}

.image-placeholder.map {
    min-height: 400px;
    background-color: #E5F3FF;
}

/* Tropical Divider */
.tropical-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--coral-pink), var(--sunset-orange), var(--palm-green));
    margin: 1rem auto 2rem;
    border-radius: 2px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--ocean-blue);
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--white);
}

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

.about-text h3 {
    margin-bottom: 1.5rem;
}

.ownership-benefits {
    background-color: var(--sand-beige);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.ownership-benefits h4 {
    margin-bottom: 1rem;
}

.ownership-benefits ul {
    list-style: none;
}

.ownership-benefits li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.ownership-benefits li::before {
    content: "🌺";
    position: absolute;
    left: 0;
}

.about-image .image-placeholder {
    border-radius: 10px;
    overflow: hidden;
}

/* Villas Section */
.villas {
    padding: 80px 0;
    background-color: var(--light-gray);
}

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

.villa-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.villa-card:hover {
    transform: translateY(-5px);
}

.villa-image {
    height: 250px;
    overflow: hidden;
}

.villa-content {
    padding: 2rem;
}

.villa-content h3 {
    margin-bottom: 1rem;
}

.villa-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-top: 1rem;
}

.villa-features li {
    color: var(--ocean-blue);
    font-weight: 500;
}

/* Amenities Section */
.amenities {
    padding: 80px 0;
    background-color: var(--white);
}

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

.amenity-item {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    background-color: var(--sand-beige);
    transition: transform 0.3s ease;
}

.amenity-item:hover {
    transform: translateY(-5px);
}

.amenity-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.amenity-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.highlight-content ul {
    list-style: none;
}

.highlight-content li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.highlight-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--palm-green);
    font-weight: bold;
}

/* Dining Section */
.dining {
    padding: 80px 0;
    background-color: var(--light-gray);
}

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

.dining-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.dining-image {
    height: 200px;
    overflow: hidden;
}

.dining-content {
    padding: 2rem;
}

.dining-hours {
    color: var(--ocean-blue);
    font-weight: 600;
    margin-top: 1rem;
}

.nearby-dining {
    text-align: center;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
}

/* Location Section */
.location {
    padding: 80px 0;
    background-color: var(--white);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.distances ul, .transport-options ul {
    list-style: none;
}

.distances li, .transport-options li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.distances li::before {
    content: "📍";
    position: absolute;
    left: 0;
}

.transport-options li::before {
    content: "🚗";
    position: absolute;
    left: 0;
}

.location-map .image-placeholder {
    border-radius: 10px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--sand-beige) 0%, var(--white) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-details {
    margin: 2rem 0;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item a {
    color: var(--ocean-blue);
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    color: var(--lagoon-teal);
}

.ownership-inquiry {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

/* Contact Form */
.contact-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--medium-gray);
    border-radius: 5px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--lagoon-teal);
}

.submit-button {
    background-color: var(--ocean-blue);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background-color: var(--hilton-blue);
}

/* Footer */
.footer {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    color: var(--palm-green);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--palm-green);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom a {
    color: var(--palm-green);
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .navbar.scrolled .nav-menu {
        background-color: var(--hilton-blue);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .about-content,
    .location-content,
    .contact-content,
    .amenity-highlights {
        grid-template-columns: 1fr;
    }

    .villa-grid,
    .amenities-grid,
    .dining-options {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }

    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}