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

:root {
    --cream: #F5F1E8;
    --sage: #8B9D83;
    --deep-sage: #5F6F58;
    --charcoal: #2C3531;
    --gold: #C9A961;
    --soft-white: #FEFDFB;
    --stone: #D4CEC3;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Navigation */
nav#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: transparent; /* removed the rgba background that created white rectangle */
    backdrop-filter: none; /* removed blur effect */
    z-index: 1000;
    padding: 1rem 5%; /* reduced from 1.5rem to 1rem for slimmer nav */
    border-bottom: none; /* removed border that emphasized the rectangle */
    transition: all 0.4s ease;
}

/* Ensure only one nav element renders */
nav#navbar:not(:first-of-type) {
    display: none;
}

nav#navbar.scrolled {
    padding: 0.8rem 5%; /* reduced from 1rem to 0.8rem */
    background: rgba(245, 241, 232, 0.95); /* add background only on scroll */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(139, 157, 131, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

.booking-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-left: auto;
    margin-right: 2rem;
}

.booking-icons-mobile {
    display: none;
}

.mobile-booking-icons {
    display: none;
}

.booking-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.95;
    border-radius: 4px;
    overflow: hidden;
}

.booking-icon:hover {
    opacity: 1;
    transform: scale(1.1);
}

.booking-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; /* reduced from 1.8rem for slimmer nav */
    color: var(--soft-white); /* changed to white for visibility on hero */
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.15em;
    transition: color 0.3s ease;
}

.logo:hover {
    color: var(--gold);
}

/* Logo color changes when scrolled */
nav.scrolled .logo {
    color: var(--deep-sage);
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
    margin-left: 4rem; /* Added spacing from logo */
}

.nav-links a {
    color: var(--soft-white); /* changed to white for visibility on hero */
    text-decoration: none;
    font-size: 0.85rem; /* reduced from 0.9rem for slimmer nav */
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold); /* changed from deep-sage to gold */
}

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

/* Nav links color changes when scrolled */
nav.scrolled .nav-links a {
    color: var(--charcoal);
}

nav.scrolled .nav-links a:hover,
nav.scrolled .nav-links a.active {
    color: var(--deep-sage);
}

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

.mobile-toggle span {
    width: 30px;
    height: 2px;
    background: var(--soft-white);
    transition: all 0.3s ease;
}

/* Mobile toggle color changes when scrolled */
nav.scrolled .mobile-toggle span {
    background: var(--charcoal);
}

.mobile-close {
    display: none;
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: none;
    border: none;
    font-size: 3rem;
    color: var(--charcoal);
    cursor: pointer;
    padding: 0;
    line-height: 1;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-close:hover {
    color: var(--deep-sage);
    transform: rotate(90deg);
}

.mobile-close span {
    display: block;
    font-weight: 300;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--sage) 0%, var(--deep-sage) 100%);
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grain" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><rect width="100" height="100" fill="%23000"/><circle cx="20" cy="20" r="0.5" fill="%23fff" opacity="0.05"/><circle cx="80" cy="40" r="0.5" fill="%23fff" opacity="0.05"/><circle cx="50" cy="70" r="0.5" fill="%23fff" opacity="0.05"/><circle cx="30" cy="90" r="0.5" fill="%23fff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

.hero-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    color: var(--soft-white);
    margin-bottom: 1rem;
    letter-spacing: 0.15em;
    font-weight: 300;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-tagline {
    font-size: 1.2rem;
    color: var(--cream);
    letter-spacing: 0.12em;
    margin-bottom: 3rem;
    font-weight: 300;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-cta {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--gold);
    color: var(--charcoal);
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 500;
    border: 2px solid var(--gold);
    transition: all 0.4s ease;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-cta:hover {
    background: transparent;
    color: var(--soft-white);
    border-color: var(--soft-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem; /* reduced from 3rem */
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-indicator::before {
    content: '';
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--cream);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--cream);
    border-radius: 2px;
    animation: scrollDot 2s infinite;
}

/* Page Headers */
.page-header {
    padding: 8rem 5% 4rem; /* removed extra padding-top that created tall header block */
    background: linear-gradient(135deg, var(--deep-sage) 0%, var(--sage) 100%);
    text-align: center;
    position: relative;
    margin-top: 0; /* removed margin-top, navbar will overlay naturally */
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23fff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.page-title {
    font-size: 4rem;
    color: var(--soft-white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--cream);
    letter-spacing: 0.08em;
    position: relative;
    z-index: 1;
}

/* Content Sections */
.content-section {
    padding: 6rem 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.content-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-size: 3.5rem;
    color: var(--deep-sage);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--sage);
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: 0.08em;
}

/* Welcome Section */
.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.welcome-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: var(--charcoal);
}

.welcome-image {
    width: 100%;
    height: 500px;
    background: linear-gradient(45deg, var(--sage), var(--deep-sage));
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.welcome-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--gold);
    pointer-events: none;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 500;
    border: 2px solid;
    transition: all 0.4s ease;
    margin-top: 2rem;
}

.btn-primary {
    background: var(--gold);
    color: var(--charcoal);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background: transparent;
    color: var(--deep-sage);
    border-color: var(--deep-sage);
}

.btn-secondary:hover {
    background: var(--deep-sage);
    color: var(--soft-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.feature-card {
    padding: 2.5rem;
    background: var(--soft-white);
    border: 1px solid var(--stone);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--gold);
}

.feature-card h3 {
    font-size: 1.8rem;
    color: var(--deep-sage);
    margin-bottom: 1rem;
}

.feature-card ul {
    list-style: none;
    padding-left: 0;
}

.feature-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--charcoal);
}

.feature-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 1.5rem;
    line-height: 1.2;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Features Preview */
.features-preview {
    background: var(--soft-white);
    padding: 6rem 0;
}

/* Location Section */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-top: 3rem;
}

.location-highlights {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.highlight-item {
    padding-left: 2rem;
    border-left: 3px solid var(--gold);
}

.highlight-item h4 {
    font-size: 1.3rem;
    color: var(--deep-sage);
    margin-bottom: 0.5rem;
}

.location-map {
    width: 100%;
    height: 650px;
    background: linear-gradient(135deg, var(--stone), var(--sage));
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.location-preview {
    background: var(--soft-white);
    padding: 6rem 0;
    text-align: center;
}

.location-preview .location-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.location-preview .highlight-item {
    border-left: none;
    padding-left: 0;
}

/* Travel Times */
.travel-times {
    background: var(--cream);
}

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

.travel-card {
    padding: 2rem;
    background: var(--soft-white);
    border-top: 3px solid var(--gold);
    text-align: center;
    transition: all 0.3s ease;
}

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

.travel-time {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.travel-card h4 {
    font-size: 1.3rem;
    color: var(--deep-sage);
    margin-bottom: 0.5rem;
}

/* Attractions */
.attractions-section {
    background: var(--soft-white);
}

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

.attraction-card {
    padding: 2rem;
    background: var(--cream);
    border-left: 4px solid var(--sage);
}

.attraction-card h4 {
    font-size: 1.3rem;
    color: var(--deep-sage);
    margin-bottom: 0.5rem;
}

/* Reviews */
.reviews-preview {
    background: var(--cream);
    padding: 6rem 0;
}

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

.review-card {
    padding: 3rem;
    background: var(--soft-white);
    border-left: 4px solid var(--gold);
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 5rem;
    font-family: 'Cormorant Garamond', serif;
    color: var(--stone);
    line-height: 1;
}

.review-text {
    font-style: italic;
    color: var(--charcoal);
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
}

.review-rating {
    color: var(--gold);
    font-size: 1.2rem;
    letter-spacing: 0.2rem;
}

.review-meta {
    font-size: 0.9rem;
    color: var(--sage);
    margin-top: 1rem;
}

/* Rating Summary */
.rating-summary {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4rem;
    align-items: center;
    padding: 3rem;
    background: var(--soft-white);
    border: 2px solid var(--gold);
}

.rating-score {
    text-align: center;
    padding: 2rem;
}

.score-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    color: var(--gold);
    line-height: 1;
}

.rating-stars {
    font-size: 1.5rem;
    color: var(--gold);
    margin: 1rem 0;
}

.rating-summary p {
    font-size: 1.1rem;
}

/* What Guests Love */
.highlights-section,
.love-section {
    background: var(--cream);
}

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

.love-item {
    padding: 2rem;
    background: var(--soft-white);
    text-align: center;
    transition: all 0.3s ease;
}

.love-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

.love-item h4 {
    font-size: 1.3rem;
    color: var(--deep-sage);
    margin-bottom: 0.5rem;
}

/* Platforms */
.platforms-section {
    background: var(--soft-white);
}

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

.platform-card {
    padding: 2.5rem;
    background: var(--cream);
    border: 2px solid var(--stone);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 420px;
}

.platform-card:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.platform-card h4 {
    font-size: 1.5rem;
    color: var(--deep-sage);
    margin-bottom: 1rem;
}

.platform-card p {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.platform-card .btn-secondary {
    margin-top: auto;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--deep-sage) 0%, var(--sage) 100%);
    padding: 6rem 5%;
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23fff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.cta-section h2 {
    font-size: 3rem;
    color: var(--soft-white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--cream);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.cta-section .btn-primary {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--charcoal);
    position: relative;
    z-index: 1;
}

.cta-section .btn-primary:hover {
    background: transparent;
    color: var(--soft-white);
    border-color: var(--soft-white);
}

/* Booking Form */
.booking-header {
    background: linear-gradient(135deg, var(--gold) 0%, var(--sage) 100%);
}

.booking-section-home {
    background: linear-gradient(135deg, var(--deep-sage) 0%, var(--sage) 100%);
    padding: 6rem 5%;
    position: relative;
}

.booking-section-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23fff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.booking-section-home .section-title {
    color: var(--soft-white);
    position: relative;
    z-index: 1;
}

.booking-section-home .section-subtitle {
    color: var(--cream);
    position: relative;
    z-index: 1;
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--soft-white);
    padding: 4rem;
    border-radius: 2px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.booking-form-title {
    font-size: 2.5rem;
    color: var(--deep-sage);
    margin-bottom: 0.5rem;
    text-align: center;
}

.booking-form-subtitle {
    text-align: center;
    color: var(--sage);
    margin-bottom: 3rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

label {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--deep-sage);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

input,
textarea,
select {
    padding: 1rem;
    border: 1px solid var(--stone);
    background: var(--soft-white);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--charcoal);
    transition: all 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: var(--deep-sage);
    color: var(--soft-white);
    border: 2px solid var(--deep-sage);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    font-weight: 500;
}

.submit-btn:hover {
    background: transparent;
    color: var(--deep-sage);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.booking-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(139, 157, 131, 0.1);
    border-left: 3px solid var(--gold);
    font-size: 0.95rem;
    color: var(--charcoal);
}

.booking-info strong {
    color: var(--deep-sage);
}

.booking-alternatives {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--stone);
    text-align: center;
}

.booking-alternatives p {
    font-size: 1rem;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

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

.platform-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border: 2px solid var(--stone);
    background: var(--soft-white);
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.platform-link:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.platform-link svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.platform-link img.platform-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.airbnb-link {
    color: #FF5A5F;
    border-color: #FF5A5F;
}

.airbnb-link:hover {
    background: #FF5A5F;
    border-color: #FF5A5F;
    color: white;
}

.airbnb-link:hover img.platform-icon {
    filter: brightness(0) invert(1);
}

.booking-link {
    color: #003580;
    border-color: #003580;
}

.booking-link:hover {
    background: #003580;
    border-color: #003580;
    color: white;
}

.booking-link:hover img.platform-icon {
    filter: brightness(0) invert(1);
}

/* Info Cards */
.info-section {
    background: var(--cream);
}

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

.info-card {
    padding: 2rem;
    background: var(--soft-white);
    border-top: 3px solid var(--gold);
}

.info-card h4 {
    font-size: 1.3rem;
    color: var(--deep-sage);
    margin-bottom: 0.5rem;
}

.info-cards-section {
    background: var(--cream);
}

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

.info-card-large {
    padding: 2.5rem;
    background: var(--soft-white);
    border-left: 4px solid var(--sage);
}

.info-card-large h4 {
    font-size: 1.5rem;
    color: var(--deep-sage);
    margin-bottom: 1rem;
}

/* FAQ */
.faq-section {
    background: var(--soft-white);
}

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

.faq-item {
    padding: 2rem;
    background: var(--cream);
    border-left: 3px solid var(--gold);
}

.faq-item h4 {
    font-size: 1.2rem;
    color: var(--deep-sage);
    margin-bottom: 0.5rem;
}

/* Contact */
.contact-hero {
    text-align: center;
    padding: 3rem 0;
}

.contact-email {
    font-size: 2rem;
    color: var(--deep-sage);
    text-decoration: none;
    display: inline-block;
    padding: 1rem 3rem;
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
    word-break: break-word;
    max-width: 100%;
}

.contact-email:hover {
    background: var(--gold);
    color: var(--charcoal);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-response {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    color: var(--sage);
}

.contact-methods-section {
    background: var(--cream);
}

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

.contact-method {
    text-align: center;
    padding: 2rem;
    background: var(--soft-white);
    border-radius: 2px;
}

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

.contact-method h3 {
    font-size: 1.5rem;
    color: var(--deep-sage);
    margin-bottom: 1rem;
}

.contact-form-section {
    background: var(--soft-white);
}

.contact-form-container {
    max-width: 700px;
    margin: 3rem auto 0;
}

.location-info-section {
    background: var(--cream);
}

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

.location-info-card {
    padding: 2rem;
    background: var(--soft-white);
    border-top: 3px solid var(--sage);
}

.location-info-card h4 {
    font-size: 1.3rem;
    color: var(--deep-sage);
    margin-bottom: 1rem;
}

.location-info-card .note {
    font-size: 0.9rem;
    color: var(--sage);
    font-style: italic;
    margin-top: 1rem;
}

/* Quick Links */
.quick-links-section {
    background: var(--soft-white);
}

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

.quick-link-card {
    padding: 2.5rem;
    background: var(--cream);
    border: 2px solid var(--stone);
    text-decoration: none;
    color: var(--charcoal);
    display: block;
    position: relative;
    transition: all 0.3s ease;
}

.quick-link-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.quick-link-card h4 {
    font-size: 1.5rem;
    color: var(--deep-sage);
    margin-bottom: 0.5rem;
}

.link-arrow {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 1.5rem;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.quick-link-card:hover .link-arrow {
    transform: translateX(5px);
}

/* Intro Text */
.intro-text {
    max-width: 900px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.intro-text p {
    margin-bottom: 1.5rem;
}

.amenities-list {
    list-style: none;
    padding: 2rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.amenities-list li {
    padding-left: 1.5rem;
    position: relative;
}

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

.location-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    text-align: center;
}

/* Footer */
footer {
    background: var(--charcoal);
    color: var(--cream);
    padding: 3rem 5%;
    text-align: center;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 0.15em;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.footer-nav a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--gold);
}

.footer-text {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 1rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(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);
    }
}

@keyframes scrollDot {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* Image Gallery */
.gallery-section {
    background: var(--soft-white);
    padding: 6rem 0;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    border-radius: 2px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

/* Accommodation Detail Sections */
.accommodation-detail {
    background: var(--soft-white);
}

.accommodation-detail.alt-bg {
    background: var(--cream);
}

.detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.detail-content.reverse {
    direction: rtl;
}

.detail-content.reverse > * {
    direction: ltr;
}

.detail-images {
    display: grid;
    gap: 1.5rem;
}

.detail-images.single {
    grid-template-columns: 1fr;
}

.detail-images:not(.single) {
    grid-template-columns: 1fr 1fr;
}

.detail-images img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.detail-images.single img {
    height: 450px;
}

.detail-images img:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}

.detail-text ul {
    list-style: none;
    padding: 0;
}

.detail-text li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--charcoal);
}

.detail-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Info Cards with Lists */
.info-card ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.info-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--charcoal);
}

.info-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 1.5rem;
    line-height: 1.2;
}

/* Booking Success Overlay */
.booking-success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 53, 49, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.booking-success-overlay.show {
    display: flex;
}

.booking-success-content {
    background: var(--soft-white);
    padding: 4rem 3rem;
    border-radius: 4px;
    text-align: center;
    max-width: 500px;
    margin: 2rem;
    animation: slideUp 0.5s ease;
}

.success-checkmark {
    margin: 0 auto 2rem;
    width: 100px;
    height: 100px;
}

.checkmark {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: var(--soft-white);
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px var(--sage);
    animation: fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: var(--sage);
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke: var(--soft-white);
    stroke-width: 3;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

.booking-success-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--deep-sage);
    margin-bottom: 1rem;
}

.booking-success-content p {
    color: var(--charcoal);
    margin-bottom: 2rem;
    line-height: 1.8;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 30px var(--sage);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--soft-white);
        flex-direction: column;
        padding: 5rem 2rem 2rem 2rem;
        gap: 2rem;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.4s ease;
        margin-left: 0; /* Reset margin on mobile */
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-close {
        display: flex;
    }

    /* Hide desktop booking icons on mobile */
    .desktop-booking-icons {
        display: none;
    }

    /* Show mobile booking icons inside menu */
    .mobile-booking-icons {
        display: flex;
        justify-content: center;
        padding-top: 2rem;
        margin-top: 1rem;
        border-top: 1px solid var(--stone);
        list-style: none;
    }

    .booking-icons-mobile {
        display: flex;
        gap: 2rem;
        align-items: center;
    }

    .booking-icons-mobile .booking-icon {
        width: 40px;
        height: 40px;
    }

    /* Mobile nav should always be dark for visibility */
    nav .nav-links a {
        color: var(--charcoal);
    }

    nav .nav-links a:hover,
    nav .nav-links a.active {
        color: var(--deep-sage);
    }

    .hero-logo {
        font-size: 3rem;
    }

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

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

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

    .welcome-content,
    .location-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .content-section {
        padding: 4rem 0;
    }

    .page-header {
        padding: 10rem 5% 4rem;
    }

    .booking-container {
        padding: 2.5rem 1.5rem;
    }

    .rating-summary {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .reviews-container {
        grid-template-columns: 1fr;
    }

    .detail-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .detail-content.reverse {
        direction: ltr;
    }

    .detail-images:not(.single) {
        grid-template-columns: 1fr;
    }

    .detail-images img {
        height: 280px;
    }

    .detail-images.single img {
        height: 350px;
    }

    /* Contact page tablet optimization */
    .contact-email {
        font-size: 1.5rem;
        padding: 1rem 2rem;
    }
}

@media (max-width: 640px) {
    .hero {
        min-height: 100vh;
    }

    .hero-logo {
        font-size: 2.5rem;
        line-height: 1.2;
    }

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

    .hero-content {
        padding: 1rem;
    }

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

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

    .features-grid,
    .reviews-container,
    .platforms-grid {
        grid-template-columns: 1fr;
    }

    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }

    .booking-container {
        padding: 2rem 1rem;
    }

    .container {
        padding: 0 4%;
    }

    nav#navbar {
        padding: 0.8rem 4%;
    }

    .welcome-image {
        height: 300px;
    }

    .location-preview .location-highlights {
        grid-template-columns: 1fr;
    }

    /* Improve touch targets for mobile */
    .btn-primary,
    .btn-secondary,
    .hero-cta {
        padding: 1.2rem 2.5rem;
        font-size: 0.95rem;
    }

    input,
    select,
    textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .booking-platform-links {
        flex-direction: column;
        gap: 1rem;
    }

    .platform-link {
        width: 100%;
        justify-content: center;
    }

    /* Contact page mobile optimization */
    .contact-email {
        font-size: 1.1rem;
        padding: 1rem 1.5rem;
        word-break: break-all;
        line-height: 1.4;
    }

    .contact-hero {
        padding: 2rem 0;
    }

    .contact-response {
        font-size: 0.95rem;
        padding: 0 1rem;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}