/* ==================== PACKAGES SECTION ==================== */

.package-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

/* Package Image */
.package-img img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

/* Package Content */
.package-content {
    padding: 20px;
}

/* Price Styling */
.package-price {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.old-price {
    text-decoration: line-through;
    color: #888;
    font-size: 1rem;
    margin-right: 10px;
}

.new-price {
    color: #0078d4;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Includes & Excludes */
.checklist {
    list-style: none;
    padding: 0;
}

.checklist li {
    font-size: 1rem;
    margin: 5px 0;
    display: flex;
    align-items: center;
}

.checklist li i {
    margin-right: 8px;
    color: #0078d4;
}

.checklist.excludes li i {
    color: red;
}

/* Refund & Time */
.package-details p {
    font-size: 1rem;
    margin-top: 10px;
    color: #555;
}


/* ==================== ABOUT US SECTION ==================== */

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 20px;
}

/* Image Styling */
.about-img img {
    width: 100%;
    border-radius: 12px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.about-img img:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Content Styling */
.about-content {
    text-align: left;
    padding-left: 30px;
}

.about-text {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* About List */
.about-list {
    list-style: none;
    padding: 0;
}

.about-list li {
    font-size: 1rem;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.about-list li i {
    color: #0078d4;
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Buttons */
.btn-primary {
    background-color: #0078d4;
    border: none;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 6px;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.btn-primary:hover {
    background-color: #005c99;
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-content {
        text-align: center;
        padding-left: 0;
    }

    .about-list {
        text-align: left;
        margin-left: 15px;
    }
}

/* ==================== TESTIMONIALS SECTION ==================== */

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

/* Testimonial Slider */
.testimonial-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    min-width: 350px;
    max-width: 400px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    scroll-snap-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.testimonial-card:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* Review Header */
.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.reviewer-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2c3e50;
    margin: 0;
}

.reviewer-location {
    font-size: 0.9rem;
    color: #777;
    margin: 0;
}

/* Review Rating */
.review-rating {
    font-size: 1.3rem;
    color: #ffba00;
    margin-bottom: 10px;
}

/* Review Text */
.review-text {
    font-size: 1rem;
    color: #444;
    line-height: 1.5;
    margin-bottom: 10px;
}

/* Review Date */
.review-date {
    font-size: 0.85rem;
    color: #888;
}

/* Scrollbar Customization */
.testimonial-slider::-webkit-scrollbar {
    height: 6px;
}

.testimonial-slider::-webkit-scrollbar-thumb {
    background: #bbb;
    border-radius: 10px;
}

.testimonial-slider::-webkit-scrollbar-track {
    background: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonial-slider {
        flex-direction: row;
        overflow-x: scroll;
        padding-bottom: 15px;
    }

    .testimonial-card {
        min-width: 100%;
        max-width: 100%;
    }

    .review-header {
        flex-direction: row;
    }

    .reviewer-img {
        width: 40px;
        height: 40px;
    }

    .reviewer-name {
        font-size: 1rem;
    }
}

#campsite .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 15px;
}

#campsite .section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

/* Card Styling */
#campsite .card {
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    background: white;
    padding-bottom: 20px;
}

#campsite .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

/* Card Image */
#campsite .card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

/* Card Title */
#campsite .card-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: #2c3e50;
    margin-top: 10px;
}

/* Rating Stars */
#campsite .text-warning {
    font-size: 1.2rem;
}

/* Pricing Section */
#campsite .card-price {
    font-size: 1.4rem;
    font-weight: bold;
    color: #28a745;
}

#campsite .badge {
    font-size: 1rem;
    padding: 5px 10px;
    font-weight: 600;
}

/* Feature List */
#campsite ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

#campsite ul li {
    font-size: 1rem;
    margin: 5px 0;
    display: flex;
    align-items: center;
}

#campsite ul li i {
    margin-right: 8px;
    color: #0078d4;
    font-size: 1.2rem;
}

/* Buttons */
#campsite .btn-outline-primary {
    border: 2px solid #0078d4;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 6px;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
}

#campsite .btn-outline-primary:hover {
    background-color: #0078d4;
    color: white;
    transform: scale(1.05);
}

#campsite .link{
    position: absolute;
    top: 75%;
    left: 50%;
    margin-left: -105px;
    max-width: 210px;
}
/* Responsive Design */
@media (max-width: 768px) {
    #campsite .card {
        margin-bottom: 20px;
    }

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

/* Call Out Section Styles */
#call-out {
    text-align: center;
}

#call-out h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

#call-out p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 20px;
}

#call-out .contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    gap: 10px;
}

#call-out .contact-info i {
    color: var(--brand-primary);
}

#call-out a {
    color: var(--dark-navy);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

#call-out a:hover {
    color: var(--old-gold);
}

#call-out .btn-call {
    background-color: var(--brand-primary);
    color: var(--white);
    font-size: 1.2rem;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: background 0.3s ease-in-out, transform 0.2s ease;
}

#call-out .btn-call:hover {
    background-color: var(--old-gold);
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    #call-out h2 {
        font-size: 1.8rem;
    }

    #call-out p {
        font-size: 1rem;
    }

    #call-out .contact-info {
        font-size: 1.3rem;
    }

    #call-out .btn-call {
        font-size: 1rem;
        padding: 10px 25px;
    }
}

.team-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    padding-bottom: 20px;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.team-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.team-info {
    padding: 20px;
}

.team-info h4 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.team-info p {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    font-size: 1.2rem;
    color: var(--brand-primary);
    transition: color 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.social-links a:hover {
    color: var(--old-gold);
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .team-card {
        margin-bottom: 20px;
    }
}

.experience-card {
    padding: 25px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    background: #ffffffbd;
    border: 1px solid #6565656b;
}

.experience-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.experience-card i {
    margin-bottom: 12px;
}

/* Font Size Adjustments */
.experience-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-dark);
}

.experience-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-top: 8px;
}

/* Responsive Design */
@media (max-width: 992px) {
    /* Two items per row for tablets and small laptops */
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    /* Single column layout for smaller devices */
    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .experience-card {
        padding: 20px;
    }

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

    .experience-card p {
        font-size: 0.9rem;
    }
}

/********************************************/
/*            CAMPING PACKAGES SECTION      */
/********************************************/
#camping-packages {
    padding: 15px 15px; /* Adjust spacing as needed */
    background-color: var(--body-bg); /* or any custom color */
}

#camping-packages .section-title {
    text-align: center;
    margin-bottom: 40px;
}

#camping-packages .section-title p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-top: 8px;
}

/* Override Bootstrap card defaults if needed */
#camping-packages .card {
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px; /* spacing between cards */
}

#camping-packages .card:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

/* Card Header */
#camping-packages .card-header {
    background-color: var(--brand-primary);
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border-bottom: none; /* Hide default border if desired */
    border-radius: 8px 8px 0 0; /* Round top corners only */
}

/* Icon link inside the header */
#camping-packages .card-header i a {
    color: var(--white);
    text-decoration: none;
}

#camping-packages .card-header i a:hover {
    color: var(--old-gold);
}

/* Card Body */
#camping-packages .card-body {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 1rem;
}

/* Image inside card body */
#camping-packages .card-body img {
    flex-shrink: 0;      /* Keep image size fixed */
    width: 60px;         /* Adjust as needed */
    height: auto;
    margin-right: 10px;
}

/* Pricing details */
#camping-packages .price-old {
    text-decoration: line-through;
    color: var(--gray-400);
    margin-right: 0.5rem;
}

#camping-packages .price-new {
    color: var(--green-pea);
    font-weight: 700;
    margin-right: 4px;
}

#camping-packages .card-body p {
    margin: 0.3rem 0;
    font-size: 1rem;
    color: var(--text-color);
}

/* Lock price text */
#camping-packages .lock-price {
    font-weight: 600;
    color: var(--old-gold);
}

/* For smaller screens, adjust padding and fonts */
@media (max-width: 769px) {
    #camping-packages .card-body {
        flex-direction: row;
        gap: 10px;
    }
    #camping-packages .price-new {
        font-size: 1rem;
    }
}


/* ============================================= */
/*               ASIDE (SIDEBAR)                */
/* ============================================= */
aside {
    background-color: var(--body-bg);
    padding: 20px;
    /* border: 1px solid var(--gray-200);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    */
    border-radius: 10px;
    margin-bottom: 20px;
}
#aside-quick-links {
    margin-top: 20px;
}
#aside-quick-links h5 {
    font-size: 1.25rem;
    color: var(--green-pea);
    margin-bottom: 15px;
}
#aside-quick-links ul {
    list-style-type: none;
    padding: 0;
}
#aside-quick-links ul li {
    margin-bottom: 10px;
}
#aside-quick-links ul li a {
    color: var(--wedgewood);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s ease;
}
#aside-quick-links ul li a:hover {
    color: var(--brand-secondary);
    transform: translateX(5px);
}
.calendar-container {
    margin-bottom: 20px;
}
@media (max-width: 769px) {
    aside {
        padding: 15px;
        border-radius: 8px;
    }
    #aside-quick-links h5 {
        font-size: 1.1rem;
    }
    #aside-quick-links ul li a {
        font-size: 0.9rem;
    }
}

/********************************************/
/*         ASIDE QUICK LINKS STYLING        */
/********************************************/
#aside-quick-links {
    /* Adds a background, border, and some spacing */
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px; /* space beneath the container */
}

#aside-quick-links h5 {
    font-size: 1.25rem;
    font-weight: 700; /* bold heading */
    color: var(--green-pea); /* or your preferred color variable */
    margin-bottom: 15px;
}

#aside-quick-links ul {
    list-style: none; /* remove default bullet points */
    margin: 0;
    padding: 0;
}

#aside-quick-links li {
    margin-bottom: 10px; /* spacing between links */
}

#aside-quick-links li a {
    /* color & font settings */
    font-size: 1rem;
    font-weight: 500;
    color: var(--wedgewood); /* or var(--brand-primary), if you prefer */
    text-decoration: none;
    /* smooth interaction effects */
    transition: color 0.3s ease, transform 0.2s ease;
}

#aside-quick-links li a:hover {
    /* hover state: slight slide & color change */
    color: var(--brand-secondary);
    transform: translateX(5px);
}

/* ============================================= */
/*            SECTION: #includes                */
/* ============================================= */
#includes {
    padding: 50px 0;
}
#includes .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
#includes .section-title {
    margin-bottom: 30px;
}
#includes .section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: bold;
}
#includes .section-title p {
    font-size: 1.2rem;
    color: var(--text-light);
}
#includes .section-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.includes-items {
    background-color: var(--body-bg);
    border-radius: 10px;
    padding: 20px;
    max-width: 150px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.includes-items:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.includes-items img {
    max-width: 100%;
    width: 80px;
    height: auto;
    margin-bottom: 10px;
    border-radius: 50%;
    background-color: var(--bg-light-cyan);
    padding: 10px;
}
.includes-items p {
    font-size: 1rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 500;
    line-height: 1.4;
}
@media (max-width: 769px) {
    #includes .section-content {
        gap: 15px;
    }
    .includes-items {
        max-width: 130px;
        padding: 15px;
    }
    #includes .section-title h2 {
        font-size: 2rem;
    }
    #includes .section-title p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .includes-items {
        max-width: 100px;
        padding: 10px;
    }
    .includes-items img {
        padding: 5px;
    }
    #includes .section-title h2 {
        font-size: 1.5rem;
    }
}



/********************************************
 *               FAQ SECTION
 ********************************************/
#faq {
    /* Soft neutral background */
    background-color: var(--gray-50);
    padding: 0 0 20px 0;
}

/* FAQ Section Title */
#faq .section-title h2,
#faq .section-title p {
    color: var(--text-dark);
}

/* Accordion Items Container */
#faq .accordion-item {
    margin-bottom: 15px;
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    overflow: hidden;
    background-color: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Accordion Header Button */
#faq .accordion-button {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    background-color: var(--white);
    padding: 15px;
    border-bottom: 1px solid var(--gray-200);
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Hover (Collapsed) */
#faq .accordion-button:hover {
    background-color: var(--wedgewood);
    color: var(--white);
}

/* Expanded State */
#faq .accordion-button:not(.collapsed) {
    color: var(--white);
    background-color: var(--brand-primary);
    border-radius: 0;
}

/* Accordion Body */
#faq .accordion-body {
    background-color: var(--gray-50);
    color: var(--text-color);
    padding: 20px;
    line-height: 1.6;
}

/* Optional: Slightly adjust within item border for the body */
#faq .accordion-collapse {
    border-top: 1px solid var(--gray-200);
}

/* Make sure no default border remains from Bootstrap (optional) */
.accordion-item:not(:last-of-type) {
    border-bottom: none;
}


/********************************************
 *            MODERN GLAMOROUS TIMELINE
 ********************************************/
#itinerary {
    position: relative;
    background: var(--bg-light-yellow);
    overflow: hidden;
}
/* The flex container (Bootstrap classes used) */
.timeline-item .d-flex {
    align-items: center; /* Ensure icon/time/text align vertically */
    gap: 1rem; /* Additional spacing between elements */
}

/* Wrapper for the timeline content */
#itinerary .timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

/* Vertical gradient line in the center */
#itinerary .timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    margin-left: -2px;
    background: linear-gradient(to bottom, var(--brand-primary), var(--old-gold));
    border-radius: 2px;
}



/* Time styling (if using .fw-bold for the time) */
.timeline-item .fw-bold {
    color: var(--brand-primary);
    font-weight: 700;
}

/* The descriptive text (3rd div in your .d-flex) can keep default color or override */
.timeline-item .d-flex > div:last-child {
    color: var(--text-color);
    line-height: 1.5;
}

/* Each timeline item is a “card” that alternates sides */
#itinerary .timeline-item {
    position: relative;
    width: calc(50% - 20px);
    padding: 20px;
    box-sizing: border-box;
    margin-bottom: 30px;
    /* Card-like styling */
    background-color: var(--white);
    color: var(--text-color);
    border-radius: 6px;
    border: 1px solid var(--old-gold);
}

/* Odd (1st, 3rd, etc.) items on the left, even on the right */
#itinerary .timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}
#itinerary .timeline-item:nth-child(even) {
    left: calc(50% + 20px);
    text-align: left;
}

/* The “dot” connecting the card to the center line */
#itinerary .timeline-item::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--white);
    border: 3px solid var(--old-gold);
    border-radius: 50%;
    top: 30px; /* adjust if you want it aligned differently */
    right: -40px; /* for odd items */
    z-index: 1;
}
#itinerary .timeline-item:nth-child(even)::before {
    right: auto;
    left: -40px; /* place dot on left side for even items */
}

/* Icon Container (e.g., in the first column) */
#itinerary .timeline-item .timeline-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 10px auto;
    /* border-radius: 50%; */
    background-color: var(--body-bg);
    border: 2px solid var(--old-gold);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Time (or anything with .fw-bold in your .col-md-2) */
#itinerary .timeline-item .fw-bold {
    color: var(--brand-primary);
    font-weight: 700;
}

/* Main text area (.col-md-9 in your HTML) */
#itinerary .timeline-item .col-md-9 {
    line-height: 1.6;
}

/* OPTIONAL: Title styling within .col-md-9
   (If you introduce a separate .timeline-title class) */
#itinerary .timeline-item .timeline-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--old-gold);
}

/* Responsive: Full width on smaller screens */
@media (max-width: 576px) {
    #itinerary .timeline::before{
        left: 10px;
    }
    /* Make timeline items span 100% width */
    #itinerary .timeline-item {
        width: calc(100% - 25px);
        left: 0 !important;
        text-align: left !important;
        padding: 15px;
        margin: 0 0 20px 25px;
    }
    /* Position the dot on the left side for all items */
    #itinerary .timeline-item::before,#itinerary .timeline-item:nth-child(even)::before {
        right: auto;
        top:initial!important;
        left: -30px;
        width: 30px;
        height: 20px;
        border: 1px solid var(--old-gold);
        border-radius: 10px 0 0 10px;
        border-right: none;
    }
    #itinerary .timeline-day-heading{
        justify-content: left;
    }
}


/********************************************
 *              TIMELINE DAY HEADINGS
 ********************************************/
.timeline-day-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0 20px; /* top/bottom spacing */
    position: relative;
}

/* The heading text (e.g., “Day 1”) */
.timeline-day-heading h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--bg-light-yellow);
    text-transform: uppercase;
    margin: 0;
    padding: 0 15px;
    position: relative;
    background: var(--brand-primary);
}

/* Optional highlight line behind the text */
.timeline-day-heading h3::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 3px;
    background: linear-gradient(to right, var(--brand-primary), var(--old-gold));
    transform: translateY(-50%);
    z-index: -1;
}

/* Add some extra spacing around the text so the highlight shows on each side */
.timeline-day-heading h3 {
    padding: 0 20px;
}


/* ============================================= */
/*            PARALLAX SCROLLING EFFECT         */
/* ============================================= */
.parallax {
    position: relative;
    /*background-image: url("slider/img-3.jpg"); !* Replace with your image *!*/
    height: 80vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.parallax-content {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 20px 40px;
    border-radius: 8px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.3);
}

.parallax-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.parallax-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* ============================================= */
/*                    SLIDER                     */
/* ============================================= */
#top-slider, #top-slider .container-fluid, #top-slider .carousel-item  {
    padding: 0;
    height: auto;
    max-height: 480px;
    overflow: hidden;
}

#top-slider .container-fluid {
    padding: 0;
}

#top-slider .carousel-item img {
    position: relative;
    object-fit: cover; /* Ensures the image fits well inside its container */
    height: 100%; /* Ensures it takes up the full height */
    display: block;
}

#top-slider .carousel-inner {
    overflow: hidden; /* Prevents content from going outside the carousel boundaries */
    height: 70vh; /* Sets the height of the visible carousel */
}

#top-slider .carousel-item {
    height: 100%; /* Makes the carousel item take up the full height */
}


/* ============================================= */
/*               PHOTO GALLERY                   */
/* ============================================= */

/* General Styles */
#photo-gallery {
    text-align: center;
    padding: 50px 0;
}

#photo-gallery h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Gallery Grid */
#photo-gallery .gallery-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Gallery Item */
#photo-gallery .gallery-item {
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

#photo-gallery .gallery-item img {
    width: 100%;
    height: 100%;
    max-height: 250px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    transition: transform 0.3s ease-in-out, opacity 0.3s;
}

/* Hover Effects */
#photo-gallery .gallery-item:hover img {
    transform: scale(1.05);
    opacity: 0.9;
}

/* View Gallery Button */
#photo-gallery .btn {
    font-size: 1rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 5px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    #photo-gallery {
        padding: 40px 15px;
    }

    #photo-gallery h2 {
        font-size: 1.8rem;
    }

    #photo-gallery .gallery-items {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 10px;
    }

    #photo-gallery .gallery-item img {
        max-height: 200px;
    }
}

@media (max-width: 480px) {
    #photo-gallery h2 {
        font-size: 1.6rem;
    }

    #photo-gallery .gallery-items {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    #photo-gallery .gallery-item img {
        max-height: 180px;
    }
}

.slider-wrapper { max-width: 800px; margin: auto; }
.splide__slide img { width: 100%; height: auto; object-fit: cover; border-radius: 10px; }
.thumbnail-carousel .splide__slide { cursor: pointer; }
.thumbnail-carousel .splide__slide img { height: 80px; object-fit: cover; border-radius: 6px; transition: transform 0.3s; }
.thumbnail-carousel .splide__slide.is-active img { border: 2px solid #4CAF50; transform: scale(1.1); }

/*

!* Vertical Refund Timeline *!
.refund-timeline {
    display: flex;
    flex-direction: column;
    align-items: start;
    position: relative;
    padding-left: 30px;
    border-left: 3px solid #ddd;
    margin-top: 10px;
}

.refund-step {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
}

.refund-circle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    position: absolute;
    left: -9px;
    top: 5px;
    border: 3px solid white;
}

.full-refund {
    background: #17a2b8;
}

.voucher-refund {
    background: #e0c469;
}

.no-refund {
    background: #e57373;
}

.refund-details {
    padding-left: 15px;
}

.refund-label {
    font-weight: bold;
    display: block;
}

#refundDate1, #refundDate2, #refundDate3 {
    font-size: 0.9rem;
    color: #555;
}
*/
