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

:root {
    --primary-color: #1a9cb0;
    --secondary-color: #0d5d6b;
    --accent-color: #f39c12;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 5px 20px rgba(0,0,0,0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Header & Navigation */
.site-header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 1rem;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Social Icons in Nav */
.nav-social {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1.5rem;
    padding-left: 1.5rem;
    border-left: 1px solid #ddd;
}

.nav-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: var(--text-light);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.nav-social a:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.nav-social a[title="Facebook"]:hover { background: #1877F2; }
.nav-social a[title="Instagram"]:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.nav-social a[title="TikTok"]:hover { background: #000; }
.nav-social a[title="YouTube"]:hover { background: #FF0000; }

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    list-style: none;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 0.5rem 0;
}

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

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
    background: var(--bg-light);
    color: var(--primary-color);
}

.dropdown-menu a.active::after {
    display: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

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

/* Hero Section */
.hero {
    position: relative;
    height: 450px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
    padding-bottom: 4rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.hero-select {
    background: var(--white);
    color: var(--text-dark);
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    margin-bottom: 3rem;
    min-width: 300px;
}

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    cursor: pointer;
    animation: bounce 2s infinite;
    z-index: 3;
}

.scroll-indicator a {
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.scroll-indicator p {
    font-size: 0.9rem;
    margin: 0;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Section Styles */
section {
    padding: 5rem 0;
}

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

.section-title h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.separator {
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    margin: 1rem auto;
}

/* About Section */
.about-section {
    background: var(--bg-light);
    padding: 2.5rem 0 1rem;
}

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

/* CMS content areas — flowing 2-column text (used by attractions, hubs, about pages) */
.cms-content {
    column-count: 2;
    column-gap: 2.5rem;
    line-height: 1.7;
    color: var(--text-color);
}
.cms-content h2 {
    color: var(--secondary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    column-span: all;
}
.cms-content p {
    margin-bottom: 1rem;
}
.cms-content ul, .cms-content ol {
    break-inside: avoid;
}
.cms-content .full-width {
    column-span: all;
}
.cms-content .col-break {
    break-before: column;
}

/* Icon blocks — decorative FA icon on left side of paragraph */
.cms-content .icon-block {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1rem;
    break-inside: avoid;
}
.cms-content .icon-block::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.15em;
    font-size: 1.4rem;
    color: var(--primary-color);
}
.cms-content .icon-beach::before    { content: "\f5ca"; }
.cms-content .icon-dining::before   { content: "\f2e7"; }
.cms-content .icon-shopping::before { content: "\f290"; }
.cms-content .icon-nature::before   { content: "\f1bb"; }
.cms-content .icon-home::before     { content: "\f015"; }
.cms-content .icon-pet::before      { content: "\f1b0"; }
.cms-content .icon-star::before     { content: "\f005"; }
.cms-content .icon-check::before    { content: "\f058"; }
.cms-content .icon-calendar::before { content: "\f073"; }
.cms-content .icon-map::before      { content: "\f5a0"; }
.cms-content .icon-bed::before      { content: "\f236"; }
.cms-content .icon-pool::before     { content: "\f5c4"; }
.cms-content .icon-wifi::before     { content: "\f1eb"; }
.cms-content .icon-parking::before  { content: "\f540"; }
.cms-content .icon-family::before   { content: "\e4a7"; }
.cms-content .icon-golf::before     { content: "\f450"; }
.cms-content .icon-biking::before   { content: "\f84a"; }
.cms-content .icon-boat::before     { content: "\e445"; }
.cms-content .icon-sun::before      { content: "\f185"; }
.cms-content .icon-camera::before   { content: "\f030"; }
.cms-content .icon-music::before    { content: "\f001"; }
.cms-content .icon-coffee::before   { content: "\f0f4"; }
.cms-content .icon-wine::before     { content: "\f4e3"; }
.cms-content .icon-heart::before    { content: "\f004"; }
.cms-content .icon-dollar::before   { content: "\f155"; }
.cms-content .icon-clock::before    { content: "\f017"; }
.cms-content .icon-phone::before    { content: "\f095"; }
.cms-content .icon-info::before     { content: "\f05a"; }
.cms-content .icon-tip::before      { content: "\f0eb"; }
.cms-content .icon-shield::before   { content: "\f3ed"; }

/* CMS Boxes — callout/highlight containers */
.cms-content .cms-box {
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
    break-inside: avoid;
}
.cms-content .cms-box-highlight {
    background: #fff8e1;
    border-left: 4px solid #f59e0b;
}
.cms-content .cms-box-info {
    background: #e8f4fd;
    border-left: 4px solid var(--primary-color);
}
.cms-content .cms-box-success {
    background: #e8f5e9;
    border-left: 4px solid #2e7d32;
}
.cms-content .cms-box p { margin-bottom: 0.5rem; }
.cms-content .cms-box p:last-child { margin-bottom: 0; }

/* Pull Quote */
.cms-content .cms-pull-quote {
    font-size: 1.25rem;
    font-style: italic;
    text-align: center;
    color: var(--secondary-color);
    border-top: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    column-span: all;
}

/* Small Text */
.cms-content .cms-small {
    font-size: 0.8rem;
    color: #888;
}

/* Button Link */
.cms-content .cms-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff !important;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    text-decoration: none !important;
    font-weight: 700;
    transition: opacity 0.2s;
}
.cms-content .cms-button:hover { opacity: 0.85; }
.cms-content a .cms-button { color: #fff !important; text-decoration: none !important; }
.cms-content a {
    color: var(--primary-color);
    text-decoration: underline;
}
@media (max-width: 768px) {
    .cms-content {
        column-count: 1;
    }
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* About pages — photo beside text */
.about-with-photo {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 3rem;
    align-items: start;
}

.about-with-photo.photo-right {
    grid-template-columns: 1fr 360px;
}

.about-page-photo {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    display: block;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

.about-images img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

/* Properties Grid */
.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.property-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.property-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.1);
}

.property-price {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-weight: 600;
}

/* Season rates pricing bubble */
.property-price-seasons {
    background: rgba(26, 156, 176, 0.8);
    border-radius: 12px;
    max-width: fit-content;
    right: auto;
    padding: 0.5rem 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.3;
}

.property-price-seasons .price-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.property-price-seasons .price-line {
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.property-price-seasons .season-name {
    font-weight: 400;
    opacity: 0.9;
}

.pets-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(46, 125, 50, 0.88);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    pointer-events: none;
}

.property-type {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0,0,0,0.7);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.property-info {
    padding: 1.5rem;
}

.property-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.property-info .address {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.property-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.property-features .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.15rem;
}

.property-features .feature-item strong {
    font-size: 1.1rem;
    color: var(--text-color);
}

.property-features .feature-item small {
    font-size: 0.8rem;
}

.property-card .btn {
    width: 100%;
    text-align: center;
}

/* Features Section */
.features-section {
    background: var(--bg-light);
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
}

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

.attraction-card {
    position: relative;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.attraction-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.attraction-card:hover img {
    transform: scale(1.1);
}

.attraction-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 2rem;
    color: var(--white);
}

.attraction-overlay h4 {
    font-size: 1.5rem;
}

/* Google Places — Tabs & Cards */
.places-section {
    padding: 3rem 0 2rem;
}

.places-tabs {
    display: flex;
    border-bottom: 3px solid #eee;
    margin-bottom: 2rem;
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.places-tab {
    padding: 0.85rem 1.5rem;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -3px;
    transition: all 0.2s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
}

.places-tab:hover {
    color: var(--primary-color);
}

.places-tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.places-tab i {
    font-size: 1.1rem;
}

.places-tab-content {
    display: none;
}

.places-tab-content.active {
    display: block;
}

.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.place-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.place-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.place-card-image {
    position: relative;
    height: 200px;
    background: #e9ecef;
    overflow: hidden;
}

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

.place-card-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
}

.place-card-no-image i {
    font-size: 3rem;
    color: #adb5bd;
}

.place-status {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.place-open {
    background: rgba(40, 167, 69, 0.9);
    color: #fff;
}

.place-closed {
    background: rgba(220, 53, 69, 0.85);
    color: #fff;
}

.place-card-info {
    padding: 1.25rem 1.5rem 1.5rem;
}

.place-name {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.place-rating-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 0.6rem;
}

.place-stars {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    color: #f5a623;
    font-size: 0.85rem;
}

.place-rating-number {
    color: var(--text-dark);
    font-weight: 600;
    margin-left: 4px;
}

.place-review-count {
    font-size: 0.8rem;
    color: var(--text-light);
}

.place-address {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0 0 0.75rem 0;
    line-height: 1.5;
    padding-top: 0.6rem;
    border-top: 1px solid #f0f0f0;
}

.place-address i {
    color: var(--primary-color);
    margin-right: 5px;
    width: 14px;
}

.place-links {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid #f0f0f0;
}

.place-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    background: var(--primary-color);
    color: #fff !important;
    transition: background 0.3s ease;
}

.place-link:hover {
    background: var(--secondary-color);
}

.place-link-website {
    background: var(--accent-color);
}

.place-link-website:hover {
    background: #e08e0b;
}

.google-attribution {
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
    font-size: 0.8rem;
    color: #9e9e9e;
    border-top: 1px solid #eee;
}

/* Contact Form */
.contact-section {
    background: var(--bg-light);
}

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

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

.contact-info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-info-item p,
.contact-info-item a {
    color: var(--text-light);
}

.contact-info-item a:hover {
    color: var(--primary-color);
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

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

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

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

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

.footer-column a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 30px;
    font-family: inherit;
}

.newsletter-form button {
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--accent-color);
}

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

/* Page Header */
.page-header {
    height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
}

.page-header .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-header p {
    color: #ffffff;
    font-size: 1.2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.breadcrumb {
    color: rgba(255,255,255,0.9);
}

.breadcrumb a {
    color: var(--white);
}

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

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        align-items: stretch;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-social {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        justify-content: center;
        gap: 1rem;
        padding: 1rem 0;
        border-top: 1px solid #eee;
        margin-top: 0.5rem;
    }

    .nav-social a {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
        background: var(--bg-light);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 1rem;
    }

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

    .about-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .about-with-photo,
    .about-with-photo.photo-right {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 600px) {
    .hero-content {
        max-width: 100%;
        padding: 1.5rem;
    }

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

    .hero p {
        font-size: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-select {
        min-width: 0;
        width: 100%;
        max-width: 300px;
        box-sizing: border-box;
    }

    .scroll-indicator {
        bottom: 8px;
    }

    section {
        padding: 3rem 0;
    }

    .section-title h2 {
        font-size: 2rem;
    }

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

    .places-tabs {
        gap: 0;
    }

    .places-tab {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }

    .places-tab span {
        display: none;
    }

    .places-tab i {
        font-size: 1.3rem;
    }
}

/* Mobile: hide overflow place cards behind "Show more" button */
.places-show-more-btn {
    display: none;
}
.places-grid.show-all-places .places-overflow-card { display: block !important; }
@media (max-width: 768px) {
    .places-overflow-card {
        display: none;
    }
    .places-show-more-btn {
        display: block;
        width: 100%;
        padding: 0.75rem;
        background: var(--bg-light);
        border: 1px solid #ddd;
        border-radius: 8px;
        color: var(--primary-color);
        font-weight: 600;
        font-size: 0.95rem;
        cursor: pointer;
        margin-top: 1rem;
        text-align: center;
    }
    .places-show-more-btn i { margin-left: 0.4rem; }
}

/* ============================================================
   Internal Linking Sections
   ============================================================ */

/* Hub properties grid (shared — used by hub pages, property page, attractions page) */
.hub-properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Related properties section (property detail page) */
.related-props-section { padding: 4rem 0; background: #f8f9fa; }
.related-props-section .section-title { text-align: center; margin-bottom: 2rem; }
.related-props-section .section-link { text-align: center; margin-top: 2rem; }
.related-props-section .hub-properties-grid,
.attractions-rentals-section .hub-properties-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 360px));
    justify-content: center;
    margin-top: 0;
}

/* Collection hub pill links */
.related-collections-section { padding: 2rem 0; background: #fff; border-top: 1px solid #eee; }
.related-collections-label { text-align: center; font-size: 0.9rem; color: var(--text-light); margin-bottom: 0.75rem; }
.related-collections-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }
.related-collections-links a {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.45rem 1rem; border: 1px solid var(--primary-color); border-radius: 999px;
    color: var(--primary-color); font-size: 0.875rem; text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.related-collections-links a:hover { background: var(--primary-color); color: #fff; }

/* "Top Pick" badge on hub/related property cards */
.top-pick-badge {
    position: absolute; top: 10px; left: 10px;
    background: #f59e0b; color: #fff;
    font-size: 0.75rem; font-weight: 600; padding: 0.25rem 0.6rem;
    border-radius: 4px; display: inline-flex; align-items: center; gap: 0.3rem; z-index: 2;
}
/* Push price bubble down when a Top Pick badge is also present */
.top-pick-badge ~ .property-price {
    top: 44px;
}

/* Attractions page — rentals strip */
.attractions-rentals-section { padding: 3.5rem 0; background: #f0f4ff; }
.attractions-rentals-section .section-title { text-align: center; margin-bottom: 2rem; }
.attractions-rentals-section .section-link { text-align: center; margin-top: 2rem; }

/* Attractions hub back-link (below CMS intro) */
.attractions-hub-cta { text-align: center; padding: 0.5rem 0 1.5rem; }
.attractions-hub-cta a { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--primary-color); font-weight: 500; text-decoration: none; }
.attractions-hub-cta a:hover { text-decoration: underline; }

/* FRB Favorite badge on place cards */
.frb-favorite-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: #e11d48;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.25rem 0.65rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    z-index: 2;
    pointer-events: none;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}


/* ── YouTube Section ─────────────────────────────────────── */
.youtube-section { padding: 4rem 0; background: #f8f9fa; }
.youtube-section .section-title { text-align: center; margin-bottom: 2.5rem; }
.youtube-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}
.youtube-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    background: #fff;
}
.youtube-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.youtube-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #000;
}
.youtube-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: opacity 0.2s; }
.youtube-card:hover .youtube-thumb img { opacity: 0.82; }
.youtube-play-btn {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 56px; height: 56px;
    background: rgba(255,0,0,0.85);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.6rem;
    transition: background 0.2s, transform 0.2s;
    pointer-events: none;
}
.youtube-card:hover .youtube-play-btn { background: #ff0000; transform: translate(-50%, -50%) scale(1.12); }
.youtube-info { padding: 0.85rem 1rem 1rem; }
.youtube-info h4 {
    font-size: 0.9rem; font-weight: 600; margin: 0; line-height: 1.35; color: var(--text-dark);
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.youtube-section-link { text-align: center; margin-top: 2rem; }

/* YouTube modal */
.yt-modal-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.88);
    z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    padding: 1rem;
}
.yt-modal-inner { position: relative; width: 100%; max-width: 900px; }
.yt-modal-close {
    position: absolute; top: -2.75rem; right: 0;
    background: none; border: none; color: #fff;
    font-size: 2.25rem; cursor: pointer; line-height: 1; padding: 0; opacity: 0.8;
}
.yt-modal-close:hover { opacity: 1; }
.yt-aspect-box { position: relative; padding-bottom: 56.25%; height: 0; border-radius: 8px; overflow: hidden; }
.yt-aspect-box iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
