:root {
    --main-color: #398860;

    --font-head: 'Baloo 2', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: #333;
    font-size: 1.1rem;
}

h1,
h2,
.hero-slide h1,
.about-head {
    font-family: var(--font-head);
    font-weight: 700;
    letter-spacing: .3px;
}

h3,
h4,
.about-title {
    font-family: var(--font-body);
    font-weight: 500;
}

p,
.about-content,
.about-list li {
    font-family: var(--font-body);
    font-weight: 400;
}

.nav-link,
.mobile-link,
.btn {
    font-family: var(--font-body);
    font-weight: 500;
}

.hero-slide h1 {
    font-size: 3.2rem;
}

.about-head {
    font-size: 2.3rem;
}

.about-subhead {
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}



/* Language dropdown */
.dropdown .dropdown-menu {
    transform: translateY(8px);
    opacity: 0;
    visibility: hidden;
    transition: all .2s ease;
    display: block;
    pointer-events: none;
    border-radius: 8px;
    padding: 6px 0;
}

/* hover open */
@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
}

.dropdown-item {
    font-size: .9rem;
    padding: 6px 14px;
    transition: background .15s ease;
}

.dropdown-item:hover {
    background: rgba(57, 136, 96, .08);
    color: var(--main-color);
}


.btn-search {
    opacity: .7;
    transition: opacity .2s ease;
}

.btn-search:hover {
    opacity: 1;
    color: var(--main-color);
}


/* language */
.language-switch a {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 1rem;
    border: 1px solid #ddd;
    margin-right: 6px;
    text-decoration: none;
    color: #555;
}

.language-switch a.active {
    background: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
}


/* ===== SEARCH ===== */
.search-box {
    position: absolute;
    right: 0;
    top: 120%;
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, .1);
    display: none;
}

.search-box input {
    border-radius: 30px
}

/* ================= HERO ================= */
.carousel-item {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
}

.ps-7 {
    padding-left: 6rem !important;
}

.hero-overlay {
    background: rgba(0, 0, 0, .45);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    color: #fff;
}

.hero-content h1 {
    font-size: clamp(2.2rem, 4vw, 3.3rem);
    font-weight: 700
}

.btn-main {
    background: var(--main-color);
    color: #fff;
    border-radius: 50px;
    padding: .7rem 1.6rem;
}

.btn-main:hover {
    background: #2f7052;
    color: #fff
}