
:root {
    --primary: #325d36; 
    --accent: #004a99;
    --light: #fdfbf7;
    --dark: #333333;
}

body { font-family: 'Segoe UI', sans-serif; margin: 0; background-color: var(--light); color: var(--dark); line-height: 1.6; }

/* --- STICKY NAV (FIXED) --- */
nav { 
    background: white; 
    padding: 10px 5%; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    border-bottom: 3px solid var(--primary);
    position: sticky; /* This makes it stay at the top */
    top: 0;
    z-index: 1000;
}
.nav-logo { height: 50px; }
.nav-links a { margin-left: 20px; text-decoration: none; color: var(--dark); font-weight: 600; }

/* --- HERO SLIDER --- */
.hero-slider {
    position: relative;
    height: 45vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-content { position: relative; z-index: 100; text-align: center; }
.slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    opacity: 0;
    animation: imageAnimation 15s infinite;
}
@keyframes imageAnimation {
    0% { opacity: 0; }
    10% { opacity: 1; }
    33% { opacity: 1; }
    43% { opacity: 0; }
    100% { opacity: 0; }
}

/* Slide Images */
.index-slide1 { background-image: url('photos/index1.jpg'); animation-delay: 0s; }
.index-slide2 { background-image: url('photos/index2.jpg'); animation-delay: 5s; }
.index-slide3 { background-image: url('photos/index3.jpg'); animation-delay: 10s; }
.gallery-slide1 { background-image: url('photos/gallery1.jpg'); animation-delay: 0s; }
.gallery-slide2 { background-image: url('photos/gallery2.jpg'); animation-delay: 5s; }
.gallery-slide3 { background-image: url('photos/gallery3.jpg'); animation-delay: 10s; }
.about-slide1 { background-image: url('photos/about1.jpg'); animation-delay: 0s; }
.about-slide2 { background-image: url('photos/about2.jpg'); animation-delay: 5s; }
.about-slide3 { background-image: url('photos/about3.jpg'); animation-delay: 10s; }
.area-slide1 { background-image: url('photos/area1.jpg'); animation-delay: 0s; }
.area-slide2 { background-image: url('photos/area2.jpg'); animation-delay: 5s; }
.area-slide3 { background-image: url('photos/area3.jpg'); animation-delay: 10s; }
.contact-slide1 { background-image: url('photos/contact1.jpg'); animation-delay: 0s; }
.contact-slide2 { background-image: url('photos/contact2.jpg'); animation-delay: 5s; }
.contact-slide3 { background-image: url('photos/contact3.jpg'); animation-delay: 10s; }

/* Dots */
.slider-dots { position: absolute; bottom: 20px; display: flex; gap: 10px; z-index: 110; }
.dot {
    width: 12px; height: 12px; border: 2px solid white; border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    animation: dotHighlight 15s infinite;
}
.dot1 { animation-delay: 0s; }
.dot2 { animation-delay: 5s; }
.dot3 { animation-delay: 10s; }
@keyframes dotHighlight {
    0%, 30% { background-color: white; transform: scale(1.2); }
    33%, 100% { background-color: rgba(255, 255, 255, 0.3); transform: scale(1); }
}

/* --- SECTIONS & BUTTONS --- */
section { padding: 40px 10%; }
section h2 { color: var(--primary); text-align: center; margin-bottom: 20px; }
.btn { padding: 15px 35px; background: var(--accent); color: white; text-decoration: none; border-radius: 5px; font-weight: bold; display: inline-block; }

/* --- GALLERY GRID --- */
.gallery-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}
.pic { height: 220px; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.pic img { width: 100%; height: 100%; object-fit: cover; cursor: pointer; transition: transform 0.5s ease; }
.pic:hover img { transform: scale(1.1); }

/* --- EXPERIENCE GRID (HOLIDAY VIBE CARDS) --- */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 30px;
    padding: 40px 5%;
    max-width: 1000px; 
    margin: 0 auto;
}
.exp-card {
    background: #ffffff;
    padding: 40px 25px;
    text-align: center;
    border-radius: 15px;
    border: 2px solid #f0f4f8;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.exp-card i { font-size: 2.8rem; color: var(--accent); margin-bottom: 20px; }
.exp-card h3 { color: var(--primary); margin-bottom: 12px; }

/* --- BOOKING PORTALS --- */
.booking-portals { padding: 60px 10%; text-align: center; background-color: #fcfcfc; }
.portal-container { display: flex; justify-content: center; gap: 25px; margin-top: 40px; flex-wrap: wrap; }
.portal-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 20px 30px;
    text-decoration: none;
    min-width: 220px;
}



/* --- ENHANCED PORTAL CARDS --- */
.portal-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.portal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-color: var(--accent);
}

.portal-icon { font-size: 1.8rem; margin-right: 15px; color: var(--accent); }
.portal-info span { font-size: 0.8rem; color: #777; display: block; }
.portal-info p { margin: 0; font-weight: bold; color: var(--dark); }



/* --- DUAL-TONE FOOTER (NO GAP) --- */
.site-footer {
    width: 100%;
    margin-top: 0 !important; /* Fixed the white gap */
    display: block;
    clear: both;
}

.mini-hero {
    background: #004a99 !important;
    color: white !important;
    text-align: center;
    padding: 10px 10%;
    margin-bottom: 0 !important; /* Glues to green */
}

.mini-hero h2 { color: white !important; margin: 0; font-size: 1.4rem; }

.footer-content {
    background-color: #2d5a27 !important; /* Correct Deep Green */
    padding: 10px 0;
    text-align: center;
    color: white !important;
    margin-top: 0 !important; /* Glues to blue */
}

.footer-content p { color: white !important; margin: 0 0 5px 0; 
    font-size: 0.85rem; }

.social-links { display: flex; justify-content: center; gap: 20px; }
.social-links a { color: white !important; font-size: 1.5rem; text-decoration: none; }

/* --- RESPONSIVE FIXES --- */
@media (max-width: 900px) {
    .gallery-wrap { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .experience-grid { grid-template-columns: 1fr; }
}
@media (max-width: 500px) {
    .gallery-wrap { grid-template-columns: 1fr; }
}



/* --- AREA PAGE STYLING --- */
.area-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 5%;
}

.area-story {
    text-align: center;
    margin-bottom: 50px;
}




.area-grid {
    display: grid;
    /* This forces exactly 2 columns */
    grid-template-columns: repeat(2, 1fr); 
    gap: 25px;
    margin-top: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* On mobile, we still want them to stack in 1 column so they aren't squashed */
@media (max-width: 768px) {
    .area-grid {
        grid-template-columns: 1fr;
    }
}





.area-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* Soft shadow */
    border: 1px solid #f0f4f8;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.area-card:hover {
    transform: translateY(-8px); /* Lift effect */
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
    border-color: var(--accent); /* Uses your blue color from earlier */
}

.area-card h3 {
    color: var(--primary); /* Deep green */
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.area-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

/* --- OPTIONAL: Add Icons --- */
/* If you want icons like the other pages, you'll need to add <i> tags to the HTML cards */

.direct-booking-tip {
    /* 1. SPACING & ALIGNMENT */
    width: 80%;               /* Keeps it from touching sides */
    max-width: 900px;         /* Prevents it getting too wide on big screens */
    margin: 30px auto 80px auto !important; /* Centers it & adds the bottom gap */
    
    /* 2. STYLE & LOOK */
    background: #ffffff;
    padding: 20px 25px;
    border-radius: 12px;
    border-left: 6px solid var(--accent); /* The blue vertical line */
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    
    /* 3. LAYOUT */
    display: flex;
    align-items: center;
    gap: 15px;
}

/* 4. MOBILE FIX (So it looks good on phones) */
@media (max-width: 768px) {
    .direct-booking-tip {
        width: 90%;
        margin-bottom: 60px !important;
        padding: 15px;
        flex-direction: column; /* Stacks icon and text on small screens */
        text-align: center;
    }
}



/*informmation abour the houswas*/
.property-highlight {
    padding: 60px 10%;
    background-color: #ffffff;
    text-align: center;
}

/* Stay Cards */
.stay-grid {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.stay-card {
    flex: 1;
    padding: 30px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    background: #fdfdfd;
}

.stay-card h3 {
    color: var(--primary); /* Your deep green */
    margin-bottom: 10px;
}

.feature-tag {
    display: inline-block;
    margin-top: 15px;
    padding: 5px 12px;
    background: #eef2f6;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #004a99;
    font-weight: bold;
}

/* Experience Boxes */
.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.exp-box {
    background: var(--primary); /* Or use your green color code */
    color: white;
    padding: 30px;
    border-radius: 12px;
    text-align: left;
}

.exp-box h4 {
    margin-bottom: 10px;
    font-size: 1.3rem;
    color: #ffd700; /* Gold/Yellow for contrast */
}

.exp-box p strong {
    color: #fff;
    text-decoration: underline;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .stay-grid, .experience-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
}


.adults-only-badge {
    display: inline-block;
    border: 1px solid #c0a080;
    color: #c0a080;
    padding: 5px 15px;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: bold;
}

.intro-text {
    max-width: 700px;
    margin: 0 auto 40px auto;
    color: #6;
    font-size: 1.1rem;
    line-height: 1.6;
}

.property-highlight {
    padding: 60px 10%;
    text-align: center;
}

.stay-grid {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
}

.stay-card {
    flex: 1;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 25px;
    text-align: left;
}

.tag {
    background: #5d7c5d; /* Using your garden green */
    color: white;
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 4px;
}

.experience-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}





.exp-card p {
    color: inherit !important; /* Forces a dark gray color */
    display: block !important; /* Ensures it isn't being hidden by a "display: none" somewhere */
    font-size: 1rem;
    line-height: 1.5;
    margin-top: 10px;
    visibility: visible !important;
}

/* If your background is dark, use this instead: */
/* .exp-card p { color: #ffffff !important; } */





.outdoor { background: #5d7c5d; } 
.rustys { background: #1a2b48; } 

@media (max-width: 768px) {
    .stay-grid, .experience-container {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
}


/* --- GALLERY LOGO THUMBNAIL FIX --- */
.pic.logo-item {
    background-color: #ffffff; 
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;            
}

.pic.logo-item img {
    width: auto;
    height: auto;
    max-width: 90%;
    max-height: 90%;
    object-fit: contain; 
} 
/* DELETE THE EXTRA } THAT WAS AFTER THIS LINE */


/* --- LIGHTBOX MODAL STYLES --- */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 2000;
    padding-top: 50px;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80vh;
    border-radius: 10px;
}

.close {
    position: absolute;
    top: 20px; right: 35px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    user-select: none;
}

.next { right: 0; }
.prev { left: 0; }

#caption-modal {
    text-align: center;
    color: #ccc;
    padding: 10px;
}



/* --- AVAILABILITY CALENDAR STYLING --- */
.calendar-section {
    text-align: center;
    padding: 60px 5%;
}

.calendar-section iframe {
    width: 100%;       /* Makes it fill the container */
    max-width: 900px;  /* Stops it from getting too wide on big screens */
    height: 600px;     /* Good height for viewing months */
    border-radius: 12px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
    .calendar-section iframe {
        height: 400px; /* Shorter height for mobile screens */
    }
}


/* --- BRIGHT TEXT FOR DARK CARDS --- */
.outdoor p, .outdoor h4 {
    color: #ffffff !important;
}

.rustys p, .rustys h4 {
    color: #ffffff !important;
}



/* This "paints" over the Google Calendar white background */
.calendar-wrapper iframe {
    background-color: #fdfbf7 !important; /* Your cream color */
    border: none;
    border-radius: 15px;
}

.calendar-wrapper {
    position: relative;
    max-width: 900px;
    margin: 40px auto;
    overflow: hidden;
    border-radius: 20px;
    border: 3px solid #5d7c5d; /* Using your green to frame it */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.calendar-wrapper iframe {
    width: 100%;
    height: 600px;
    /* This filter makes the blue bars look more like your site's green/grey */
    filter: hue-rotate(60deg) brightness(1.1) saturate(0.7);
}


.rustys h4 {
    color: #ffd700 !important; /* Keeps the heading Gold/Yellow */
}


/* Guide Page Layout */
.guide-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.guide-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.guide-header h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.guide-header p {
    color: #666;
    font-size: 1.1rem;
}

/* Updated 2-Column Grid */
.guide-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Forces exactly 2 equal columns */
    gap: 2rem;
}

/* Stack into a single column on mobile screens */
@media (max-width: 768px) {
    .guide-grid {
        grid-template-columns: 1fr;
    }
}
/* Individual Card Styles */
.guide-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eaeaea;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.guide-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Card Header Strip */
.card-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #f8f9fa;
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid #eaeaea;
}

.card-title i {
    font-size: 1.4rem;
    color: #d97724; /* Primary accent color */
}

.card-title h3 {
    margin: 0;
    font-size: 1.25rem;
    color: #2c3e50;
}

/* Card Body Content */
.card-content {
    padding: 1.5rem;
    color: #444;
    line-height: 1.6;
}

.card-content p {
    margin-bottom: 1rem;
}

.card-content p:last-child {
    margin-bottom: 0;
}

.card-content strong {
    color: #2c3e50;
}

.card-content ul {
    margin: 0.5rem 0 0.5rem 1.2rem;
    padding: 0;
}

.card-content small {
    display: block;
    margin-top: 0.5rem;
    color: #777;
    font-style: italic;
}