/* ===== css/style.css ===== */
/* Main stylesheet for Highland Snug – dog-friendly holiday let */
/* COMPLETE REWRITE WITH FIXES FOR HAMBURGER MENU & FOOTER */

/* ----- RESET & BASE ----- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --snug-green: #2d4b2c;
    --snug-gold: #b38b5b;
    --snug-cream: #f4f2ed;
    --snug-forest: #1e3a1e;
    --snug-stone: #8a9b8b;
    --booked-brown: #3d2b1a;
}

body {
    font-family: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #1e2a2f;
    background-color: #faf9f7;
}

body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

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

/* ----- CONTAINER ----- */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ----- HEADER & NAVIGATION ----- */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--snug-green);
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
}

/* Mobile menu toggle button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--snug-green);
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Animated hamburger menu - active state */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Navigation links */
.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease-in-out;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--snug-forest);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    display: block;
}

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

.nav-links a.active {
    color: var(--snug-gold);
    border-bottom: 2px solid var(--snug-gold);
}

/* Booking button styling */
.booking-link {
    margin-left: 0.5rem;
}

.booking-button {
    display: inline-block;
    background-color: var(--snug-green);
    color: white !important;
    padding: 0.6rem 1.2rem !important;
    border-radius: 8px;
    border: 2px solid var(--snug-gold);
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: center;
}

.booking-button:hover {
    background-color: var(--snug-forest);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 75, 44, 0.3);
    color: white !important;
}

/* WhatsApp link styling */
.whatsapp-link {
    display: flex;
    align-items: center;
}

.whatsapp-link a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #25D366;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 2px solid #128C7E;
    padding: 0 !important;
}

.whatsapp-link a:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-link svg {
    width: 20px;
    height: 20px;
    fill: white;
}

/* ----- HERO SECTION ----- */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2)), url('https://images.unsplash.com/photo-1542718610-7c1a3d16b9d1?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
    font-family: 'Cormorant Garamond', serif;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
}

/* ----- PAGE HEADER (for interior pages) ----- */
.page-header {
    background: linear-gradient(rgba(29, 58, 29, 0.8), rgba(29, 58, 29, 0.8)), url('../images/highview.jpg');
    background-size: cover;
    background-position: center;
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255,255,255,0.9);
}

/* ----- BUTTONS ----- */
.btn {
    display: inline-block;
    background-color: #9b6b43;
    color: white;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: background-color 0.2s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #7e5436;
}

.btn-light {
    background-color: white;
    color: #2c4b3c;
}

.btn-light:hover {
    background-color: #f0f0f0;
    color: #1f382b;
}

.btn-primary {
    background-color: var(--snug-gold);
    border: 2px solid var(--snug-green);
    color: var(--snug-forest);
    padding: 12px 30px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.btn-primary:hover {
    background-color: var(--snug-green);
    color: white;
    transform: translateY(-2px);
}

.btn-secondary {
    border: 2px solid var(--snug-gold);
    color: var(--snug-forest);
    background-color: transparent;
    padding: 12px 30px;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.btn-secondary:hover {
    background-color: var(--snug-gold);
    color: var(--snug-forest);
    transform: translateY(-2px);
}

/* ----- SECTIONS ----- */
section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2.4rem;
    color: var(--snug-green);
    margin-bottom: 1.5rem;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--snug-gold);
    margin: 0.5rem auto 0;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #4b5e56;
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* ----- INTRO GRID (HOME PAGE) ----- */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.intro-text p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #2c3e3a;
}

.intro-image img {
    border-radius: 20px;
    box-shadow: 0 20px 30px -10px rgba(0,0,0,0.15);
}

/* ----- DOG POLICY CARD ----- */
.dog-card {
    background-color: #e7efea;
    border-radius: 30px;
    padding: 2rem 3rem;
    text-align: center;
    max-width: 800px;
    margin: 2rem auto 0;
    border: 1px solid #cbdad2;
}

.dog-card h3 {
    font-size: 2rem;
    color: var(--snug-green);
    margin-bottom: 0.5rem;
    font-family: 'Cormorant Garamond', serif;
}

.dog-card p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.dog-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

/* ----- LOCAL HIGHLIGHTS GRID (CAFE & SHOP) ----- */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.highlight-item {
    background: white;
    border-radius: 24px;
    padding: 2rem 1.5rem;
    box-shadow: 0 10px 25px -8px rgba(0,0,0,0.08);
    transition: transform 0.2s;
    border: 1px solid #e3e9e5;
}

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

.highlight-item h3 {
    font-size: 1.8rem;
    color: var(--snug-green);
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
}

.highlight-item .distance {
    font-weight: 600;
    color: var(--snug-gold);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.highlight-item p {
    color: #314a41;
}

.cafe-icon, .shop-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* ----- EXPERIENCE PAGE STYLES ----- */

/* Guest Journey Timeline */
.journey-section {
    background-color: white;
    padding: 5rem 0;
}

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

.journey-card {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.journey-number {
    width: 50px;
    height: 50px;
    background-color: var(--snug-gold);
    color: var(--snug-forest);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    font-family: 'Cormorant Garamond', serif;
}

.journey-card h3 {
    color: var(--snug-green);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
}

.journey-card p {
    color: #666;
    line-height: 1.6;
}

.journey-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--snug-gold);
}

/* Highland Experiences Showcase */
.experience-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--snug-cream) 0%, white 100%);
}

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

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

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

.experience-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.experience-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--snug-gold);
    color: var(--snug-forest);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.experience-content {
    padding: 2rem;
}

.experience-content h3 {
    color: var(--snug-green);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
}

.experience-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.experience-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
}

/* Gallery Strip */
.gallery-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin: 3rem 0;
}

.gallery-strip-item {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.gallery-strip-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
    pointer-events: none;
}

.gallery-caption {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 1;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* Guest Stories */
.stories-section {
    padding: 5rem 0;
    background-color: white;
}

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

.story-card {
    background: var(--snug-cream);
    padding: 2rem;
    border-radius: 12px;
    border-bottom: 4px solid var(--snug-gold);
}

.story-rating {
    color: var(--snug-gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.story-text {
    color: #555;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.story-author {
    color: var(--snug-green);
    font-weight: 600;
}

.story-location {
    color: #999;
    font-size: 0.9rem;
}

/* Day Trip Options */
.daytrips-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--snug-forest), var(--snug-green));
    color: white;
}

.daytrips-section h2 {
    text-align: center;
    color: var(--snug-gold);
    font-size: 3rem;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 1rem;
}

.daytrips-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--snug-gold);
    margin: 0.5rem auto 0;
}

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

.daytrip-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem 1rem;
    border-radius: 8px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background-size: cover !important;
    background-position: center !important;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

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

.daytrip-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.daytrip-card h3 {
    color: var(--snug-gold);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
}

.daytrip-card p {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background-color: var(--snug-cream);
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 5px solid var(--snug-gold);
}

.testimonial-text {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    color: var(--snug-green);
    font-weight: 600;
}

.testimonial-date {
    color: #999;
    font-size: 0.9rem;
}

/* Host Tips Section */
.tips-section {
    padding: 4rem 0;
    background-color: white;
}

.tips-flex {
    display: flex;
    align-items: center;
    gap: 4rem;
    background: linear-gradient(135deg, var(--snug-cream), white);
    border-radius: 20px;
    overflow: hidden;
}

.tips-content {
    flex: 1;
    padding: 3rem;
}

.tips-content h2 {
    color: var(--snug-green);
    font-size: 2.5rem;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 1.5rem;
}

.tips-content h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--snug-gold);
    margin-top: 0.5rem;
}

.tips-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.tips-list {
    list-style: none;
    padding: 0;
}

.tips-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    color: #555;
}

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

.host-signature {
    color: var(--snug-gold);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.3rem;
    margin-top: 2rem;
}

.tips-image {
    flex: 1;
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-align: center;
    padding: 2rem;
    position: relative;
}

.tips-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    pointer-events: none;
}

.tips-image span {
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* ----- CTA BANNER ----- */
.cta-banner {
    background-color: var(--snug-green);
    color: white;
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 40px;
}

.cta-banner h2 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
}

.cta-banner p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* CTA Section (with background image) */
.cta-section {
    background: linear-gradient(rgba(29, 58, 29, 0.9), rgba(29, 58, 29, 0.9)), url('../images/red2.jpg');
    background-size: cover;
    background-position: center;
    padding: 5rem 0;
    text-align: center;
    color: white;
}

.cta-section h2 {
    color: var(--snug-gold);
    font-size: 3rem;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 1.5rem;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* ----- CONTACT PAGE STYLES ----- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 4rem 0;
}

.contact-form-section {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form-section h2 {
    color: var(--snug-green);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
}

.contact-form-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--snug-gold);
    margin-top: 0.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--snug-forest);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--snug-gold);
    box-shadow: 0 0 0 3px rgba(179, 139, 91, 0.1);
}

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

.submit-btn {
    background-color: var(--snug-green);
    color: white;
    border: 2px solid var(--snug-gold);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
}

.submit-btn:hover {
    background-color: var(--snug-forest);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 75, 44, 0.3);
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-bottom: 4px solid var(--snug-gold);
}

.info-card h3 {
    color: var(--snug-green);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.info-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(179, 139, 91, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--snug-gold);
    font-size: 1.2rem;
}

.info-text {
    flex: 1;
}

.info-text h4 {
    margin: 0 0 0.2rem 0;
    color: var(--snug-forest);
    font-size: 1rem;
}

.info-text p {
    margin: 0;
    color: #666;
}

.info-text a {
    color: var(--snug-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-text a:hover {
    color: var(--snug-gold);
}

.direct-whatsapp {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(179, 139, 91, 0.2);
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #128C7E;
    margin-top: 0.5rem;
}

.whatsapp-button:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Calendar Section */
.calendar-section {
    background: white;
    padding: 3rem 0;
}

.calendar-section h2 {
    text-align: center;
    color: var(--snug-green);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-family: 'Cormorant Garamond', serif;
}

.calendar-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--snug-gold);
    margin: 0.5rem auto 0;
}

.calendar-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--snug-cream);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.availability-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.legend-color.booked {
    background-color: var(--booked-brown);
    border: 2px solid #2c1e0f;
}

.legend-color.available {
    background-color: var(--snug-gold);
}

/* Quick Contact Section */
.quick-contact {
    background: linear-gradient(135deg, var(--snug-cream), white);
    padding: 3rem 0;
    text-align: center;
}

.quick-contact h3 {
    color: var(--snug-green);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
}

.quick-contact-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.quick-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.quick-btn.email {
    background-color: var(--snug-green);
    color: white;
    border: 2px solid var(--snug-gold);
}

.quick-btn.phone {
    background-color: var(--snug-gold);
    color: var(--snug-forest);
    border: 2px solid var(--snug-green);
}

.quick-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.form-message {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.form-message.sending {
    background-color: #cce5ff;
    color: #004085;
    border: 1px solid #b8daff;
    display: block;
}

/* ===== IMPROVED FOOTER ===== */
footer {
    background-color: var(--snug-forest);
    color: #e0e6e2;
    padding: 4rem 0 0;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: left;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col h4 {
    color: var(--snug-gold);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--snug-gold);
}

.footer-col p {
    margin-bottom: 0.8rem;
    color: #e0e6e2;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: #e0e6e2;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--snug-gold);
    transform: translateX(5px);
}

/* Social links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
}

.social-links a:hover {
    background-color: var(--snug-gold);
    color: var(--snug-forest);
    transform: translateY(-3px);
}

/* Contact info in footer */
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.footer-contact-icon {
    width: 30px;
    height: 30px;
    background-color: rgba(179, 139, 91, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--snug-gold);
    font-size: 0.9rem;
}

/* Copyright section */
.footer-bottom {
    padding: 2rem 0;
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

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

.footer-bottom a {
    color: var(--snug-gold);
    text-decoration: none;
}

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

/* ----- GALLERY PAGE ----- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-grid img {
    border-radius: 16px;
    width: 100%;
    height: 250px;
    object-fit: cover;
    box-shadow: 0 8px 18px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.02);
}

/* ===== RESPONSIVE MEDIA QUERIES ===== */

/* Tablet styles (max-width: 992px) */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet styles (max-width: 768px) */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 2rem;
        border-radius: 0 0 12px 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        z-index: 1000;
        gap: 1rem;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 0.8rem !important;
        width: 100%;
    }

    .nav-links a.active {
        border-bottom: none;
        background-color: rgba(179, 139, 91, 0.1);
        border-radius: 8px;
    }

    .booking-link {
        margin-left: 0;
        width: 100%;
    }

    .booking-button {
        display: block !important;
        width: 100%;
        text-align: center;
        padding: 0.8rem !important;
    }

    .whatsapp-link {
        justify-content: center;
        margin-top: 0.5rem;
    }

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

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

    .hero-content p {
        font-size: 1.2rem;
    }

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

    /* Experience page responsive */
    .journey-grid {
        grid-template-columns: 1fr;
    }

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

    .gallery-strip {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .daytrips-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .tips-flex {
        flex-direction: column;
    }

    .tips-image {
        width: 100%;
        height: 300px;
    }

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

    /* Contact page responsive */
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .page-header h1 {
        font-size: 2.5rem;
    }

    .calendar-container {
        padding: 1rem;
    }

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

    .quick-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    /* Footer responsive */
    footer {
        padding: 3rem 0 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-contact-item {
        justify-content: center;
    }
}

/* Phone styles (max-width: 600px) */
@media (max-width: 600px) {
    .hero {
        min-height: 300px;
        padding: 2rem 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }

    section {
        padding: 2.5rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .dog-card {
        padding: 2rem 1rem;
    }
    
    .dog-card h3 {
        font-size: 1.8rem;
    }
    
    .dog-card p {
        font-size: 1rem;
    }

    .cta-banner {
        padding: 2rem 1rem;
    }
    
    .cta-banner h2 {
        font-size: 2rem;
    }
    
    .cta-banner p {
        font-size: 1.1rem;
    }

    /* Experience page */
    .daytrips-grid {
        grid-template-columns: 1fr;
    }

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

    .gallery-strip-item {
        height: 150px;
    }

    .journey-card {
        padding: 1rem;
    }

    .experience-content {
        padding: 1.5rem;
    }

    .experience-content h3 {
        font-size: 1.5rem;
    }

    .experience-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Small phones (max-width: 480px) */
@media (max-width: 480px) {
    body {
        font-size: 14px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
        width: 100%;
    }
    
    .btn, .btn-light, .btn-primary, .btn-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        white-space: normal;
        width: 100%;
        text-align: center;
    }
    
    .logo a {
        font-size: 1.4rem;
    }
    
    .nav-links {
        padding: 1.5rem;
        width: 100%;
    }

    /* Experience page */
    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .journey-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .journey-icon {
        font-size: 2rem;
    }

    .journey-card h3 {
        font-size: 1.3rem;
    }

    .experience-tag {
        font-size: 0.8rem;
        padding: 0.2rem 0.8rem;
    }

    .story-card {
        padding: 1.5rem;
    }

    .story-rating {
        font-size: 1rem;
    }

    .daytrip-card {
        padding: 1.5rem 0.5rem;
        min-height: 150px;
    }

    .daytrip-emoji {
        font-size: 2rem;
    }

    .daytrip-card h3 {
        font-size: 1.1rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .tips-content {
        padding: 1.5rem;
    }

    .tips-content h2 {
        font-size: 2rem;
    }

    .host-signature {
        font-size: 1.1rem;
    }

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

    .cta-section p {
        font-size: 1rem;
    }
    
    /* Footer */
    .footer-grid {
        gap: 1.5rem;
    }
    
    .footer-bottom {
        padding: 1.5rem 0;
        font-size: 0.8rem;
    }
}