/* --------------------------------------------------------------
    ROUTE56 ADVENTURES – GLOBAL THEME (UPDATED)
----------------------------------------------------------------*/

/* ----------- COLOUR PALETTE ----------- */
:root {
    --dark-blue: #0A2A43;
    --gold: #B9933B;
    --light-gold: #e8d3a4;
    --offwhite: #f7f7f7;
    --grey: #555;
    --white: #ffffff;
}

/* ----------- GLOBAL RESET ----------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: var(--offwhite);
    color: var(--dark-blue);
    line-height: 1.6;
}

/* ----------- GLOBAL LINK STYLES ----------- */
a {
    color: var(--gold);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: var(--light-gold);
}

/* --------------------------------------------------------------
   HEADER & NAVIGATION
-------------------------------------------------------------- */
header {
    background: var(--dark-blue);
    color: var(--white);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

header .logo img {
    height: 65px;
    position: relative;
    z-index: 1001;
    border-radius: 20px;
}
.logo p {
    color: #B9933B;
}


/* Mobile Menu Toggle Button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--gold);
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: var(--gold);
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    padding: 8px 12px;
    display: block;
}

nav ul li a:hover {
    color: var(--light-gold);
    background: rgba(185, 147, 59, 0.1);
    border-radius: 4px;
}

/* --------------------------------------------------------------
   HERO SECTION
-------------------------------------------------------------- */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('/assets/images/hero.jpg') center/cover no-repeat;
    padding: 120px 5%;
    color: var(--white);
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero p {
    font-size: 22px;
    margin: 15px 0 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.hero .btn {
    margin: 10px;
}

/* --------------------------------------------------------------
   BUTTONS
-------------------------------------------------------------- */
.btn,
.btn-small {
    background: var(--gold);
    color: var(--dark-blue);
    padding: 12px 22px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.btn-small {
    padding: 8px 16px;
    font-size: 14px;
}

.btn:hover,
.btn-small:hover {
    background: var(--light-gold);
    color: var(--dark-blue);
}

/* --------------------------------------------------------------
   PAGE TITLES
-------------------------------------------------------------- */
.page-title {
    text-align: center;
    margin: 40px 0 20px;
    font-size: 34px;
    color: var(--dark-blue);
}

/* --------------------------------------------------------------
   PAGE HEADER (for internal pages)
-------------------------------------------------------------- */
.page-header {
    background: linear-gradient(rgba(10, 42, 67, 0.8), rgba(10, 42, 67, 0.8)),
        url('/assets/images/header-bg.jpg') center/cover no-repeat;
    padding: 100px 7%;
    text-align: center;
    color: var(--white);
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 40px;
    color: var(--white);
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-header p {
    font-size: 20px;
    margin-top: 10px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* --------------------------------------------------------------
   CONTENT SECTIONS (for inner page content)
-------------------------------------------------------------- */
.content-section {
    padding: 50px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 32px;
    color: var(--dark-blue);
    margin-bottom: 20px;
    border-bottom: 3px solid var(--gold);
    padding-bottom: 10px;
}

.content-section h3 {
    font-size: 24px;
    color: var(--dark-blue);
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-section p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 16px;
}

.content-section ul,
.content-section ol {
    margin: 20px 0 20px 30px;
    line-height: 1.8;
}

.content-section li {
    margin-bottom: 10px;
}

/* Content boxes for highlighting important info */
.info-box {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin: 30px 0;
    border-left: 5px solid var(--gold);
}

.info-box h3 {
    margin-top: 0;
    color: var(--dark-blue);
}

/* --------------------------------------------------------------
   FEATURE CARDS (for home page features)
-------------------------------------------------------------- */
.features-section {
    padding: 60px 5%;
    background: var(--white);
}

.features-section h2 {
    text-align: center;
    font-size: 36px;
    color: var(--dark-blue);
    margin-bottom: 40px;
}

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

.feature-card {
    background: var(--offwhite);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--gold);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    border-top-color: var(--light-gold);
}

.feature-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 3px solid var(--gold);
}

.feature-card h3 {
    font-size: 22px;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.feature-card p {
    line-height: 1.7;
    color: var(--grey);
}

/* --------------------------------------------------------------
   SERVICE CARDS (for services sections)
-------------------------------------------------------------- */
.services-section {
    padding: 60px 5%;
    background: var(--offwhite);
}

.services-section h2 {
    text-align: center;
    font-size: 36px;
    color: var(--dark-blue);
    margin-bottom: 40px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--light-gold));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    color: var(--dark-blue);
    margin-bottom: 12px;
}

.service-card p {
    line-height: 1.7;
    color: var(--grey);
    margin-bottom: 15px;
}

/* --------------------------------------------------------------
   INFO BLOCKS (for detailed content sections)
-------------------------------------------------------------- */
.info-blocks-section {
    padding: 60px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.info-block {
    background: var(--white);
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    border-left: 6px solid var(--gold);
    transition: all 0.3s ease;
}

.info-block:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    transform: translateX(5px);
}

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

.info-block h3 {
    font-size: 22px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--dark-blue);
}

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

.info-block ul {
    margin-left: 20px;
    margin-top: 10px;
}

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

/* --------------------------------------------------------------
   FEATURED TOURS SECTION
-------------------------------------------------------------- */
.featured-tours {
    padding: 50px 5%;
    text-align: center;
}

.featured-tours h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-gap: 30px;
}

/* TOUR CARD */
.tour-card {
    background: var(--white);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: 0.3s;
}

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

.tour-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 15px;
}

.tour-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-blue);
}

.tour-card a {
    color: var(--gold);
    font-weight: bold;
}

.tour-card a:hover {
    color: var(--light-gold);
}

/* --------------------------------------------------------------
    TOUR LIST PAGE
-------------------------------------------------------------- */
.tour-list {
    padding: 40px 5%;
}

.tour-row {
    background: var(--white);
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    display: flex;
    gap: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.tour-row img {
    width: 40%;
    border-radius: 8px;
    object-fit: cover;
}

.tour-row h2 {
    margin-bottom: 10px;
    color: var(--dark-blue);
}

.tour-row p {
    margin-bottom: 10px;
}

/* --------------------------------------------------------------
    TOUR DETAILS PAGE
-------------------------------------------------------------- */
.tour-details {
    padding: 40px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.tour-banner {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 25px;
}

.tour-details h1 {
    font-size: 36px;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.tour-details h2 {
    font-size: 28px;
    color: var(--dark-blue);
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 8px;
}

.tour-details p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.tour-details ul {
    margin: 20px 0 20px 30px;
    line-height: 1.8;
}

.tour-details li {
    margin-bottom: 10px;
}

/* --------------------------------------------------------------
    CONTACT FORM
-------------------------------------------------------------- */
.contact-form {
    width: 60%;
    margin: 0 auto 60px;
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-form label {
    font-weight: bold;
    margin-top: 12px;
    display: block;
    color: var(--dark-blue);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-top: 6px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: Arial, Helvetica, sans-serif;
}

.contact-form button {
    width: 100%;
}

/* --------------------------------------------------------------
   FOOTER
-------------------------------------------------------------- */
footer {
    background: var(--dark-blue);
    color: var(--white);
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

footer a {
    color: var(--gold);
}

footer a:hover {
    color: var(--light-gold);
}
.footer-block ul {
    list-style: none;
    padding-left: 0;
    /* keeps the shape clean */
    margin: 0;
}

.footer-block ul li {
    margin-bottom: 6px;
    /* optional: keeps spacing between links */
}
/* --------------------------------------------------------------
   RESPONSIVE ADJUSTMENTS
-------------------------------------------------------------- */
@media (max-width: 768px) {

    /* Mobile Menu Toggle */
    .menu-toggle {
        display: block;
    }

    /* Mobile Navigation */
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--dark-blue);
        transition: right 0.3s ease;
        z-index: 1000;
        padding-top: 80px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }

    nav ul li {
        margin-left: 0;
        margin-bottom: 10px;
        width: 100%;
    }

    nav ul li a {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(185, 147, 59, 0.2);
        width: 100%;
    }

    /* Menu toggle animation */
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    /* Overlay when menu is open */
    body.menu-open::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    /* Smaller logo on mobile */
    header .logo img {
        height: 50px;
    }

    /* Tour rows stack on mobile */
    .tour-row {
        flex-direction: column;
    }

    .tour-row img {
        width: 100%;
    }

    /* Contact form full width on mobile */
    .contact-form {
        width: 90%;
    }

    /* Hero text sizing */
    .hero {
        padding: 80px 5%;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 18px;
    }

    .hero .btn {
        display: block;
        margin: 10px auto;
        max-width: 250px;
    }

    /* Page header mobile */
    .page-header {
        padding: 60px 5%;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .page-header p {
        font-size: 16px;
    }

    /* Content sections */
    .content-section {
        padding: 30px 5%;
    }

    .features-section,
    .services-section,
    .info-blocks-section {
        padding: 40px 5%;
    }

    /* Card grids adjust */
    .feature-grid,
    .service-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /* Info block mobile */
    .info-block {
        padding: 25px 20px;
    }
}