/* VARIABLES */
:root {
    --c-dark-green: #054723f1;
    --c-dark: #212529;
    --c-brand: #06702fea;
    --c-brand-light: #07552aa4;
    --c-brand-rgb: 6, 78, 34;
    --c-body: #727272;
    --font-base: "ClashDisplay", sans-serif;
    --box-shadow: 0px 15px 25px rgba(0,0,0,0.08);
    --transition: all 0.5s ease;

}

@font-face {
  font-family: 'ClashDisplay';
  src: url('fonts/ClashDisplay-Variable.woff2') format('woff2'),
       url('fonts/ClashDisplay-Variable.woff') format('woff'),
       url('fonts/ClashDisplay-Variable.ttf') format('truetype');
       font-weight: 200 700;
       font-display: swap;
       font-style: normal;
}

/* RESET & HELPERS */

.calendar-day {
    height: 32px;
    width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-day.has-event {
    background-color: rgba(0, 100, 0, 0.1);
    color: #006400;
    font-weight: bold;
}

.calendar-day.today {
    background-color: #006400;
    color: white;
    border-radius: 50%;
}


body {
    font-family: var(--font-base);
    line-height: 1.7;
    color: var(--c-body);
}

h1, h2, h3,h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-weight: 600;
    color: var(--c-dark-green);
    text-transform: uppercase;
}

:where([class^="ri-"])::before {
    content: "\f3c2";
}

.mega-menu {
    display: none;
    position: absolute;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    z-index: 50;
}

.nav-item:hover .mega-menu {
    display: block;
}

.slider {
    position: relative;
    overflow: hidden;
    height: 600px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(1, 54, 36, 0.7), rgba(3, 116, 53, 0.575));
    color: white;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.dot.active {
    background-color: white;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    border-radius: full;
    cursor: pointer;
    z-index: 10;
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

@media (max-width: 768px) {
    .slider {
        height: 400px;
    }

    .mega-menu {
        position: static;
        display: none;
    }

    .mobile-menu-open .mega-menu {
        display: block;
    } 
} 


.text-warning{
    color: yellow;
}
