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

:root {
    --marriott-red: #a91b60;
    --marriott-gold: #c8aa6e;
    --navy-blue: #1e3a5f;
    --warm-white: #faf7f2;
    --light-gray: #f4f1ec;
    --dark-gray: #2c2c2c;
    --resort-green: #4a7c59;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--warm-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', serif;
    font-weight: 400;
    line-height: 1.2;
}

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

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

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.marriott-logo {
    width: 40px;
    height: 24px;
    color: var(--marriott-red);
}

.logo h1 {
    font-size: 1.4rem;
    color: var(--marriott-red);
    font-weight: 700;
    letter-spacing: 1px;
}

.property-name {
    display: block;
    font-size: 0.8rem;
    color: var(--navy-blue);
    font-weight: 300;
    margin-top: 0.2rem;
}

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

.nav-link {
    color: var(--dark-gray);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--marriott-red);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--marriott-red);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--resort-green) 100%);
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
    text-align: center;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.feature {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 50px;
    animation: bounce 2s infinite;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 3px;
    height: 6px;
    background: rgba(255, 255, 255, 0.8);
    margin: 6px auto;
    border-radius: 2px;
    animation: scrollDown 2s infinite;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: var(--transition);
    font-size: 0.9rem;
}

.cta-button:not(.secondary) {
    background: var(--marriott-gold);
    color: var(--dark-gray);
    border: 2px solid var(--marriott-gold);
}

.cta-button:not(.secondary):hover {
    background: transparent;
    color: var(--marriott-gold);
}

.cta-button.primary {
    background: var(--marriott-red);
    color: white;
    border-color: var(--marriott-red);
}

.cta-button.primary:hover {
    background: transparent;
    color: var(--marriott-red);
}

.cta-button.secondary {
    background: transparent;
    color: var(--marriott-red);
    border: 2px solid var(--marriott-red);
}

.cta-button.secondary:hover {
    background: var(--marriott-red);
    color: white;
}

/* Section Styles */
.section-title {
    font-size: 3rem;
    color: var(--navy-blue);
    margin-bottom: 1rem;
    font-weight: 300;
}

.section-subtitle {
    color: var(--dark-gray);
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

/* About Section */
.about {
    padding: 100px 0;
    background: white;
}

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

.resort-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.highlight {
    text-align: center;
}

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

.highlight h4 {
    color: var(--marriott-red);
    margin-bottom: 0.5rem;
}

.about-visual {
    position: relative;
}

.vacation-club-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--marriott-red);
    color: white;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.vacation-club-badge h4 {
    margin-bottom: 0.5rem;
    color: white;
}

.vacation-club-badge p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Placeholder Images */
.placeholder-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--marriott-gold) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.placeholder-image span {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 2;
}

.placeholder-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 15px,
        rgba(255, 255, 255, 0.05) 15px,
        rgba(255, 255, 255, 0.05) 30px
    );
}

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

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

.villa-showcase {
    display: grid;
    gap: 3rem;
}

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

.villa-capacity {
    color: var(--marriott-red);
    font-weight: 600;
    margin-bottom: 1rem;
}

.villa-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.feature-group h4 {
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

.feature-group ul {
    list-style: none;
}

.feature-group li {
    padding: 0.3rem 0;
    padding-left: 1rem;
    position: relative;
    font-size: 0.9rem;
}

.feature-group li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--marriott-gold);
}

.villa-amenities {
    background: white;
    padding: 3rem;
    text-align: center;
}

.villa-amenities h3 {
    color: var(--navy-blue);
    margin-bottom: 2rem;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
}

.amenity-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.amenity-item .icon {
    font-size: 2rem;
}

.amenity-item span:last-child {
    font-size: 0.9rem;
    color: var(--dark-gray);
}

/* Amenities Section */
.amenities {
    padding: 100px 0;
    background: white;
    text-align: center;
}

.amenities-showcase {
    margin-top: 3rem;
}

.amenity-feature.main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.amenity-info {
    text-align: left;
}

.amenity-info h3 {
    color: var(--navy-blue);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.pool-features {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.pool-features span {
    padding: 0.5rem 1rem;
    background: var(--light-gray);
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.amenity-card {
    background: var(--light-gray);
    padding: 2rem;
    transition: var(--transition);
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.amenity-card h4 {
    color: var(--marriott-red);
    margin-bottom: 1rem;
}

/* Activities Section */
.activities {
    padding: 100px 0;
    background: var(--light-gray);
    text-align: center;
}

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

.activity-card {
    background: white;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.activity-image .placeholder-image {
    height: 250px;
}

.activity-info {
    padding: 1.5rem;
    text-align: left;
}

.activity-info h4 {
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

/* Location Section */
.location {
    padding: 100px 0;
    background: white;
}

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

.nearby-attractions {
    margin: 2rem 0;
}

.nearby-attractions h3 {
    color: var(--navy-blue);
    margin-bottom: 1.5rem;
}

.attractions-list {
    display: grid;
    gap: 1rem;
}

.attraction {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    align-items: start;
}

.distance {
    background: var(--marriott-red);
    color: white;
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
}

.attraction strong {
    color: var(--navy-blue);
    margin-bottom: 0.5rem;
    display: block;
}

.resort-services {
    margin-top: 2rem;
}

.resort-services h3 {
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

.resort-services ul {
    list-style: none;
}

.resort-services li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.resort-services li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--marriott-gold);
    font-weight: bold;
}

.location-visual .placeholder-image {
    height: 500px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--light-gray);
}

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

.contact-details {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.detail-group h4 {
    color: var(--marriott-red);
    margin-bottom: 0.5rem;
}

.detail-group a {
    color: var(--dark-gray);
    text-decoration: none;
}

.detail-group a:hover {
    color: var(--marriott-red);
}

.booking-benefits {
    margin: 2rem 0;
}

.booking-benefits h3 {
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

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

.booking-benefits li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.booking-benefits li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: var(--marriott-gold);
}

.cta-group {
    display: flex;
    gap: 1rem;
}

.form-container {
    background: white;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-container h3 {
    color: var(--navy-blue);
    margin-bottom: 2rem;
    text-align: center;
}

.inquiry-form {
    display: grid;
    gap: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    background: var(--warm-white);
    transition: var(--transition);
}

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

.submit-btn {
    background: var(--marriott-red);
    color: white;
    padding: 1rem 2rem;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: var(--transition);
}

.submit-btn:hover {
    background: var(--navy-blue);
}

/* Footer */
.footer {
    background: var(--navy-blue);
    color: white;
    padding: 50px 0 30px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo svg {
    width: 40px;
    height: 24px;
    color: var(--marriott-gold);
}

.footer h3, .footer h4 {
    margin-bottom: 1rem;
}

.link-group h4 {
    color: var(--marriott-gold);
}

.link-group ul {
    list-style: none;
}

.link-group a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.link-group a:hover {
    color: white;
}

.footer-contact h4 {
    color: var(--marriott-gold);
}

.footer-contact p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.marriott-badge {
    margin-top: 1rem;
}

.marriott-badge span {
    background: var(--marriott-gold);
    color: var(--navy-blue);
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
}

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

/* 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);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes scrollDown {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: var(--warm-white);
        flex-direction: column;
        padding: 2rem;
        transition: var(--transition);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .about-content,
    .villa-main,
    .amenity-feature.main,
    .location-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .resort-highlights,
    .villa-features {
        grid-template-columns: 1fr;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}