/* inter-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/inter-v20-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-700 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/inter-v20-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* abhaya-libre-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Abhaya Libre';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/abhaya-libre-v18-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* abhaya-libre-700 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Abhaya Libre';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/abhaya-libre-v18-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

:root {
    --primary-green: #4b5e48;
    --primary-green-hover: #3a4a38;
    --accent-gold: #cfa878;
    --accent-gold-hover: #b89262;
    --bg-light: #f5f4ef;
    --text-dark: #222;
}

body {
    background-color: var(--bg-light);
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
}

h1, h2, h3, h4 {
    font-family: 'Abhaya Libre', serif;
}

p, span, div, button {
    font-family: 'Inter', sans-serif;
}

.navbar-brand {
    font-family: 'Abhaya Libre', serif;
}

.footer .logo {
    font-family: 'Abhaya Libre', serif;
    font-size: 1.5rem;
}

.language-picker a {
    text-decoration: none;
    margin-right: 10px;
}

.language-picker a:hover {
    font-weight: bold;
}

.language-picker a:last-child {
    margin-right: 0;
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/hero_mobile.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    padding-bottom: 120px;
}
@media (min-width: 576px) {
    .hero-section {
        background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/hero.webp') no-repeat center center;
        background-size: cover;
        color: white;
        padding-bottom: 120px;
    }
}

.hero-section.minimal {
    padding-bottom: 1rem!important;
}



.btn-green {
    background-color: var(--primary-green);
    color: white;
    border: none;
}

.btn-green:hover {
    background-color: var(--primary-green-hover);
    color: white;
}

.btn-gold {
    background-color: var(--accent-gold);
    color: white;
    border: none;
}

.btn-gold:hover {
    background-color: var(--accent-gold-hover);
    color: white;
}

.video-container {
    margin-top: -80px;
    position: relative;
    z-index: 10;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon-box {
    width: 50px;
    height: 50px;
    background-color: #eee9dd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-right: 15px;
}

.pricing-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.footer {
    background-color: var(--primary-green);
    color: white;
}

.footer a {
    color: white;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}