/* --- CSS Variables & Reset --- */
:root {
    --primary: #0A4D3E;       /* Rich Emerald Teal */
    --primary-dark: #06362b;
    --gold: #D4AF37;          /* Luxurious Gold */
    --gold-hover: #b5952f;
    --cream: #F8F5F2;         /* Warm Cream Background */
    --text-dark: #2c2c2c;
    --text-light: #f4f4f4;
    --white: #ffffff;
    --shadow: 0 4px 15px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; height: auto; object-fit: cover; }

/* --- Utility Classes --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-primary { color: var(--primary); }

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    letter-spacing: 0.5px;
    border: none;
}

.btn-gold {
    background-color: var(--gold);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    background-color: var(--gold-hover);
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--gold);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--white);
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Header --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 77, 62, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.logo span { color: var(--gold); }

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
}

/* --- Hero Section (Slideshow) --- */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: -1;
}

.hero-slide.active { opacity: 1; }

/* Dark overlay for text readability */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 0 20px;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Tours Section --- */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.tour-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold);
    color: var(--white);
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 20px;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tour-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.tour-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-card:hover .tour-img-wrapper img {
    transform: scale(1.1);
}

.tour-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tour-title {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 600;
}

.tour-tags {
    margin-bottom: 15px;
}

.tour-tag {
    display: inline-block;
    background: #eef5f3;
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    margin-right: 5px;
    margin-bottom: 5px;
}

.tour-highlights {
    list-style: none;
    margin-bottom: 20px;
    flex-grow: 1;
}

.tour-highlights li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #555;
}

.tour-highlights li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--gold);
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 0.8rem;
}

/* --- About Section --- */
.about-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: start;
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: #444;
    text-align: justify;
}

.experience-box {
    background: #eef5f3;
    border-left: 4px solid var(--gold);
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.experience-box strong {
    display: block;
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

/* Photo Stack Layout */
/* Base (mobile-first) */
.about-photos-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;                /* more breathing room on phone */
    width: 100%;
    align-items: center;      /* center images for better look */
}

.about-photos-stack img {
    width: 100%;              /* full width on mobile – key change */
    max-width: 420px;         /* optional cap so not huge on very wide phones */
    height: auto;
    max-height: 280px;        /* taller than before, adjust to taste */
    border-radius: 12px;
    box-shadow: var(--shadow);
    object-fit: cover;        /* or 'contain' if you don't want any crop */
}

/* Desktop / larger screens */
@media (min-width: 769px) {
    .about-wrapper {
        grid-template-columns: 1.5fr 1fr;
        gap: 50px;
    }
    
    .about-photos-stack {
        align-items: start;   /* back to left-align if preferred */
    }
    
    .about-photos-stack img {
        width: calc(75% - 25px);  /* keep your original narrow look on desktop */
        max-height: 220px;        /* or your original 200px */
    }
}

/* --- Memories Slideshow --- */
.memories-slideshow {
    position: relative;
    max-width: 650px; /* Reduced from 900px to make it smaller */
    margin: 40px auto 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow);
    background-color: var(--white); /* Ensures background is clean */
}

.slideshow-wrapper {
    position: relative;
    width: 100%;
    height: 450px; /* Fixed height instead of percentage */
    background-color: var(--white);
}

.memory-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.memory-slide.active {
    opacity: 1;
}

.memory-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Changed from cover to contain to show FULL photo */
    border-radius: 12px;
}

/* Arrows */
.slideshow-prev,
.slideshow-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: white;
    border: none;
    padding: 12px 18px;
    cursor: pointer;
    font-size: 1.8rem;
    border-radius: 50%;
    transition: var(--transition);
    z-index: 10;
}

.slideshow-prev { left: 15px; }
.slideshow-next { right: 15px; }

.slideshow-prev:hover,
.slideshow-next:hover {
    background: rgba(10, 77, 62, 0.85);
}

/* Dots */
.slideshow-dots {
    text-align: center;
    padding: 20px 0;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 6px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.4s;
}

.dot.active,
.dot:hover {
    background-color: var(--gold);
}

/* --- Reviews Section --- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--gold);
}

.stars {
    color: var(--gold);
    margin-bottom: 15px;
}

.review-text {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.reviewer-name {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9rem;
}

.reviewer-date {
    display: block;
    font-size: 0.8rem;
    color: #888;
    margin-top: 5px;
}

/* --- Booking CTA Section --- */
.booking-cta {
    position: relative;
    background: url('background.webp') no-repeat center center/cover;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
}

.booking-overlay {
    background: rgba(10, 77, 62, 0.85);
    padding: 100px 20px;
}

/* --- Submit Review --- */
.submit-review {
    background: var(--white);
    text-align: center;
    border-top: 1px solid #ddd;
}

.mug-offer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.mug-icon-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
}

/* --- Footer --- */
footer {
    background: var(--primary);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links li { margin-bottom: 10px; }
.footer-links a:hover { color: var(--gold); padding-left: 5px; }

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #aaa;
}

/* --- Floating Buttons --- */
.floating-actions {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

.float-btn:hover { transform: scale(1.1); }
.whatsapp-float { background: #25D366; }
.email-float { background: #EA4335; }

/* --- Responsive --- */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        transform: scaleY(0);
        transform-origin: top;
        transition: transform 0.3s ease;
    }

    .nav-links.active { transform: scaleY(1); }
    .hamburger { display: block; }
    .about-wrapper { grid-template-columns: 1fr; }
    .about-photos-stack { display: flex; flex-direction: column; }
    
    .about-photos-stack img { max-height: 250px; }

    .memories-slideshow {
        max-width: 100%;
        margin: 30px auto 0;
    }
    
    .slideshow-wrapper {
        height: 300px; /* Smaller height on mobile */
    }

    .slideshow-prev, .slideshow-next {
        padding: 10px 14px;
        font-size: 1.4rem;
    }

}

/* FAQ Section */
.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.faq-item summary {
    padding: 18px 24px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary);
    cursor: pointer;
    list-style: none;           /* removes default marker */
    position: relative;
    transition: background 0.3s;
}

.faq-item summary::-webkit-details-marker { display: none; } /* Chrome/Safari */

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 24px;
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--gold);
    transition: transform 0.3s;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item[open] summary {
    background: #eef5f3;
}

.faq-answer {
    padding: 0 24px 20px;
    color: #444;
    line-height: 1.7;
}

.faq-answer ul {
    padding-left: 20px;
    margin: 12px 0;
}

.faq-answer li {
    margin-bottom: 8px;
}

.nav-links a[href="#faq"] {
    font-weight: 600;
    color: var(--gold) !important;   /* optional – makes it gold to highlight */
}
