:root {
    --nav-bg: #1f2a32;
    --orange: #f7931e;
    --green: #28a745;
    --text-dark: #222;
}

/* Global */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
}

/* Navbar */
.navbar {
    background: var(--nav-bg);
    padding: 14px 0;
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 22px;
}

.nav-link {
    color: #ddd !important;
    font-size: 14px;
    font-weight: 500;
    margin-right: 15px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--orange) !important;
}

.btn-quote {
    background: var(--green);
    color: #fff;
    font-size: 14px;
    padding: 8px 18px;
}

/* Hero */
.hero {
    height: 100vh;
    background:
        linear-gradient(to right, rgba(0,0,0,0.65), rgba(0,0,0,0.2)),
        url('../images/hero.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 700;
    max-width: 600px;
}

.hero p {
    font-size: 16px;
    margin: 15px 0;
}

.btn-explore {
    background: var(--orange);
    color: #000;
    font-weight: 600;
    padding: 12px 26px;
}

/* Features */
.features-bar {
    background: linear-gradient(to right, #1b1f23, #2c3035);
    padding: 25px 0;
    color: #fff;
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

.feature-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.95;
}

.feature-item i {
    font-size: 18px;
}

/* Tours */
.tours {
    padding: 50px 0;
    background: #f4f6f8;
}

.tours h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.tour-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.tour-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.tour-card h5 {
    padding: 14px;
    font-size: 15px;
    font-weight: 600;
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 30px rgba(0,0,0,0.18);
}

/* Footer */
.footer {
    background: #111;
    color: #aaa;
    font-size: 13px;
    text-align: center;
    padding: 14px;
}

.footer {
    background: #1c252d;
    color: #cfcfcf;
    padding: 50px 0 20px;
    font-size: 14px;
}

.footer h4,
.footer h5 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer p {
    line-height: 1.7;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 8px;
}

.footer ul li a {
    color: #cfcfcf;
    text-decoration: none;
    transition: 0.3s;
}

.footer ul li a:hover {
    color: #f7931e;
    padding-left: 5px;
}

.footer-col {
    margin-bottom: 25px;
}

/* Social Icons */
.social-icons a {
    display: inline-block;
    margin-right: 10px;
    font-size: 18px;
    color: #ffffff;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #f7931e;
    transform: translateY(-3px);
}

.footer hr {
    border-color: rgba(255,255,255,0.1);
    margin: 30px 0 15px;
}

.footer-bottom {
    font-size: 13px;
    color: #aaaaaa;
}
.brand-logo {
    height: 80px;          /* adjust if needed */
    width: auto;
}