/*HEADRER START*/

.modal-dialog-centered {
    justify-content: center;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
    z-index: 1040;
    display: none;
    transition: opacity 0.3s ease;
}

.overlay.show {
    display: block;
}

.main-header {
    box-shadow: rgba(33, 35, 38, 0.1) 0px 0px 10px 0px;
    background: rgba(255, 255, 255, 0.6);
}

.main-header .navbar {
    border-radius: 15px;
    padding: 0;
}

.main-header .header-nav {
    display: flex;
    justify-content: center;
}

.head-wrapper {
    overflow: visible;
    border-radius: 15px;
    height: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 10px;
}

.head-logo-section {
    display: flex;
    align-items: center;
    height: 80px;
}

.center-logo {
    border-radius: 500px;
    background: transparent;
    /*box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);*/
    transition: transform 0.3s ease;
    height: 80px;
    width: 125px;
}

.logo-img {
    background-color: transparent;
    border-radius: 25px;
    width: 140px;
    height: 80px;
}

.mobile-menu-container {
    position: relative;
}

.navbar-nav {
    border-radius: 15px;
    padding: 5px 20px 5px 20px;
}

@media (max-width: 1200px) {
    .navbar-nav {
        margin-top: 110px;
        border-radius: 15px;
        padding: 0;
    }

    .burger-logo-img {
        width: 55px;
    }
}

.navbar-nav .nav-link {
    color: #515251;
    font-weight: 500;
    padding: 0.75rem 1rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: #A56F49;
}

.navbar-nav .nav-link {
    position: relative;
    overflow: hidden;
    color: #515251;
    transition: color 0.3s ease;
    border-radius: 5px;
    font-size: 18px;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: -4px;
    width: 0%;
    height: 1px;
    background-color: #588E80;
    transition: width 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    visibility: hidden;
    transform: scaleY(0.5);
    transform-origin: bottom;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
    opacity: 1;
    visibility: visible;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-item:hover > .nav-link {
    background-color: #f6f6f6;
}

.navbar-nav .nav-link:hover {
    color: #588E80;
}

.navbar-toggler {
    border: none;
    /*background-color: #F6EFE5;*/
}

.nav-arrow svg {
    transition: transform 0.3s ease, stroke 0.3s ease;
    transform: rotate(0deg);
}

.navbar-nav .nav-item {
    position: relative;
    /*padding-right: 25px;*/
    padding-right: 30px;
}

/*line between navitems in menu*/

.navbar-nav .nav-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 7px;
    left: -10px;
    height: 75%;
    width: 1px;
    background-color: #c1c1c1;
    transform: translateX(50%);
}

.nav-item.dropdown:hover .nav-arrow svg {
    transform: rotate(180deg);
    stroke: #588E80;
}

@media (max-width: 1200px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 390px;
        background-color: #F6EFE5;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        transition: right 0.3s ease;
        z-index: 1050;
    }

    .navbar-collapse.show {
        right: 0;
    }

    .navbar-toggler {
        z-index: 999;
    }

    .navbar-nav .nav-item:not(:last-child) {
        border-bottom: 1px solid #dfdfdf;
    }

    .navbar-nav .nav-link {
        margin-left: 20px;
        font-size: 16px;
    }

    .nav-item.dropdown:hover .dropdown-menu {
        margin-left: 20px;
    }

    .navbar-collapse .center-logo {
        position: absolute;
        top: 5px;
        right: 96px;
    }

    .navbar-collapse .center-logo .logo-img {
        width: 110px;
        height: auto;
    }
}

#closeBtn {
    position: absolute;
    width: 14px;
    height: 25px;
    top: 5px;
    left: 5px;
    z-index: 3;
    border: none;
    border-radius: 50%;
    opacity: 1;
}

#closeBtn svg {
    position: absolute;
    left: 4px;
    top: 5px;
    width: 22px;
    fill: rgb(165, 111, 73);
}

.contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding-top: 24px;
    border-top: 1px solid #dfdfdf;
    text-align: center;
    font-size: 14px;
    color: #515251;
}

.contact-info svg {
    width: 17px;
}

.mega-menu {
    /*width: 300px;*/
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: rgba(33, 35, 38, 0.1) 0px 0px 10px 0px;

}

.dropdown-menu .dropdown-img {
    margin-top: 15px;
}

.dropdown-item {
    position: relative;
    transition: color 0.3s ease;
    font-weight: 500;
}

.dm-tour-profile-button ul li:last-child a {
    color: #dc3545;
}

.dropdown-menu {
    border-radius: 15px;
}

/*.nav-item .dropdown-menu .dropdown-item:before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    width: 8px;*/
/*    height: 8px;*/
/*    border-radius: 50%;*/
/*    right: -2px;*/
/*    top: 11px;*/
/*    background-color: #588E80;*/
/*}*/

.nav-item .nested-menu .dropdown-item {
    font-size: 14px;
    font-weight: 500;
    padding-right: 22px;
}

.nav-item .nested-menu .dropdown-item:before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    right: 8px;
    top: 12px;
    background-color: transparent;
    border: 2px solid #588E80;
}

.dropdown-item:hover {
    background-color: transparent !important;
    color: #588E80;
}

.search-container {
    position: relative;
}

.search-input {
    position: absolute;
    top: 110%;
    /*right: 0;*/
    left: 0;
    width: 180px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border-radius: 0.75rem;
    border: 1px solid #A56F49;
    background-color: #fff;
    padding: 6px 12px;
}

.search-input.active {
    opacity: 1;
    transform: translateY(15%);
    left: 5px;
    pointer-events: auto;
    border: 1px solid #A56F49;
}

@media (max-width: 950px) {
    .search-input {
        width: 150px;
    }

    .search-input.active {
        opacity: 1;
        transform: translate(-50%, 60%);
        /*right: -200px;*/
        left: 40px;
        pointer-events: auto;
        border: 1px solid #A56F49;
    }
}

.search-input:focus {
    outline: none;
    box-shadow: none;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    padding: 10px !important;
}


.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
}

.search-icon {
    cursor: pointer;
    color: #A56F49;
}

.profile-icon svg, .contact-icon svg,
.search-icon svg {
    transition: stroke 0.3s ease, color 0.3s ease;
}

.profile-icon svg:hover,
.contact-icon svg:hover,
.search-icon svg:hover {
    stroke: #588E80;
}

.profile-icon {
    text-decoration: none;
    color: rgb(81, 82, 81);
    transition: color 0.3s ease;
}

.profile-icon:hover {
    color: #588E80;
}

.mobile-menu-container {
    position: fixed;
    top: 0;
    right: 0;
    width: 210px;
    height: 100vh;
    background-color: #F6EFE5;
    z-index: 9999;
    transform: translateX(200%);
    transition: transform 0.3s ease;
    padding: 4rem 1rem 2rem;
    overflow-y: auto;
}

.mobile-menu-container.show {
    transform: translateX(0);
}

body.menu-open {
    overflow: hidden;
}

@media (max-width: 1200px) {
    .navbar-nav .nav-item:not(:last-child)::after {
        content: '';
        background-color: transparent;
    }
}


.menu-icons {
    order: 3;
}

.dm-mini-cart-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dm-cart-icon {
    stroke: #000;
    stroke-width: 1px;
    stroke-width: 1px;
    transition: stroke 0.3s ease;
}

.dm-cart-icon:hover {
    stroke: rgb(88, 142, 128);
}
.menu-icons svg {
    stroke: #000;
    transition: stroke 0.3s ease;
}
.dm-tour-profile-button svg {
    stroke: #000;
    stroke-width: 1px;
    transition: stroke 0.3s ease;
}

.dm-tour-profile-button svg:hover,
.menu-icons svg:hover {
    stroke: rgb(88, 142, 128);
}

.dm-tour-profile-button button:focus,
.dm-tour-profile-button button {
    outline: none;
    border: none;
}

.menu-icons .dropdown-center .dropdown-toggle {
    padding: 0;
}

#open-modal-btn {
    padding: 0;
}

.close-icon {
    background: none;
    border: none;
    padding: 0;
    position: absolute;
    top: 1rem;
    left: 1rem;
    cursor: pointer;
    z-index: 1001;
}

/*HEADRER END*/

.not-found {
    position: relative;
    overflow: hidden;
    /*background-color: #F6EFE5s;*/
    color: #515251;
    text-align: center;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}


.error-code {
    font-size: 200px;
    line-height: 1;
    font-weight: bold;
    color: #2e2e2e;
    text-shadow: -3px -3px 0 #A56F49;
    transition: all 0.3s ease;
    z-index: 1;
    position: relative;
}

.plane-icon {
    top: -20px;
    left: -40px;
}

.globe-icon {
    top: -20px;
    right: -40px;
}

.pin-icon {
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}


.error-message {
    color: #2e2e2e;
    font-size: 2rem;
    font-weight: bold;
}

.error-description {
    font-size: 1rem;
    margin: 1rem auto 2rem;
    max-width: 400px;
}

@media (max-width: 992px) {
    .error-code {
        font-size: 150px;
    }

    .error-message {
        font-size: 1.8rem;
    }

    .error-description {
        font-size: 0.8rem;
    }
}

.back-home {
    border: 1px solid #A56F49;
    background-color: transparent;
    color: #A56F49;
    border-radius: 50px;
    padding: 0.5rem 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.back-home:hover {
    background-color: #A56F49;
    color: #fff;
}

.light {
    width: 10px;
    height: 10px;
    background: red;
    border-radius: 50%;
    bottom: 295px;
    position: absolute;
    z-index: 10;
    left: 20px;
    animation: light 800ms ease-in-out 0s infinite alternate;
}

.plane-img {
    opacity: 0.5;
}

@keyframes fly-plane {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.4;
    }

    100% {
        transform: translate(500%, -100%) rotate(-10deg) scale(0.9);
        opacity: 0;
    }
}

.cloud {
    position: absolute;
    bottom: -100px;
    left: -150px;
    z-index: 1;
    animation: fly-plane 11s linear infinite;
    pointer-events: none;
}

.not-found-content {
    z-index: 2;
    position: relative;
    backdrop-filter: blur(3px);
    background-color: rgba(255, 255, 255, 0.3); /* soft glass tint */
    border-radius: 8px;
    padding: 2rem;
}

.not-found-img {
    width: 70px;
    height: 90px;
}

/*FOOTER START*/

.main-footer {
    border-radius: 15px 15px 0 0;
    background-color: #F6EFE5;
    color: #515251;
}

.footer-content {
    padding: 20px;
}

.footer-title {
    display: inline-block;
    border-bottom: 1px solid #515251;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    font-size: 14px;
    color: #515251;
    margin-bottom: 0.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #588E80;
}

.footer-text {
    /*margin-bottom: 13px;*/
    /*font-size: 16px;*/
}

.social-icons a {
    text-decoration: none;
}

.social-icons a i {
    color: #515251;
    font-size: 24px;
    transition: stroke 0.3s ease;
}

.footer-logo {
    display: block;
    width: 69px;
    height: 69px;
    transition: transform 0.3s ease;
    border-radius: 5px;
    border: 1px solid #dadada;
}

/*.footer-logo-enamad {*/
/*    width: 69px;*/
/*}*/

.footer-logo-wrapper {
    text-align: start;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 16px;
}

.footer-logo-img {
    width: 56px;
    height: auto;
    border-radius: 100px;
    background-color: white;
}

.footer-logo:hover {
    transform: scale(1.05);
}

@media (max-width: 1200px) {

    .footer-logo-img {
        width: 55px;
    }
}

/*FOOTER END*/

