* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0066cc;
    --secondary-color: #004499;
    --accent-color: #ff6b35;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --ocean-blue: #0077be;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-white);
}

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

/* Navigation */
.navbar {
    background-color: var(--bg-white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--ocean-blue);
    text-decoration: none;
}

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

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--ocean-blue);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 119, 190, 0.3), rgba(0, 90, 158, 0.4)), url('images/ocean-view.jpg');
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
    color: #ffffff;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #ffffff;
    opacity: 0.95;
    text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

/* Intro Section */
.intro {
    padding: 3rem 0;
    background-color: var(--bg-light);
}

.intro-text {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.intro-text a {
    color: var(--ocean-blue);
    text-decoration: none;
}

.intro-text a:hover {
    text-decoration: underline;
}

.airbnb-link {
    text-align: center;
    font-size: 1.1rem;
}

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

.airbnb-link a:hover {
    text-decoration: underline;
}

/* Booking Platforms */
.booking-platforms {
    text-align: center;
    margin-top: 2rem;
}

.booking-platforms h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.platform-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-platform {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.btn-platform:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    color: #ffffff !important;
}

.btn-platform i {
    font-size: 1.2rem;
    color: #ffffff !important;
}

.btn-platform span {
    color: #ffffff !important;
}

.btn-platform.airbnb {
    background-color: #ff6666;
}

.btn-platform.airbnb:hover {
    background-color: #ff5555;
    color: #ffffff !important;
}

.btn-platform.vrbo {
    background-color: #00a88e;
}

.btn-platform.vrbo:hover {
    background-color: #009680;
    color: #ffffff !important;
}

.btn-platform.direct {
    background-color: var(--ocean-blue);
    border: 2px solid var(--ocean-blue);
}

.btn-platform.direct:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #ffffff !important;
}

/* Layouts Section */
.layouts {
    padding: 4rem 0;
}

.layouts h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--ocean-blue);
}

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

.layout-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.layout-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.layout-image {
    width: 100%;
    min-height: 300px;
    background: linear-gradient(135deg, #e0f2ff 0%, #b3d9ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.layout-image a {
    width: 100%;
    display: block;
    text-decoration: none;
}

.layout-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    max-height: 400px;
}

.placeholder-image {
    color: var(--ocean-blue);
    font-size: 1.2rem;
    font-weight: 600;
}

.layout-content {
    padding: 1.5rem;
    text-align: center;
}

.layout-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--ocean-blue);
}

.layout-content p {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.btn-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 2rem;
    background-color: var(--ocean-blue);
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    border: none;
}

.btn-link:hover {
    background-color: var(--secondary-color);
    color: #ffffff !important;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

/* Contact CTA */
.contact-cta {
    padding: 3rem 0;
    background-color: var(--bg-light);
    text-align: center;
}

.contact-cta p {
    font-size: 1.1rem;
    line-height: 2;
}

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

.contact-cta p a:hover {
    text-decoration: underline;
}

.contact-cta .btn-link {
    color: #ffffff !important;
}

/* External Link Section */
.external-link {
    padding: 3rem 0;
    text-align: center;
}

.external-link h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.external-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #d4a574 0%, #c8966a 50%, #b8865a 100%);
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.4);
    border: 2px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.external-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.external-btn:hover::before {
    left: 100%;
}

.external-btn:hover {
    background: linear-gradient(135deg, #e0b584 0%, #d4a574 50%, #c8966a 100%);
    color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.5);
    transform: translateY(-2px);
}

/* Footer */
footer {
    background-color: var(--text-color);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

footer a {
    color: #88c9ff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Page Content Styles */
.page-content {
    padding: 3rem 0;
}

.page-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--ocean-blue);
}

.page-content h3 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--ocean-blue);
}

.page-content p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.page-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.page-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.page-content a {
    color: var(--ocean-blue);
    text-decoration: none;
    font-weight: 500;
}

.page-content a:hover {
    text-decoration: underline;
    color: var(--secondary-color);
}

.highlight-box {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid var(--ocean-blue);
}

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

.highlight-box a:hover {
    text-decoration: underline;
}

/* Page Layout Images */
.layout-image-container {
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    text-align: center;
    background: linear-gradient(135deg, #e0f2ff 0%, #b3d9ff 100%);
    padding: 2rem;
    border-radius: 8px;
}

.page-layout-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

/* Exterior Gallery */
.exterior-gallery {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.exterior-gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--ocean-blue);
}

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

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 4rem 0;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

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

    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .layout-grid {
        grid-template-columns: 1fr;
    }

    .layouts h2 {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .exterior-gallery h2 {
        font-size: 2rem;
    }

    .platform-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-platform {
        width: 100%;
        max-width: 300px;
    }
}
