@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap");
/**
* Variables
*/
:root {
    --primary-color: #7d5326;
    --secondary-color: #a8d542;
    /*--tertiary-color: #833b19;
    --tertiary-color-trans: #833b1985;
    --quaternary-color: #52240f;*/
    --light: 300;
    --regular: 400;
    --medium: 500;
    --bold: 600;
    --bolder: 700;
    --boldest: 800;
    --font-primary: "Quicksand", sans-serif;
    --font-secondary: "Open Sans", sans-serif;
    --font-size-regular: 1.6rem;
}
* {
    box-sizing: border-box;
    margin: 0;
    text-decoration: none;
    list-style: none;
}
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}
html,
body {
    height: 100%;
    background-color: #ebc0ac0c;
    position: relative;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-optical-sizing: auto;
    font-weight: var(--bolder);
    font-style: normal;
}
h1 {
    font-size: 2.6rem;
    text-align: center;
    margin: 3rem 0;
}
div,
p,
li,
a,
span,
label,
input,
textarea,
option,
select,
button {
    font-family: var(--font-primary);
    font-optical-sizing: auto;
    font-style: normal;
}
div,
p,
li,
label,
span,
input,
textarea,
option,
select,
button,
a {
    font-size: var(--font-size-regular);
}
p,
li {
    line-height: 1.3;
    font-weight: var(--regular);
}
p {
    margin-bottom: 1rem;
}
img {
    max-width: 100%;
    height: auto;
}
u {
    text-decoration: underline;
}
details > summary:first-of-type {
    list-style: inside disclosure-closed;
}
details[open] > summary:first-of-type {
    list-style-type: disclosure-open;
}
button,
a.button {
    background-color: var(--primary-color);
    color: white;
    font-weight: 500;
    padding: 1rem 4rem;
    border: none;
    border-radius: 3rem;
    cursor: pointer;
    transition: background-color 0.3s;
}
button:hover,
a.button:hover {
    background-color: var(--secondary-color);
    color: #000000;
}
.light {
    font-weight: var(--light);
}
.bold {
    font-weight: var(--bold);
}
.bolder {
    font-weight: var(--bolder);
}
.boldest {
    font-weight: var(--boldest);
}
.sr-only {
    clip: rect(0, 0, 0, 0);
    border-width: 0;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}
.underline {
    border-bottom: 2px solid var(--secondary-color);
}
.text-left {
    text-align: left;
}
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
.text-red {
    color: red;
}
.mb-0 {
    margin-bottom: 0;
}
.mt-0 {
    margin-top: 0;
}
.d-none {
    display: none !important;
}
.hero {
    position: relative;
}
.landing {
    position: relative;
    height: 400px;
    width: 100%;
    color: white;
    text-align: center;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.landing h1 {
    position: absolute;
    z-index: 2;
    font-size: 55px;
    font-weight: 600;
    color: white;
    width: 90%;
    margin: auto;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.landing-gallery-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.landing-gallery {
    display: flex;
    height: 100%;
    width: max-content; /* Let GSAP manage total width */
    white-space: nowrap;
}

.landing-image {
    height: 100%;
    width: auto;
    flex-shrink: 0;
    object-fit: cover;
    filter: brightness(0.85);
    transition: transform 0.3s ease;
}

.landing-image:hover {
    filter: brightness(1);
}
/* Dots navigation */
.slider-dots {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid var(--secondary-color);
    background-color: rgba(255, 255, 255, 1);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-dot.active {
    background-color: var(--primary-color);
}
/* Extra small devices (phones, 768px and up)
@media only screen and (min-width: 768px) {
}

/* Small devices (tablets, 992px and up)
@media only screen and (min-width: 992px) {
}
/* Medium devices (Laptop, 1280px and up)
@media only screen and (min-width: 1280px) {
}

/* Large devices (Monitors, 1440px and up)
@media only screen and (min-width: 1440px) {
}*/

/* footer p:first-child {
    margin-top: 1.5rem;
}
footer p a {
    color: #ffd700;
    font-weight: 700;
}
footer p a:hover {
    color: #d3d3d3;
    font-weight: 700;
}
label.required::after {
    content: "*";
    color: red;
    margin-left: 1rem;
} */
/* Responsive Design */
/*
@media only screen and (max-width: 992px) {
    .mobile-nav-toggle {
        aspect-ratio: 1;
        background-color: transparent;
        display: block;
        position: fixed;
        right: 4rem;
        top: 2rem;
        width: 2rem;
        z-index: 104;
        padding: 0;
        border-radius: 0;
        color: black;
        font-size: 3.5rem;
        border: 0;
    }
    .mobile-nav-toggle svg {
        display: none;
    }
    .mobile-nav-toggle svg.active {
        display: block;
    }
    .navbar-container {
        position: fixed;
        z-index: 103;
        inset: 0 0 0 30%;
        background-color: rgba(140, 179, 219, 0.3607843137);
        backdrop-filter: blur(1rem);
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        border-radius: 3rem 0 0 3rem;
        width: auto;
    }
    .navbar-container.active {
        transform: translateX(0);
    }
    .navbar-container .navbar-content {
        display: flex;
        flex-direction: column;
        width: 90%;
        height: 60%;
        margin: auto;
    }
    .navbar-content li a {
        color: black;
        margin-bottom: 2rem;
    }
}
/* Extra small devices (phones, 768px and down) 
@media only screen and (max-width: 768px) {
    footer p {
        text-align: center;
        margin: 1.5rem 0;
    }
}

/* Tiny devices (phones, 460px and down) 
@media only screen and (max-width: 460px) {
    .navbar-container.active {
        width: 80%;
        transform: translateX(-12%);
    }
}
*/
