/* Updated Color Scheme */
:root {
    --light-brown: #f1e0d5;
    --olive-green: #6b7d5c;
    --dark-olive: #5a6b4a;
    --charcoal: #2c2c2c;
    --white: #ffffff;
}

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

html,
body {
    background-color: var(--light-brown);
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--charcoal);
}

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

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.nav-brand {
    position: absolute;
    left: 2rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    margin: 0 auto;
}

.nav-cta {
    position: absolute;
    right: 2rem;
}

.nav-book-btn {
    background: var(--olive-green);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.nav-book-btn:hover {
    background: var(--dark-olive);
}

.nav-link {
    background: transparent;
    color: var(--charcoal);
    padding: 0.75rem 1.25rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.nav-link:hover {
    background: var(--olive-green);
    color: var(--white);
    border: 2px solid var(--olive-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(107, 125, 92, 0.3);
}

.nav-link:visited {
    color: var(--charcoal);
}

.nav-link:visited:hover {
    color: var(--white);
}

/* Active page styling */
.nav-link.active {
    border: 2px solid var(--charcoal);
    background: transparent;
    color: var(--charcoal);
}

.nav-link.active:hover {
    background: var(--olive-green);
    color: var(--white);
    border: 2px solid var(--olive-green);
}

/* Main Content */
.main {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

.cta-button {
    background: var(--olive-green);
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-button:hover {
    background: var(--dark-olive);
}

/* Content */
.content {
    padding: 3rem 0;
}

.content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}

.content h2 {
    font-size: 2rem;
    margin: 2rem 0 1rem;
    color: var(--charcoal);
}

.content h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0 0.5rem;
    color: var(--charcoal);
}

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

.content ul {
    margin: 1rem 0 1rem 2rem;
}

.content li {
    margin-bottom: 0.5rem;
}

.content a {
    color: var(--olive-green);
    text-decoration: none;
}

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

/* Footer */
.footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 2rem 0 1rem;
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

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

.footer-section a {
    color: #bbb;
    text-decoration: none;
}

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

.social-links {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.social-links a {
    background: #555;
    padding: 0.75rem;
    border-radius: 50%;
    transition: background 0.3s;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.social-links a i {
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--olive-green);
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 1rem;
    margin-top: 2rem;
    text-align: center;
    color: #95a5a6;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}


/* Hero Image Container */
.hero-image {
    position: relative;
    width: 100%;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

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

/* Dark overlay for text readability */
.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
    pointer-events: none;
}

/* Updated Hero content styles */
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
    text-align: center;
}

.hero-tagline {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
    display: block;
    clear: both;
    width: 100%;
}

.booking-widget-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-top: 2rem;
    display: block;
    clear: both;
    width: 100%;
}

.hero-logo-simple {
    position: absolute;
    top: 15%;
    width: 100px;
    left: calc(50% - 50px);
    z-index: 4;
}

.hero-logo-simple img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 1)) drop-shadow(4px 4px 12px rgba(0, 0, 0, 1)) drop-shadow(-2px -2px 8px rgba(0, 0, 0, 0.8));
    display: block;
    margin: 0 auto;
}

/* Fix Hostaway widget text visibility */
#hostaway-booking-widget {
    color: #333 !important;
}

#hostaway-booking-widget .calendar-day {
    color: #333 !important;
    background: var(--white) !important;
}

#hostaway-booking-widget .calendar-day:hover {
    background: var(--olive-green) !important;
    color: var(--white) !important;
}

#hostaway-booking-widget input {
    color: #333 !important;
    background: var(--white) !important;
}

/* Content area button */
.content-button {
    background: var(--white);
    color: var(--olive-green);
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    border: 2px solid var(--olive-green);
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    margin: 1rem 0;
}

.content-button:hover {
    background: var(--olive-green);
    color: var(--white);
    text-decoration: none;
}

.logo {
    height: 70px;
    width: auto;
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.8;
}

.nav-brand a {
    display: flex;
    align-items: center;
}

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

.about-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.about-content {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.about-content h1 {
    font-size: 2.3rem;
    margin-bottom: 10px;
    margin-top: 0px;
    color: var(--charcoal);
    font-weight: 600;
}

.about-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: var(--charcoal);
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.about-content p:first-of-type {
    font-size: 1.1rem;
    font-weight: 500;
}

.features-list {
    list-style: none;
    margin-top: 30px;
    padding-left: 0;
}

.features-list li {
    margin-bottom: 15px;
    padding-left: 0;
}

.features-list strong {
    color: var(--olive-green);
    font-weight: 600;
}

.photo-gallery {
    display: grid;
    grid-template-columns: 2fr 1.5fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    height: 500px;
}

.photo-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background: var(--white);
}

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

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

/* Large photo spans both rows on the left */
.photo-item:first-child {
    grid-row: span 2;
}

/* Booking Banner */
.booking-banner {
    background: var(--olive-green);
    color: var(--white);
    padding: 50px 0;
    text-align: center;
}

.booking-banner-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.booking-banner-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.banner-cta-button {
    background: var(--white);
    color: var(--olive-green);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 25px;
}

.banner-cta-button:hover {
    background: var(--light-brown);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.contact-info {
    font-size: 1rem;
    opacity: 0.9;
}

.contact-info a {
    color: var(--white);
    text-decoration: underline;
    font-weight: 500;
}

.contact-info a:hover {
    color: var(--light-brown);
}

/* Article page improvements */
.article {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 0 2rem;
    /* Added top padding to fix spacing */
}

.article-header {
    text-align: center;
    margin-bottom: 3rem;
    /* Increased spacing */
}

.article-header h1 {
    font-size: 2.5rem;
    color: var(--charcoal);
    margin-bottom: 0;
    /* Remove bottom margin since we increased header margin */
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

/* Article page improvements */
.article {
    max-width: 1000px;
    /* Increased for side-by-side layouts */
    margin: 0 auto;
    padding: 4rem 0 2rem;
}

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

.article-header h1 {
    font-size: 2.5rem;
    color: var(--charcoal);
    margin-bottom: 0;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

/* Text-Image sections */
.text-image-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin: 3rem 0;
    padding: 2rem 0;
}

/* Image on right (default) */
.text-image-section.image-right {
    grid-template-columns: 1fr 1fr;
}

/* Image on left */
.text-image-section.image-left {
    grid-template-columns: 1fr 1fr;
}

.text-image-section.image-left .image-content {
    order: -1;
}

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

.text-content h2 {
    color: var(--charcoal);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.text-content p {
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.image-content img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.image-caption {
    text-align: center;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Article photo gallery (for bottom gallery) */
.article-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 3rem 0;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background: var(--white);
}

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

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

.gallery-caption {
    padding: 15px;
    text-align: center;
    font-weight: 500;
    color: var(--charcoal);
    font-size: 0.95rem;
    background: var(--white);
}


/* Listings Section */
.listings-section {
    padding: 60px 0;
    background: var(--light-brown);
}

.listings-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--charcoal);
    font-weight: 600;
}

.listings-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.listing-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.listing-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.listing-info {
    padding: 25px;
    text-align: center;
}

.listing-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--charcoal);
    font-weight: 600;
}

.listing-details {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    justify-content: center;
}

.listing-details span {
    background: var(--light-brown);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--charcoal);
}

.listing-info p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

.listing-book-btn {
    background: var(--olive-green);
    color: var(--white);
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.listing-book-btn:hover {
    background: var(--dark-olive);
    transform: translateY(-2px);
}

/* Reviews Section */
.reviews-section {
    padding: 60px 0;
    background: var(--white);
}

/* Stays Introduction Section */
.stays-intro {
    text-align: center;
    padding: 20px 0 40px 0;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 50px;
}

.stays-intro h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--charcoal);
    font-weight: 600;
}

.stays-intro p {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 15px auto;
    color: #555;
}

.location-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.location-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.location-highlights {
    margin: 30px 0;
}

.location-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.location-item i {
    margin-right: 15px;
    color: #6b7d5c;
    width: 20px;
}

.location-map iframe {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Things to Do Page Specific Styles */
.things-intro {
    text-align: center;
    padding: 20px 0 40px 0;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 50px;
}

.things-intro p {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}

/* Activities Section */
.activities-section {
    margin: 40px 0;
    padding: 30px 0;
    background: var(--light-brown);
    border-radius: 12px;
}

.activities-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--charcoal);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.activity-item {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.activity-item h3 {
    color: var(--olive-green);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.activity-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Featured Attractions Section */
.featured-attractions {
    margin: 60px 0;
}

.featured-attractions h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--charcoal);
    font-size: 2.2rem;
}

/* Other Attractions Lists */
.other-attractions {
    margin: 60px 0;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.attraction-category {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.attraction-category h3 {
    color: var(--olive-green);
    margin-bottom: 20px;
    font-size: 1.4rem;
    border-bottom: 2px solid var(--light-brown);
    padding-bottom: 10px;
}

.attraction-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.attraction-category li {
    margin-bottom: 12px;
    padding-left: 0;
    line-height: 1.5;
}

.attraction-category a {
    color: var(--olive-green);
    text-decoration: none;
    font-weight: 600;
}

.attraction-category a:hover {
    color: var(--dark-olive);
    text-decoration: underline;
}

/* Dining Section */
.dining-section {
    margin: 60px 0;
    padding: 40px 0;
    background: var(--light-brown);
    border-radius: 12px;
}

.dining-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--charcoal);
}

.dining-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.dining-category {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.dining-category h3 {
    color: var(--olive-green);
    margin-bottom: 20px;
    font-size: 1.3rem;
    border-bottom: 2px solid var(--light-brown);
    padding-bottom: 10px;
}

.dining-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dining-category li {
    margin-bottom: 10px;
    padding-left: 0;
    line-height: 1.5;
}

.dining-category a {
    color: var(--olive-green);
    text-decoration: none;
    font-weight: 600;
}

.dining-category a:hover {
    color: var(--dark-olive);
    text-decoration: underline;
}

/* Planning Section */
.planning-section {
    margin: 60px 0 40px 0;
    padding: 30px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.planning-section h2 {
    color: var(--charcoal);
    margin-bottom: 20px;
}

.planning-section p {
    margin-bottom: 25px;
    color: #555;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-details p {
    margin: 0;
    font-size: 1rem;
}

.contact-details a {
    color: var(--olive-green);
    text-decoration: none;
    font-weight: 600;
}

.contact-details a:hover {
    color: var(--dark-olive);
    text-decoration: underline;
}

/* Blog Styles */
.blog-description {
    font-size: 1.2rem;
    color: #666;
    margin-top: 1rem;
    font-style: italic;
}

.blog-content {
    margin-top: 3rem;
}

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

.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

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

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

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.blog-category {
    background: var(--olive-green);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.blog-title a {
    color: var(--charcoal);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.3;
}

.blog-title a:hover {
    color: var(--olive-green);
}

.blog-excerpt {
    margin: 1rem 0;
    color: #555;
    line-height: 1.6;
}

.blog-read-more {
    color: var(--olive-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-read-more:hover {
    color: var(--dark-olive);
}

/* Blog Post Styles */
.blog-post {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

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

.blog-post-image {
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.blog-post-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.blog-post-meta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #666;
    flex-wrap: wrap;
}

.blog-post h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.blog-post-excerpt {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
    line-height: 1.6;
}

.blog-post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.blog-post-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.blog-post-content h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--charcoal);
}

.blog-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.blog-post-footer {
    border-top: 1px solid #e0e0e0;
    padding-top: 2rem;
}

.blog-tags {
    margin-bottom: 2rem;
}

.tag {
    background: var(--light-brown);
    color: var(--charcoal);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-right: 0.5rem;
    display: inline-block;
    margin-bottom: 0.5rem;
}

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

.author-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.author-info p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Related Posts */
.related-posts {
    margin: 4rem 0;
    padding: 2rem 0;
    border-top: 1px solid #e0e0e0;
}

.related-posts h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--charcoal);
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.related-post-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.related-post-card:hover {
    transform: translateY(-3px);
}

.related-post-image {
    height: 150px;
    overflow: hidden;
}

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

.related-post-content {
    padding: 1rem;
}

.related-post-content h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
}

.related-post-content h3 a {
    color: var(--charcoal);
    text-decoration: none;
}

.related-post-content h3 a:hover {
    color: var(--olive-green);
}

.related-post-content time {
    font-size: 0.8rem;
    color: #666;
}

/* Newsletter Banner */
.newsletter-banner {
    background: var(--light-brown);
    padding: 3rem 0;
    text-align: center;
}

.newsletter-content h2 {
    color: var(--charcoal);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.newsletter-content p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* No Posts State */
.no-posts {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.no-posts h2 {
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.no-posts p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}


/* Responsive */
@media (max-width: 768px) {

    .logo,
    .site-logo,
    .header-logo,
    .navbar-brand img {
        display: none !important;
    }

    .attractions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .dining-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .activities-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-details {
        flex-direction: column;
        gap: 15px;
    }

    .featured-attractions h2 {
        font-size: 1.8rem;
    }

    .listings-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .nav {
        flex-direction: column;
        gap: 1rem;
        position: relative;
        padding: 1rem 2rem;
    }

    .nav-brand,
    .nav-cta {
        position: static;
        order: 1;
    }

    .nav-menu {
        margin: 0;
        gap: 0.5rem;
        order: 2;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-cta {
        order: 3;
        margin-top: 0.5rem;
    }

    .nav-link {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .nav-book-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .hero-tagline {
        font-size: 1.5rem;
    }

    .hero-logo-simple img {
        width: 60px;
        height: 60px;
    }

    .booking-widget-container {
        padding: 1rem;
        margin: 1rem;
    }

    .content {
        padding: 2rem 0;
    }

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

    .social-links {
        flex-wrap: wrap;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .photo-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        height: auto;
    }

    .photo-item:first-child {
        grid-row: span 1;
    }

    .photo-item img {
        height: 250px;
    }

    .about-content h1 {
        font-size: 2rem;
    }

    .about-section {
        padding: 40px 0;
    }

    .booking-banner {
        padding: 40px 0;
    }

    .booking-banner-content h2 {
        font-size: 1.8rem;
    }

    .banner-cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }

    /* About and Stays Pages Mobile Fix */
    .text-image-section {
        grid-template-columns: 1fr !important;
        gap: 30px;
        text-align: center;
        padding: 1.5rem 0;
    }

    .text-image-section.image-left .image-content {
        order: 0 !important;
    }

    .text-content {
        padding: 0 !important;
    }

    .image-content img {
        height: 250px;
        width: 100%;
    }

    .image-caption {
        margin-top: 10px;
    }

    /* Make sure article container is single column on mobile */
    .article {
        max-width: 100%;
        padding: 2rem 1rem;
    }

    .klaviyo-form-UXapba {
        margin-top: 60px;
        padding-top: 30px;
    }

    .contact-page .container {
        padding-top: 20px;
    }

    .location-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-post h1 {
        font-size: 2rem;
    }

    .blog-post-image img {
        height: 250px;
    }

    .blog-author {
        flex-direction: column;
        text-align: center;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
    }

    .blog-post-meta {
        justify-content: center;
    }


}