@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;400;500;700;800&family=Barlow+Semi+Condensed:wght@100;200;400;500;700;800&family=Beau+Rivage&family=MonteCarlo&family=WindSong&display=swap');


/* Bootstrap Overwrites */
:root {
    --bs-font-sans-serif: 'Inter', 'Montserrat', 'Anek Devanagari', monospace !important;
    --bs-font-monospace: 'Inter', 'Montserrat', 'Anek Devanagari', monospace !important;
    --bs-body-font-size: 0.9rem !important;
    --bs-body-font-weight: 300 !important;
}

a {
    text-decoration: none !important;
}


/* lakewood colors */
:root {
    --primary-light: #8a9f7f;
    --primary: #577045;
    --primary-dark: #3e4f37;
    --secondary-light: #efdabe;
    --secondary: #9d876c;
    --secondary-dark: #655745;
    --accent: #ffc107;
    --accent-light: #efc442;
    --grey-light: #b6b6b6;
    --grey: #595959;
    --grey-dark: #131313;
    --black: #000000;
    --white: #ffffff;
}
.white {
    background-color: var(--white);
    color: var(--black);
}
.black {
    background-color: var(--black);
    color: var(--white);
}
.dark {
    background-color: var(--grey-dark);
    color: var(--white);
}
.dark-white {
    background: linear-gradient(180deg, var(--grey-dark) 50%, #ffffff 0%);
}
.light-white {
    background: linear-gradient(180deg, var(--grey-light) 50%, #ffffff 0%);
}
.white-light {
    background: linear-gradient(180deg, #ffffff 50%, var(--grey-light) 0%);
}
.light {
    background-color: var(--grey-light);
    color: var(--black);
}
.primary-light {
    background-color: var(--primary-light);
    color: var(--white);
}
.primary {
    background-color: var(--primary);
    color: var(--white);
}
.primary-dark {
    background-color: var(--primary-dark);
    color: var(--white);
}
.secondary-light {
    background-color: var(--secondary-light);
    color: var(--black);
}
.secondary {
    background-color: var(--secondary);
    color: var(--white);
}
.secondary-dark {
    background-color: var(--secondary-dark);
    color: var(--white);
}

body {
    margin: 0;
    font-family:  'Roboto', 'Montserrat', 'Anek Devanagari', sans-serif;
    font-size: 0.9rem;
    line-height: 1.3rem;
    font-weight: 300;
    color: var(--black);
    background-color: var(--black);
}


h1 {
    font-size: 3rem;
    color: var(--secondary);
}
h2 {
    font-weight: 100;
    font-size: 2rem;
}
h3 {
    font-size: 1.5rem;
}
h4 {
    font-size: 1rem;
}

table {
    width: 100%;
    text-align: left;
}

a {
    color: var(--primary-light);
    text-decoration: none;
}
a:hover {
    color: var(--white);
    text-decoration: none;
    transition: color 1s;
    border-bottom: 1px solid var(--white);
}
a.mailto {
    color: var(--black);
}


/* header and footer */
.logo {
    width: 250px;
}
.menu {
    color: var(--primary-light);
    margin: 10px;
    font-size: 1em;
    line-height: 2em;
    display: inline-block;
}
.menu:hover,
.menu.active {
    color: var(--white);
    border-bottom: 1px solid var(--white);
}
.developedBy {
    align-content: center;
    font-size: 0.75rem;
    border-top: 1px solid var(--grey);
}


/* general classes */
.border {
    border: 1px solid var(--grey-light);
}
.rounded {
    border-radius: 5px;
}
.gap {
    grid-gap: 30px;
}

/* general containers */
body section {
    padding: 50px calc((100% - 800px) / 2);
}
@media screen and (max-width: 768px) {
    body section {
        padding: 20px;
    }
}
.box {
    display: grid;
    grid-auto-flow: column;
    border-radius: 5px;
}
.box-img {
    width: 100%;
    background-size: cover;
    background-position: center;
}
.box-text {
    padding: 30px !important;
}


/* products and shop */
.product-box {
    border-radius: 5px;
}
.product-image {
    padding: 0 !important;
    width: 300px;
    background-size: cover;
    background-position: center;
}
.product-description {
    padding: 30px !important;
}
.button {
    margin: 5px;
    padding: 10px;
    background-color: var(--accent);
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
}
.button:hover {
    background-color: var(--accent-light);
}
.product-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-light);
    margin: 1rem 0 0.5rem 0;
}


.right {
    justify-self: right;
}

@media screen and (max-width: 768px) {
    .box {
        grid-auto-flow: row;
    }
    .box-img {
        width: 100%;
        background-size: cover;
        background-position: center;
    }

}

div {
    overflow: hidden;
}


/* reveal and fade */
.fade-in-2 {
    animation: fadeIn 2s;
}

.fade-in-3 {
    animation: fadeIn 3s;
}

.fade-in-4 {
    animation: fadeIn 4s;
}
.fade-in-8 {
    animation: fadeIn 8s;
}


@keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
}


.reveal{
    opacity: 0;
    transition: 1s all ease;
}

.reveal.active{
    opacity: 1;
}

