/* ======================================== */
/* GLOBAL STYLES & VARIABLES        */
/* ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&family=Playfair+Display:wght@400;600;700&display=swap');
/* Define your color palette here for easy changes */
:root {
    --primary-color: #fdf8f3; /* White */
    --secondary-color: #bc7d26; /* Light Gray for backgrounds */
    --accent-color: #ffffff; /* Example: Tomato Orange for buttons/links */
    --text-color: #2f2f2f; /* Dark Gray for text */
    --heading-font: 'Poppins', serif; /* Font for headings */
    --body-font: 'Poppins', sans-serif; /* Font for body text */
}

/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
    font-family: var(--body-font);
    color: var(--text-color);
    background-color: var(--primary-color);
    /* Add padding to the top to prevent content from being hidden by the fixed navbar */
    padding-top: 70px; 
}

h1, h2, h3, h4 {
    font-family: var(--heading-font);
    text-align: center;
    margin-bottom: 20px;
}

section {
    padding: 40px 40px;
}

.container {
    max-width: none;
    margin: 0 auto;
    text-align: center;
}

/* ======================================== */
/* NAVIGATION BAR (FIXED)           */
/* ======================================== */
.navbar {
    position: fixed; /* Fixes the navbar to the top */
    top: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box; /* ensures padding stays inside width */
  overflow-x: hidden;  
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 15px;
    background-color:#bc7d26;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000; /* Ensures it stays on top of other content */
}

.nav-logo {
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ffffff;
}


/* ======================================== */
/* HERO & LOGO SECTION             */
/* ======================================== */
.hero {
    text-align: center;
    margin-top: 100px;

}

.logo-container {
    width: 100%;
    max-width: none; /* Adjust size of logo container */
    background-color: #bc7d26;   /* pick any solid color */
                 /* optional, to give breathing space */
  border-radius: 0px;
}

.logo-video {
    width: 100%;
    height: auto;
    display: block;
  object-fit: contain;
}

/* ======================================== */
/* TEXTURED BACKGROUND            */
/* ======================================== */
.textured-bg {
    background-color: var(--primary-color);
    /* Replace 'texture.png' with your actual texture file */
    background-image: url('assets/texture.png'); 
}

/* ======================================== */
/* CAROUSEL (for Packages & Reviews) */
/* ======================================== */
.carousel { display: flex; overflow-x: auto; /* Enables horizontal scrolling */ padding: 20px 0; /* Hide scrollbar for a cleaner look but still allow scrolling */ -ms-overflow-style: none; /* IE and Edge */ scrollbar-width: none; /* Firefox */ } .carousel::-webkit-scrollbar { display: none; /* Chrome, Safari, and Opera */ }

/* ======================================== */
/* CARD STYLING                */
/* ======================================== */
.card {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    margin: 0 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

/* Specific card types */
.package-card, .review-card, .service-card {
    flex: 0 0 300px; /* Prevents cards from shrinking. Adjust width here. */
    padding: 20px;
    text-decoration: none;
    color: var(--text-color);
}

.review-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 15px;
}
.review-card cite {
    display: block;
    margin-top: 10px;
    font-style: normal;
    font-weight: bold;
}

/* ======================================== */
/* SERVICES GRID SECTION          */
/* ======================================== */
.services-grid {
    display: flex;
    flex-wrap: wrap; /* Allows items to wrap to the next line */
    justify-content: center;
    gap: 20px; /* Space between cards */
}
.service-card {
    flex-basis: 100px;
    padding: 20px;
    color: #fff; /* ensures text is visible on darker gradients */
    background: linear-gradient(135deg, #bc7d26, #f39c12); /* adjust colors */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* This class will be toggled by JavaScript */
.hidden {
    display: none;
}
#view-all-btn {
    margin-top: 30px;
}

/* ======================================== */
/* STORYTELLERS SECTION            */
/* ======================================== */
.storytellers-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.storyteller-card {
    text-align: center;
    max-width: 425px;
}

.image-container {
    position: relative; /* Needed to position the hover image */
    width: 425px;
    height: 375px;
    margin: 0 auto 15px;
}

.image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.4s ease-in-out;
}

.hover-image {
    opacity: 0; /* The hover image is invisible by default */
}

.storyteller-card:hover .hover-image {
    opacity: 1; /* Make hover image visible on hover */
}

.storyteller-card:hover .default-image {
    opacity: 0; /* Hide default image on hover */
}

.storyteller-info {
    opacity: 0; /* Info is hidden by default */
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.4s ease, max-height 0.4s ease;
}

.storyteller-card:hover .storyteller-info {
    opacity: 1; /* Show info on hover */
    max-height: 100px; /* Give it space to expand into */
}

.storyteller-paragraph {
    margin-top: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ======================================== */
/* CONNECT & FOOTER SECTIONS        */
/* ======================================== */
.cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 30px;
}

.cta-button:hover {
    background-color: #333; /* Darken button on hover */
}

footer {
    background: var(--secondary-color);
    text-align: center;
    padding: 30px 20px;
}

.social-links {
    margin-bottom: 15px;
}

.social-links a {
    margin: 0 10px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.2rem;
}


/* ======================================== */
/* MOBILE RESPONSIVENESS            */
/* ======================================== */

@media (max-width: 768px) {
    body {
        padding-top: 60px; /* Adjust for smaller navbar */
    }

    .navbar {
        padding: 10px 15px;
        flex-direction: column; /* Stack logo and links on small screens */
        gap: 10px;
    }

    .nav-links {
        gap: 15px;
        font-size: 0.9rem;
    }

    section {
        padding: 40px 15px;
    }
    
    .storytellers-container {
        flex-direction: column;
        align-items: center;
    }
}

/* ======================================== */
/* NEW CAROUSEL STYLES (for Packages) */
/* ======================================== */

.carousel-container {
    position: relative; /* Required for positioning the buttons */
    max-width: 900px;   /* Adjust the max width of the carousel */
    margin: auto;
}

.carousel-viewport {
    overflow: hidden; /* Hides the slides that are off-screen */
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out; /* Animation for sliding */
}

.carousel-slide {
    flex: 0 0 100%; /* Each slide takes up 100% of the viewport width */
    padding: 0 10px; /* Adds a little space between slides if needed */
}

.carousel-slide img {
    width: 100%;
    display: block;
    /* Landscape A4 ratio is approx 1.414:1. This ensures your posters fit perfectly. */
    aspect-ratio: 1.414 / 1; 
    object-fit: cover; /* Ensures the image covers the area without distortion */
    border-radius: 8px;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 5px 15px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
}

.carousel-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.carousel-button.prev {
    left: -20px;
}

.carousel-button.next {
    right: -20px;
}

/* Hide buttons on smaller screens where they might overlap content awkwardly */
@media (max-width: 768px) {
    .carousel-button.prev {
        left: 5px;
    }
    .carousel-button.next {
        right: 5px;
    }
}

#about {
  text-align: center;
  max-width: 1920px;
  margin: 0 auto;
  padding: 60px 20px;
}
.about-quote {
  font-style: italic;
  font-weight: 400; /* normal */
  margin-top: 0px;     /* reduce space above */
  margin-bottom: 0px;
}
/* ======================================== */
/* FAQ SECTION                              */
/* ======================================== */
#faq {
  padding: 60px 20px;
  background-color: var(--primary-color);
}

#faq h2 {
  text-align: center;
  margin-bottom: 30px;
}

.faq-item {
  max-width: 800px;
  margin: 10px auto;
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  transition: background 0.3s;
}

.faq-question:hover {
  background: rgba(0,0,0,0.05);
}

.faq-answer {
  display: none;
  padding: 0 15px 15px 15px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color);
}
#home {
  width: 100%;
  margin: 0;
  padding-top: 50px;
}

/* Make this section ignore container limits */
.hero.full-bleed {
  width: 100%;
  margin: 0;
  padding: 0;
}

.hero.full-bleed .logo-container {
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #bc7d26;
  border-radius: 0;
}

.logo-video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain; /* use cover if you want it to fully fill */
}
footer {
  text-align: center;
  padding: 20px;
  background-color: #bc7d26;  /* match your theme */
  color: #fff;
}

footer .social-links {
  margin-bottom: 15px;
}

footer .social-links a {
  display: inline-block;
  margin: 0 10px;
}

footer .social-links img {
  width: 32px;      /* control size */
  height: 32px;
  transition: transform 0.2s ease;
}

footer .social-links img:hover {
  transform: scale(1.2);  /* subtle hover zoom */
}

