/* 1. Reset extra */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* 2. Variables */
:root {
    --primary: #187078;
    --secondary: #37B0C0;
    --accent: #fff;
    --dark-blue: #047;
    --medium-blue: #059;
    --dark-green: #187078;
    --font-main: 'Montserrat', Arial, sans-serif;
}

/* 3. Body & Layout */
html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    width: 100%;
    font-family: var(--font-main);
    background: #fff;
    color: #222;
    overflow-x: hidden;
    overflow-x: hidden;
}

/* 4. Header & Footer */
.site-header,
.site-footer {
    width: 100%;
    width: 100%;
    background: var(--primary);
    color: var(--accent);
}

/* 5. Links & Buttons */
a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover,
a:focus {
    color: var(--primary);
}

body .btn {
    border-radius: 2rem;
    font-weight: 600;
}

body .btn-book-tour {
    background: #fff;
    color: var(--secondary);
    font-family: var(--font-main);
    border-radius: 2rem;
    font-weight: 500;
    font-size: 0.95rem;
    border: none;
    padding: 0.75rem 3.5rem;
    transition: background 0.2s, color 0.2s;
    pointer-events: auto;
    letter-spacing: 0.15em;
}

body .btn-book-tour:hover,
body .btn-book-tour:focus {
    background: var(--primary);
    color: #fff !important;
}

/* 6. Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 7. Utilities */
.text-shadow {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* 8. Responsive */
@media (max-width: 768px) {

    .site-header,
    .site-footer {
        padding: 1rem;
    }

    .logo {
        height: 80px;
    }
}

.header {
    position: relative;
    width: 100%;
    left: 0;
    right: 0;
    /* margn-left: -50vw;
    margin-right: -50vw; */
    margin: 0;
    width: 100%;
    left: 0;
    right: 0;
    /* margn-left: -50vw;
    margin-right: -50vw; */
    margin: 0;
    overflow: hidden;
}

.header-banner {
    /* 
       The background header banner image is defined
       in custom css file for each specific page with:
       background-image: url('path/to/image.jpg');
    */
    background-repeat: no-repeat;
    background-size: cover;
    /* have the image covering the entire area */
    background-position: top;
    /* default starting position for the background image, can be overridden in specific page css */
    width: 100%;
}

.logo {
    height: 200px;
}

.social-icon {
    height: 18px;
}

.social-icons-group {
    gap: 1.7rem;
}

.header-title-wrapper {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 22px;
    color: #fff;
    text-align: center;
    z-index: 10;
    width: 100%;
    pointer-events: none;
}

.header-main-title {
    font-family: 'Amiri Quran', serif;
    font-size: 26px;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    margin-bottom: 1rem;
    letter-spacing: 0.2em;
}

.header-subtitle {
    margin-top: 0;
    font-size: 62px;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.05em;
    font-weight: 600;
    letter-spacing: 0.2em;
}

/* #main.container-fluid {
    text-align: justify;
    margin-left: 0rem !important;
    margin-right: 0rem !important;
    padding-left: 20rem !important;
    padding-right: 20rem !important;
} */

body .collapse:not(#resQwestEasyApi .collapse) {
    visibility: visible;
}

.footer {
    background: linear-gradient(to bottom,
            #fff 0%,
            rgb(31, 90, 135) 40%,
            rgb(1, 50, 87) 100%);
    color: #fff;
    padding: 100px 0 10px 0;
    /* text-align: center; */
}

.footer .connect-with-us {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.footer .list-unstyled li {
    margin-bottom: 0.2rem;
}