/* ========================================================================
   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 {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    border-bottom: 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)
   ==================================== */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.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: center;
}

.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(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: 12px;
}

.trip-detail-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s;
}

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

.trip-detail-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.trip-detail-label {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.trip-detail-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* ====================================
   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;
}

/* ====================================
   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;
}*/


/* ====================================
   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. RESPONSIVE ADJUSTMENTS
   ==================================== */

@media (max-width: 768px) {
    .adventure-choice-grid,
    .trip-details-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-price {
        font-size: 2rem;
    }
    
    .btn-booking-primary {
        width: 100%;
    }
}
