/*
Theme Name: One Page Theme
Theme URI: 
Author: Your Name
Author URI: 
Description: A basic one page WordPress theme
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: onepage-theme
*/

/* Add your CSS styles here */

:root {
    --brand-color: #46783B;
    --border-color: #46783B;
    --secondary-color: #A3C1A1;
    --bs-nav-link-hover-color: #000;
}

html,
body {
    margin: 0;
    padding: 0;
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: "Lato", serif;
    background-color: rgba(240, 241, 242, 1);
}

section {
    padding-top: 80px;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 1030;
    background: #fff0;
    padding: 0 !important;
    border-bottom: 1px solid #fff;
    transition: background 0.3s ease;
}

.scrolled {
    background: #fff;
    border-color: #46783B !important;
}

.navbar-toggler {
    color: #000;
    border-color: var(--border-color);
    background-color: var(--brand-color);
}

.navbar-brand:hover {
    color: var(--brand-color);
}

.nav-link {
    font-weight: bold;
}

.hero {
    padding: 0px;
    margin: 0px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

#about {
    padding-top: 50px;
    padding-bottom: 80px;
}

#about > div {
    position: relative;
    top: 50px;
}

.hero-container {
    padding: 0px;
    margin: 0px;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1,
h2 {
    color: var(--brand-color);
}

h3,
p {
font-size: 16px;
}

.remove-padding div {
    padding: 0 !important;
}

.btn-rose {
    color: #000;
    border-color: var(--border-color);
    background-color: var(--brand-color);
}

footer {
    background: #212529;
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
}

.round-basic {
    border-radius: 15px;
}

.card {
    width: 100%;
    border: 1px solid var(--secondary-color);
    background-color: #f0f1f2;
}

.card:hover {
    border-color: var(--brand-color);
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.card-body {
    padding: 20px;
}

.card-title {
    font-weight: bold;
}

.card-text {
    font-size: 16px;
    text-align: left;
}

.card ul li {
    font-size: 16px;
}
.card-body {
    transition: border-bottom 0.3s ease;
    border-bottom: 16px solid #ffffff00;
}

.card-body:hover {
    border-bottom: 16px solid var(--brand-color);
}

.pole-horizontal {
    margin-bottom: 20px;
    margin-top: 20px;
    background-color: var(--secondary-color);
    height: 5px;
    width: 120px;
    border-radius: 5px;
    background-color: var(--secondary-color);
}

.pole-vertical {
    margin-right: 20px;
    margin-left: 20px;
    background-color: var(--secondary-color);
    height: 80%;
    width: 5px;
    border-radius: 5px;
    background-color: var(--secondary-color);
}
