/*
Theme Name: Everest Escapes
Author: Shirish Dhungel
Author URI: https://shirishdhungel.com.np/
Description: Custom theme for EverestEscapes.com
Version: 1.5
Text Domain: everestescapes
*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700&display=swap');
:root {
    --primary-color: #004aad;
    --secondary-color: #000;
    --text-color: #000;
    --background-color: #fff;
    --heading-font: 'Inter', sans-serif;
    --body-font: 'Inter', sans-serif;
}
body {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 22px;
    color: var(--text-color);
    background-color: var(--background-color);
    padding: 0;
    margin: 0;
}
header {
    color: #fff;
    border-bottom: 2px solid var(--primary-color);
    position: relative;
}
.top-header {
    background-color: var(--primary-color);
    padding: 10px 0;
    display: block;
}
.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.top-header .social-icons {
    display: flex;
    align-items: center;
}
.top-header .social-icons .social-icon {
    color: white;
    margin-right: 15px;
    font-size: 13px;
    text-align: left;
}
.top-header .header-contact {
    display: flex;
    align-items: center;
    text-align: right;
}
.top-header .header-contact a {
    color: white;
    margin-left: 20px;
    font-size: 13px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.top-header .header-contact svg {
    width: 16px;
    height: 16px;
    fill: white;
    vertical-align: middle;
}
.top-header .call-icon {
    display: inline-flex;
    align-items: center;
}
.top-header .call-icon i {
    margin-right: 5px;
}
@media (max-width: 767px) {
    .top-header {
        display: none;
    }
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.logo img {
    height: 90px;
    width: auto;
    user-select: none;
}
nav {
    background-color: #fff;
}
.menu {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
}
.menu li {
    margin-left: 20px;
    position: relative;
}
.menu li a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    padding: 10px;
    display: block;
    transition: color 0.3s ease;
}
.menu li a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}
.menu li ul {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    list-style: none;
    padding: 0;
    margin: 0;
}
.menu li ul li {
    width: 100%;
}
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100%;
    background-color: #fff;
    color: #000;
    z-index: 999;
    padding-top: 50px;
    transition: right 0.3s ease-in-out;
    box-shadow: -5px 0 10px rgba(0, 0, 0, 0.2);
}
.mobile-menu.active {
    right: 0;
}
.mobile-menu .menu {
    display: block;
    padding: 20px;
}
.mobile-menu .menu li {
    margin: 20px 0;
}
.mobile-menu .menu li a {
    color: #000;
    font-size: 20px;
    text-decoration: none;
    display: block;
    padding: 10px;
    transition: color 0.3s ease;
}
.mobile-menu .menu li a:hover {
    color: var(--primary-color);
}
.hamburger-menu {
    display: none;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 1000;
    width: 35px;
    height: 30px;
    cursor: pointer;
}
.hamburger-menu .bar {
    width: 100%;
    height: 4px;
    background-color: var(--primary-color);
    margin: 6px 0;
    transition: 0.3s;
}
.hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}
.hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
}
.hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}
@media screen and (max-width: 768px) {
    .container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    .logo {
        order: 1;
    }
    .main-nav {
        display: none;
    }
    .hamburger-menu {
        display: block;
    }
}
@media (max-width: 768px) {
    .direct-call {
        display: none;
    }
}
.footer-image img {
    width: 100%;
    height: auto;
    pointer-events: none;
    user-select: none;
    border-bottom: 2px solid var(--primary-color);
}
footer {
    color: var(--text-color, #333);
    font-size: 14px;
    text-align: center;
}
.first-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.first-footer .left {
    display: flex;
    align-items: center;
    text-align: left;
}
.first-footer .footer-logo img {
    height: 100px;
    margin-right: 15px;
    pointer-events: none;
    user-select: none;
}
.first-footer .footer-text {
    max-width: 400px;
}
.first-footer .right {
    display: flex;
    gap: 15px;
}
.first-footer .social-icon {
    color: var(--primary-color);
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s ease;
}
.first-footer .social-icon:hover {
    color: var(--secondary-color);
}
.second-footer {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5px 20px;
}
.footer-column {
    flex: 1;
    text-align: left;
    padding: 10px;
}
.footer-column h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--primary-color);
}
.footer-column ul {
    list-style: none;
    padding: 0;
}
.footer-column ul li {
    margin-bottom: 5px;
}
.footer-column ul li a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-column ul li a:hover {
    color: var(--primary-color);
}
.third-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
}
.third-footer a {
	color: var(--primary-color);
	text-decoration: none;
}
.third-footer a:hover {
	text-decoration: underline;
}
.third-footer .left img,
.third-footer .right img {
    max-height: 50px;
    pointer-events: none;
    user-select: none;
}
.third-footer .center {
    flex: 1;
}
@media screen and (max-width: 768px) {
    .first-footer, .second-footer, .third-footer {
        flex-direction: column;
        text-align: center;
    }
    .first-footer .left {
        flex-direction: column;
        align-items: center;
    }
    .first-footer .footer-logo img {
        margin-bottom: 10px;
    }
}