/*
Theme Name: Exceed Expectations Tours
Author: Exceed Expectations Tours
Description: Clean custom theme for Exceed Expectations Tours.
Version: 1.0
*/

/* RESET */

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
}

body {
    background: #ffffff;
    color: #263129;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}


/* =========================================
   GLOBAL
========================================= */

.ee-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}


/* =========================================
   HEADER
========================================= */

.ee-site-header {
    width: 100%;
    position: relative;
    z-index: 1000;
}


/* TOP BAR */

.ee-topbar {
    width: 100%;
    background: #10291f;
    color: #ffffff;
}

.ee-topbar-inner {
    min-height: 38px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ee-topbar-left,
.ee-topbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ee-topbar-item {
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
}

.ee-topbar-item:hover {
    color: #c99a4a;
}

.ee-follow {
    color: #aaa;
    font-size: 11px;
}

.ee-social {
    width: 25px;
    height: 25px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.3);
    border-radius: 50%;

    color: #fff;
    text-decoration: none;

    font-size: 11px;
}

.ee-social:hover {
    background: #c99a4a;
    border-color: #c99a4a;
    color: #10291f;
}


/* MAIN HEADER */

.ee-main-header {
    width: 100%;
    background: #ffffff;
}

.ee-header-inner {
    min-height: 80px;

    display: flex;
    align-items: center;
}


/* LOGO */

.ee-logo {
    margin-right: auto;
}

.ee-logo a {
    text-decoration: none;
}

.ee-logo-main {
    display: block;

    color: #ffffff;

    font-family: Georgia, serif;
    font-size: 20px;
    font-weight: bold;

    letter-spacing: 1px;
}

.ee-logo-sub {
    display: block;

    margin-top: 4px;

    color: #c99a4a;

    font-size: 8px;
    font-weight: bold;

    letter-spacing: 3px;
}

.ee-logo img {
    max-height: 60px;
    width: auto;
}


/* NAV */

.ee-navigation {
    margin-left: auto;
}

.ee-menu {
    display: flex;
    align-items: center;

    margin: 0;
    padding: 0;

    list-style: none;

    gap: 25px;
}

.ee-menu li {
    position: relative;
}

.ee-menu a {
    display: block;

    padding: 28px 0;

    color: #ffffff;

    text-decoration: none;

    font-size: 13px;
    font-weight: 600;
}

.ee-menu a:hover {
    color: #c99a4a;
}


/* DROPDOWN */

.ee-menu .sub-menu {
    position: absolute;

    top: 100%;
    left: 0;

    min-width: 200px;

    margin: 0;
    padding: 8px 0;

    background: #ffffff;

    list-style: none;

    box-shadow: 0 10px 25px rgba(0,0,0,.15);

    display: none;
}

.ee-menu li:hover > .sub-menu {
    display: block;
}

.ee-menu .sub-menu a {
    padding: 10px 18px;
    color: #173b2b;
}

.ee-menu .sub-menu a:hover {
    background: #f5f1e7;
    color: #c99a4a;
}


/* CTA */

.ee-header-cta {
    margin-left: 25px;
}

.ee-header-cta a {
    display: block;

    padding: 12px 18px;

    background: #c99a4a;

    color: #10291f;

    text-decoration: none;

    font-size: 11px;
    font-weight: bold;

    letter-spacing: 1px;
}

.ee-header-cta a:hover {
    background: #ffffff;
}


/* MOBILE BUTTON */

.ee-mobile-toggle {
    display: none;

    border: 0;
    background: transparent;

    cursor: pointer;
}

.ee-mobile-toggle span {
    display: block;

    width: 26px;
    height: 2px;

    margin: 5px 0;

    background: #ffffff;
}


/* MOBILE MENU */

.ee-mobile-menu {
    display: none;

    width: 100%;

    background: #10291f;

    padding: 15px 25px 25px;
}

.ee-mobile-menu.active {
    display: block;
}

.ee-mobile-nav {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ee-mobile-nav li {
    list-style: none;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.ee-mobile-nav a {
    display: block;

    padding: 13px 0;

    color: #ffffff;

    text-decoration: none;
}


/* =========================================
   MAIN CONTENT
========================================= */

#content {
    width: 100%;
    margin: 0;
    padding: 0;
}

.ee-main-content {
    width: 100%;
    margin: 0;
    padding: 0;
}


/* =========================================
   HOME PAGE
========================================= */

.ee-home-section {
    width: 100%;
    padding: 80px 0;
}

.ee-home-section.cream {
    background: #f7f3e8;
}

.ee-home-heading {
    max-width: 750px;

    margin: 0 auto 40px;

    text-align: center;
}

.ee-home-heading .eyebrow {
    color: #c99a4a;

    font-size: 11px;
    font-weight: bold;

    letter-spacing: 2px;
}

.ee-home-heading h1,
.ee-home-heading h2 {
    margin: 10px 0 15px;

    color: #173b2b;

    font-family: Georgia, serif;

    line-height: 1.2;
}

.ee-home-heading h2 {
    font-size: 42px;
}

.ee-home-heading p {
    color: #68736c;
}


/* =========================================
   HERO
========================================= */

.ee-hero {
    width: 100%;
    min-height: 650px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(10,35,24,.82),
            rgba(10,35,24,.25)
        ),
        url("assets/images/hero-safari.jpg")
        center / cover no-repeat;
}

.ee-hero-inner {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    padding: 120px 25px 80px;
}

.ee-hero-label {
    color: #c99a4a;

    font-size: 12px;
    font-weight: bold;

    letter-spacing: 3px;
}

.ee-hero h1 {
    max-width: 750px;

    margin: 15px 0;

    color: #ffffff;

    font-family: Georgia, serif;

    font-size: 64px;
    line-height: 1.05;
}

.ee-hero p {
    max-width: 600px;

    color: #ffffff;

    font-size: 17px;
}

.ee-button {
    display: inline-block;

    padding: 14px 22px;

    text-decoration: none;

    font-size: 11px;
    font-weight: bold;

    letter-spacing: 1px;
}

.ee-button-gold {
    background: #c99a4a;
    color: #10291f;
}

.ee-button-outline {
    margin-left: 10px;

    border: 1px solid #ffffff;

    color: #ffffff;
}


/* =========================================
   CARDS
========================================= */

.ee-card-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

.ee-card {
    background: #ffffff;

    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

.ee-card-image {
    width: 100%;
    height: 240px;

    overflow: hidden;
}

.ee-card-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.ee-card-body {
    padding: 25px;
}

.ee-card-body h3 {
    margin: 0 0 10px;

    color: #173b2b;

    font-family: Georgia, serif;

    font-size: 24px;
}

.ee-card-body p {
    color: #68736c;
    font-size: 14px;
}

.ee-card-link {
    color: #c99a4a;

    text-decoration: none;

    font-size: 11px;
    font-weight: bold;

    text-transform: uppercase;
}


/* =========================================
   PAGE CONTENT
========================================= */

.ee-page {
    width: 100%;
    padding: 80px 0;
}

.ee-page-inner {
    width: 100%;
    max-width: 900px;

    margin: 0 auto;

    padding: 0 25px;
}

.ee-page-title {
    margin: 0 0 30px;

    color: #173b2b;

    font-family: Georgia, serif;

    font-size: 48px;
}


/* =========================================
   FOOTER
========================================= */

.site-footer {
    width: 100%;

    margin: 0;

    background: #10291f;

    color: #ffffff;

    clear: both;
}

.ee-footer-main {
    width: 100%;
    padding: 60px 0 40px;
}

.ee-footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr 1fr;

    gap: 40px;
}

.ee-footer-column h3 {
    margin: 0 0 15px;

    color: #ffffff;

    font-size: 14px;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.ee-footer-column p,
.ee-footer-column li {
    color: rgba(255,255,255,.65);

    font-size: 13px;
}

.ee-footer-column ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.ee-footer-column li {
    margin-bottom: 8px;
}

.ee-footer-column a {
    color: rgba(255,255,255,.65);

    text-decoration: none;
}

.ee-footer-column a:hover {
    color: #c99a4a;
}

.ee-footer-logo-main {
    display: block;

    color: #ffffff;

    font-family: Georgia, serif;

    font-size: 20px;
    font-weight: bold;
}

.ee-footer-logo-sub {
    display: block;

    margin-top: 5px;

    color: #c99a4a;

    font-size: 8px;

    letter-spacing: 3px;
}

.ee-footer-bottom {
    width: 100%;

    border-top:
        1px solid rgba(255,255,255,.1);

    padding: 20px 0;
}

.ee-footer-bottom-inner {
    display: flex;

    justify-content: space-between;
}

.ee-copyright {
    color: rgba(255,255,255,.45);

    font-size: 11px;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 900px) {

    .ee-topbar {
        display: none;
    }

    .ee-navigation,
    .ee-header-cta {
        display: none;
    }

    .ee-mobile-toggle {
        display: block;
    }

    .ee-header-inner {
        min-height: 70px;
    }

    .ee-hero {
        min-height: 600px;
    }

    .ee-hero h1 {
        font-size: 45px;
    }

    .ee-card-grid {
        grid-template-columns: 1fr;
    }

    .ee-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}


@media (max-width: 600px) {

    .ee-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .ee-hero-inner {
        padding-left: 20px;
        padding-right: 20px;
    }

    .ee-hero h1 {
        font-size: 38px;
    }

    .ee-button-outline {
        margin-left: 0;
        margin-top: 10px;
    }

    .ee-footer-grid {
        grid-template-columns: 1fr;
    }

    .ee-footer-bottom-inner {
        flex-direction: column;
        gap: 10px;
    }
}
