/* ========================================================================
   INLAND ADVENTURES - CHILD CSS
   Adventure tourism overrides for std-master
   ======================================================================== */

/* ====================================
   1. BRAND COLORS - Adventure Theme
   ==================================== */

:root {
    /* Override std-master colors with adventure palette */
    --brand-primary: #00579e;           /* Deep water blue */
    --brand-primary-dark: #003d70;
    --brand-primary-light: #0071c5;
    
    --brand-secondary: #009688;          /* Adventure teal */
    --brand-secondary-dark: #00796b;
    --brand-secondary-light: #26a69a;
    
    --brand-accent: #ff6f00;            /* Sunset orange */
    --brand-accent-dark: #e65100;
    --brand-accent-light: #ff8f00;
    
    --bg-secondary: #fafafa;            /* Clean off-white */
    --bg-tertiary: #f5f5f5;
    
    --border-light: #e0e0e0;
    
    /* Typography - Sans-serif for modern adventure feel */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    --font-headings: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

/* Make headings bolder for adventure feel */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.5px;
}

h1 { 
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
}

h2 { 
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
}

/* ====================================
   2. HEADER CUSTOMIZATION
   ==================================== */

.header, .footer {
    background: linear-gradient(135deg, black, var(--brand-secondary) 100%);
    border-bottom: 4px solid var(--brand-accent);
}

.header, {
    border-bottom: 4px solid var(--brand-accent);
}

.footer {
    border-top: 4px solid var(--brand-accent);
}

/* No emoji for adventure sites */
.header .navbar-brand::before {
    content: "";
}

/* ====================================
   3. NAVIGATION STYLING
   ==================================== */

.header .nav-link.current,
.header .current-item > a {
    background-color: var(--brand-accent) !important;
    color: white !important;
    font-weight: 700;
}

.header .nav-link:hover {
    background-color: rgba(255, 111, 0, 0.2);
}

/* ====================================
   4. HERO SECTIONS (Adventure-specific)
   ==================================== */

.adventure-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.adventure-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.adventure-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.8) 0%,
        rgba(0,0,0,0.3) 50%,
        transparent 100%
    );
}

.adventure-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 2rem;
}

.adventure-hero h1 {
    color: white !important;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
    .adventure-hero {
        height: 50vh;
        min-height: 350px;
    }
}

/* ====================================
   5. ICON NAVIGATION CARDS (Homepage)
   ==================================== */

.adventure-choice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem auto;
    max-width: 900px;
}

.adventure-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    text-decoration: none;
    display: block;
}

.adventure-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    text-decoration: none;
}

.adventure-card-icon {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    padding: 2rem;
}

.adventure-card-icon img {
    max-width: 160px;
    height: auto;
    filter: brightness(0) invert(1);
}

.adventure-card-content {
    padding: 2rem;
    text-align: left;
}

.adventure-card-title {
    font-size: 1.8rem;
    color: var(--brand-primary);
    margin-bottom: 1rem;
    font-weight: bold;
}

/* ====================================
   6. TRIP DETAIL CARDS
   ==================================== */

.trip-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s;
}

.trip-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.trip-card-banner {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.trip-card-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.trip-card:hover .trip-card-banner img {
    transform: scale(1.1);
}

.trip-card-content {
    padding: 2rem;
}

/* ====================================
   7. INFO DETAIL CARDS (Trip Pages)
   ==================================== */

.trip-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 20px auto;
  padding: 0 15px;
}

.trip-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 20px auto;
  padding: 15px 30px;
  background: #cedece;
}

.trip-detail-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
}

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

.trip-detail-icon {
  font-size: 40px;
  margin-bottom: 12px;
  color: #007bff; /* Add a vibrant color for icons */
}

.trip-detail-label {
  font-size: 14px;
  font-weight: 600;
  color: #6c757d;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.trip-detail-value {
  font-size: 28px;
  font-weight: bold;
  color: #212529;
  margin-bottom: 8px;
}

.text-small {
  font-size: 13px;
}

.text-muted {
  color: #6c757d;
}

/* ====================================
   8. BOOKING SECTION
   ==================================== */

.trip-booking-section {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    margin: 3rem 0;
    text-align: center;
}

.booking-title {
    color: white !important;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.booking-price {
    font-size: 3rem;
    font-weight: 900;
    margin: 1rem 0;
}

.btn-booking-primary {
    background: white;
    color: var(--brand-primary);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s;
    display: inline-block;
}

.btn-booking-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    text-decoration: none;
}

/* ====================================
   9. TEAM CARDS (About Page)
   ==================================== */

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.team-member-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s;
}

.team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.team-member-name {
    font-size: 1.4rem;
    color: var(--brand-primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.team-member-bio {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.team-member-details {
    background: var(--bg-secondary);
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    text-align: left;
}

.team-member-details p {
    margin-bottom: 0.5rem;
}

/* ====================================
   10. TESTIMONIALS
   ==================================== */

/*.trip-testimonial {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 3rem 2rem;
    margin: 3rem 0;
    border-radius: 12px;
    text-align: center;
    position: relative;
}

.testimonial-quote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--brand-primary);
    margin-bottom: 1.5rem;
}

.testimonial-source {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
}*/

.trip-testimonial blockquote {
    background: #008c8f;
    opacity: 0.8;
    color: white;
    font-size: 1.6em !important;
    font-weight: normal;
    line-height: 1.6em;
    padding: 20px 25px 30px 0px;
    margin-top: 36px;
    border-left: none;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    text-align: center;
}
.trip-testimonial blockquote:after {
    content: "";
    position: relative;
    bottom: -19px;
    right: calc(100% - 12vw - 24px);
    border-width: 0 40px 40px 0;
    border-style: solid;
    border-color: transparent #008c8f;
    display: block;
    margin-bottom: -50px;
}
.trip-testimonial .testifier {
    font-size: 1.3em;
    margin-left: calc(50px + 12vw);
    margin-top: -10px;
	margin-bottom: 30px;
	font-weight: bold;
    color:#008c8f;
}

/* ====================================
   11. CATEGORY TAGS
   ==================================== */

.trip-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.trip-tag {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.trip-tag:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    text-decoration: none;
    color: white;
}

/* ====================================
   12. UTILITY COLOR CLASSES
   ==================================== */

.bg-primary { background-color: var(--brand-primary) !important; }
.bg-secondary { background-color: var(--brand-secondary) !important; }
.bg-accent { background-color: var(--brand-accent) !important; }

.text-primary { color: var(--brand-primary) !important; }
.text-secondary { color: var(--brand-secondary) !important; }
.text-accent { color: var(--brand-accent) !important; }
.text-white { color: white !important; }

.font-bold { font-weight: 700 !important; }



/* ====================================
   13. RAFTING CARD
   ==================================== */
   
/* Header */
.itinerary-header {
    font-size: 2em;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: center;
}

/* === Row layout === */

section.itinerary {
    padding: 30px 50px 70px 30px;
    background: rgb(206, 222, 206);
}

.itinerary-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap; /* ensures responsiveness */
}

/* === Cards === */
.itinerary-card {
    flex: 1 1 45%; /* 2 per row on desktop */
    background-color: #f7f9fc;
    border: 1px solid #e0eeb5;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

/* Mobile: stack cards vertically */
@media (max-width: 768px) {
    .itinerary-card {
        flex: 1 1 100%;
    }
}

/* === Card content === */
.card-title {
    color: #008080;
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 10px;
}

.card-summary {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* === Dropdown styling === */
.details-dropdown {
    border-top: 1px solid #e0e0e0;
    padding-top: 15px;
}

.dropdown-summary {
    list-style: none;
    cursor: pointer;
    font-weight: 600;
    color: #333;
    transition: color 0.2s ease;
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.dropdown-summary::before {
    content: "\25B6";
    font-size: 0.7em;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    transition: transform 0.2s ease;
    color: #008080;
}

.details-dropdown[open] > .dropdown-summary::before {
    transform: translateY(-50%) rotate(90deg);
}

.dropdown-summary:hover {
    color: #007bff;
}

/* Dropdown content */
.dropdown-content {
    padding: 15px 0 0 10px;
}

.dropdown-content h4 {
    color: #008080;
    font-size: 1.1em;
    margin-top: 15px;
    margin-bottom: 8px;
}

.dropdown-content ul {
    list-style-type: disc;
    margin-left: 25px;
    padding-left: 0;
}

.dropdown-content li {
    margin-bottom: 5px;
    color: #444;
    line-height: 1.5;
}

/* Optional: remove old separators */
.card-separator {
    display: none;
}


/* ====================================
   14. SWhats included
   ==================================== */

.included-section {
    background-color: #f7f9fc; /* soft blue-grey backdrop */
    border: 1px solid #e0eeb5; /* subtle green tint border */
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

/* === Header === */
.included-header {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

/* === Grid Layout === */
.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

/* === Individual Cards === */
.included-card {
    background-color: #ffffff;
    border: 1px solid #dcebd2;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.included-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

/* === Card Headings === */
.included-card h4 {
    color: #008080; /* teal-green accent */
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* === Card Text === */
.included-card p {
    color: #444;
    line-height: 1.6;
    margin: 0;
}

/* === Responsive Adjustments === */
@media (max-width: 768px) {
    .included-section {
        padding: 1.25rem;
    }
    .included-card {
        padding: 1.25rem;
    }
}



/* ====================================
   14. RESPONSIVE ADJUSTMENTS
   ==================================== */

/*@media (max-width: 768px) {
    .adventure-choice-grid,
    .trip-details-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }*/
    


/* Avoid orphan card in last row at specific widths */
@media (min-width: 830px) and (max-width: 1029px) {
  .trip-details-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
    
    .booking-price {
        font-size: 2rem;
    }
    
    .btn-booking-primary {
        width: 100%;
        padding: 1rem 2rem;
    }
    
    .adventure-card-icon {
        height: 150px;
    }
}
/* Force card hover animations */
.card:hover {
    transform: translateY(-4px) !important;
    box-shadow: var(--shadow-lg) !important;
}

/* Fix button hover */
.btn:hover {
    transform: translateY(-2px) !important;
}

.btn-primary:hover {
    background-color: var(--brand-primary-dark) !important;
}

/* Base Locations Section Styles 
   Add this to /templates/cassiopeia/css/inland-adventures.css */

.locations-section {
    padding: 5rem 2rem;
    background-color: #f8f8f8;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.location-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.location-icon {
    width: 100px;
    height: 100px;
    background-color: #7ba05b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
}

.location-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.location-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    max-width: 350px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .locations-section {
        padding: 3rem 1.5rem;
    }

    .locations-grid {
        gap: 2.5rem;
    }
}

/* Choose Your Rafting Adventure Section Styles */

.adventures-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.adventures-header {
    text-align: center;
    margin-bottom: 4rem;
}

.adventures-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.adventures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.adventure-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.adventure-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.adventure-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.adventure-content {
    padding: 2rem 2.5rem 2.5rem;
}

.adventure-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.adventure-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.adventure-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.adventure-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f4c75;
}

.adventure-details {
    font-size: 1rem;
    color: #666;
}

.adventure-button {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.adventure-button:hover {
    background-color: #1a2634;
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1100px) {
    .adventures-grid {
        grid-template-columns: 1fr;
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .adventures-section {
        padding: 3rem 1.5rem;
    }

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

    .adventure-content {
        padding: 1.5rem 2rem 2rem;
    }

    .adventure-title {
        font-size: 1.5rem;
    }

    .adventure-image {
        height: 250px;
    }
}

/* Experience New Zealand's Wild Rivers Section */

.experience-section {
    position: relative;
    padding: 0;
    background-color: #f8f8f8;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    overflow: hidden;
}

.experience-container {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.experience-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

.experience-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}

.experience-text {
    font-size: 1.15rem;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.4);
}

.experience-highlight {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 12px;
    color: #0f4c75;
    text-align: center;
    margin-top: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.experience-highlight p {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c2c2c;
}

.experience-highlight p:last-child {
    margin-bottom: 0;
    font-style: italic;
    color: #0f4c75;
}

.experience-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.experience-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 76, 117, 0.3), rgba(27, 108, 168, 0.4));
    z-index: 2;
}

.experience-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Placeholder styling if no image */
.experience-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #a8d5e2 0%, #7ba05b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .experience-container {
        min-height: 500px;
    }

    .experience-content {
        padding: 3rem 1.5rem;
    }

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

    .experience-text {
        font-size: 1rem;
    }

    .experience-highlight {
        padding: 2rem 1.5rem;
    }

    .experience-highlight p {
        font-size: 1.1rem;
    }
}

/* Small Local Unforgettable Section */

.about-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #7aac35 0%, #649629 50%, #4d7520 100%);
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-left {
    display: flex;
    flex-direction: column;
}

.about-header {
    margin-bottom: 3rem;
}

.about-main-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.about-intro {
    font-size: 1.15rem;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-tagline {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 2.5rem 0;
}

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

.stat-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgb(78 123 26 / 60%);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(100, 150, 41, 0.7);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: 400;
    color: #ffffff;
}

.why-choose-section {
    background: rgb(78 123 26 / 60%);
    padding: 2.5rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.why-choose-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.feature-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design */
@media (max-width: 968px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 3rem 1.5rem;
    }

    .about-main-title {
        font-size: 2rem;
    }

    .about-intro {
        font-size: 1rem;
    }

    .about-tagline {
        font-size: 1.1rem;
    }

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

    .stat-number {
        font-size: 2rem;
    }

    .why-choose-section {
        padding: 2rem 1.5rem;
    }

    .why-choose-title {
        font-size: 1.6rem;
    }
}

.social-links .card-body {
    background: #59a398;
    color: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    margin: 3rem 0;
    text-align: center;
}
.social-links img {
    margin: 10px;
}

.social-links .card-body {
    margin: revert !important;
}

.social-links img:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}
    * {
      box-sizing: border-box;
    }


    .slideshow-container {
    position: relative;
    max-width: 100%;
    height: 60vh;
    overflow: hidden;
    margin-bottom: 50px;
    }

    .mySlides {
      position: absolute;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 1s ease-in-out;
    }

    .mySlides img {
    width: auto;
    height: 100%;
    object-fit: cover;
    }

    .mySlides.active {
      opacity: 1;
      z-index: 1;
    }
    
.hero-section {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  max-width: none;
  box-sizing: border-box;
}

/* --- Blockquote --- */
cite {
    color: #00aecf;
    font-size: 2em;
    font-family: 'Merienda';
	margin: 20px 0px;
}
blockquote {
    font-style: italic;
}
@media (min-width: 991.98px) {
.blog-item {
    overflow: unset;
}
}

.river-promo {
  background-color: #f7f9fc;
  border: 1px solid #e0eeb5;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.river-promo h2 {
  color: #008080;
  font-weight: 700;
}

.river-promo p {
  color: #444;
  max-width: 700px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.river-promo .btn-primary {
  background-color: #008080;
  border: none;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.river-promo .btn-primary:hover {
  background-color: #007070;
  transform: translateY(-2px);
}

/* ====================================
   Locations
   ==================================== */


    .river-hero {
      background: url('/images/upper-grey-hero.jpg') center/cover no-repeat;
      color: #fff;
      text-align: center;
      padding: 100px 20px;
      position: relative;
    }

    .river-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.4);
    }

    .river-hero h1 {
      position: relative;
      font-size: 2.8rem;
      font-weight: 700;
      z-index: 2;
      color: #fff;
      margin-bottom: 10px;
    }

    .river-hero p {
      position: relative;
      font-size: 1.2rem;
      max-width: 700px;
      margin: 0 auto;
      z-index: 2;
      color: #f0f0f0;
    }

    .river-content {
      max-width: 960px;
      margin: 0 auto;
      padding: 3rem 1.5rem;
    }

    .river-content h2 {
      color: #008080;
      font-size: 1.75rem;
      margin-top: 2rem;
      margin-bottom: 1rem;
    }

    .river-content p {
      line-height: 1.7;
      margin-bottom: 1.2rem;
      color: #444;
    }

    .river-content ul {
      margin-left: 1.5rem;
      margin-bottom: 1.5rem;
    }

    .river-content li {
      margin-bottom: 0.5rem;
      line-height: 1.6;
    }

    .cta-section {
      text-align: center;
      margin-top: 3rem;
    }

    .btn-primary {
      background-color: #008080;
      border: none;
      color: #fff;
      padding: 0.9rem 1.8rem;
      border-radius: 8px;
      font-weight: 600;
      text-decoration: none;
      transition: background-color 0.2s ease, transform 0.2s ease;
      display: inline-block;
    }

    .btn-primary:hover {
      background-color: #007070;
      transform: translateY(-2px);
    }

    @media (max-width: 768px) {
      .river-hero {
        padding: 70px 20px;
      }
      .river-hero h1 {
        font-size: 2rem;
      }
    }

.youtube-responsive-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 10px; /* optional, for softer corners */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); /* optional styling */
  margin: 1.5rem 0;
}

.youtube-responsive-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
