/* --------------------------------------------------------------
   ROUTE56 ADVENTURES – VIBRANT ADVENTURE THEME (ADD-ON)
----------------------------------------------------------------*/

/* ----------- GLOBAL LOOK (Adventure Variant) ----------- */
:root {
    --adventure-green: #1e7a46;
    --adventure-red: #c0392b;
    --adventure-blue: #145c8f;
    --adventure-yellow: #f2b632;

    --section-bg-light: #ffffff;
    --section-bg-alt: #f0f4f7;
}

/* Global Section Padding */
section,
.page-section {
    padding: 60px 7%;
}

/* Global Section Titles */
.section-title,
.page-header h1 {
    font-size: 40px;
    color: var(--dark-blue);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-title::after,
.page-header h1::after {
    content: "";
    width: 80px;
    height: 4px;
    background: var(--gold);
    display: block;
    margin: 12px auto 0;
    border-radius: 3px;
}

/* --------------------------------------------------------------
   PAGE HEADER BANNERS
-------------------------------------------------------------- */
.page-header {
    background: url('/assets/images/header-bg.jpg') center/cover no-repeat;
    padding: 100px 7%;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    color: var(--white);
}

.page-header p {
    font-size: 20px;
    margin-top: 10px;
}

/* --------------------------------------------------------------
    CARD GRID (used on multiple pages)
-------------------------------------------------------------- */
.card-grid,
.team-grid,
.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
}

.card,
.value-card,
.team-member,
.event-card {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
}

/* Card Hover */
.card:hover,
.value-card:hover,
.team-member:hover,
.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* Card Images */
.card img,
.value-card img,
.team-member img,
.event-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 18px;
}

/* Titles */
.card h3,
.value-card h3,
.event-card h3 {
    font-size: 22px;
    color: var(--dark-blue);
    margin-bottom: 12px;
}

/* --------------------------------------------------------------
    INFO BLOCKS (used in 'Plan Your Trip' + Corporate pages)
-------------------------------------------------------------- */
.info-block {
    background: var(--section-bg-alt);
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.info-block h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--adventure-blue);
}

.info-block p {
    margin-bottom: 10px;
    line-height: 1.7;
}

/* Bullet list styling */
.info-block ul {
    margin-left: 20px;
    margin-top: 10px;
}

.info-block ul li {
    margin-bottom: 8px;
}

/* --------------------------------------------------------------
    EVENT CARDS — Adventure Look
-------------------------------------------------------------- */
.event-card {
    border-left: 6px solid var(--adventure-yellow);
}

.event-card .date {
    font-size: 14px;
    font-weight: bold;
    color: var(--adventure-red);
    margin-bottom: 12px;
}

/* --------------------------------------------------------------
    TIMELINE (Corporate Process)
-------------------------------------------------------------- */
.timeline {
    position: relative;
    margin: 60px 0;
    padding-left: 40px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gold);
    border-radius: 2px;
}

.timeline-item {
    margin-bottom: 40px;
    position: relative;
}

.timeline-item::before {
    content: "";
    width: 18px;
    height: 18px;
    background: var(--white);
    border: 3px solid var(--gold);
    border-radius: 50%;
    position: absolute;
    left: -2px;
    top: 5px;
}

.timeline-item h3 {
    margin-bottom: 10px;
    color: var(--dark-blue);
    font-size: 22px;
}

.timeline-item p {
    line-height: 1.6;
}

/* --------------------------------------------------------------
    CTA BANNERS (used on most pages)
-------------------------------------------------------------- */
.cta-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.45),
            rgba(0, 0, 0, 0.45)),
        url('/assets/images/cta.jpg') center/cover no-repeat;
    padding: 80px 7%;
    color: var(--white);
    text-align: center;
    border-radius: 12px;
    margin: 60px 0;
}

.cta-banner h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-banner p {
    font-size: 18px;
    margin-bottom: 25px;
}

.cta-banner .btn {
    background: var(--gold);
    color: var(--dark-blue);
    padding: 14px 28px;
}

/* --------------------------------------------------------------
   MOBILE OPTIMISATION
-------------------------------------------------------------- */
@media (max-width: 768px) {
    .page-header {
        padding: 60px 5%;
    }

    .section-title {
        font-size: 32px;
    }

    .cta-banner {
        padding: 50px 5%;
    }
}