body {
    display: flex;
    flex-direction: column;
    
    background: #fff2e5;
    font-family: 'Open Sans', sans-serif;
    
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    
    min-height: 100vh;
    max-width: 100%;
    overflow-x: hidden;
}

/* ---------------- HEADER ----------------*/

.navbar {
    display: flex;
    flex-direction: column;
    position: fixed;
    order: 0;
    background: #2d1f10;
    /*align-items: center;*/
    display: inline-flex;
    width: 100%;
    z-index: 9;
}

.nav-items {
    display: flex;
    flex-direction: row-reverse;
    width: 100%;
    align-items: center;
    max-height: 100%;
    margin-right: 15px;
}

.nav-container {
    display: inline-flex;
    flex-direction: row;
    width: 100%;
    max-width: 1440px;
    margin-right: auto;
    margin-left: auto;
}

.nav-link {
    position: relative;
    color: #fff2e5;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 8px;
    padding-left: 10px;
    top: 0px;
    transition: .3s;
}
.nav-link:hover {
    top: 4px;
    color: #ff8000;
}

.logo {
    display: inline-block;
    text-decoration: none;
    margin-left: 15px;
    max-width: 80px;
    max-height: 80px;
}
.logo-svg {
    max-width: 80px;
    max-height: 80px;
    fill: #fff2e5;
    transition: .3s;
}
.logo-svg:hover {
    transform: rotate(-10deg);
    fill: #ff8000;
}

/* ---------------- CONTENT ----------------*/

.banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    background: #3e2d1b;
    color: #fff2e5;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    
    text-align: top;
    font-family: "Open Sans", sans-serif;
    font-style: normal;
    font-weight: 500;
    line-height: 40px;
    font-size: 20px;
}
.banner button{
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 40px;
    top: 20px;
    
    background: #3e2d1b;
    border-radius: 20px;
    width: 30px;
    height: 30px;
    border: 0;
}
.banner button:hover{
    background: #2d1f10;
    cursor: pointer;
}
.banner button img{
    width: 15px;
    height: 15px;
}

.content {
    display: flex;
    flex-direction: column;
    order: 1;
    flex: 1;
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;

    align-items: center;
    background: #2d1f00 url("/images/tris_tesselate.svg");
    background-size: 100px;
    width: 100%;
    height: 500px;
    
    box-shadow: 0px 4px 4px #1a0d0040;
}

.hero-text {
    color: #fff2e5;
    max-width: 1100px;
    text-align: center;
    
    font-family: "Josefin Sans", sans-serif;
    font-style: normal;
    font-size: 70px;
}
.hero-text .highlight {
    color: #ff8000;
}

.section {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
}
.title-text {
    color: #1a0d00;
    width: 100%;
    text-align: center;
    
    font-family: "Josefin Sans", sans-serif;
    font-style: normal;
    font-size: 40px;
}
.subtitle-text {
    color: #1a0d00;
    width: 100%;
    text-align: center;
    
    font-family: "Open Sans", sans-serif;
    font-style: normal;
    font-size: 25px;
}

.products-carousel {
    display: inline-flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 50px;
    position: relative;
    
    width: 1750px;
    max-width: 1750px;
    min-height: 397px;
    margin-top: 30px;
}
.product {
    display: inline-flex;
    flex-direction: column;
    
    position: relative;
    background: #efe0d2;
    width: 550px;
    min-height: 367px;
    border-radius: 30px;
    box-shadow: 0px 4px 4px #1a0d0040;
    transform: scale(1);
    transition-property: transform;
    transition-duration: 0.5s;
}

.product:hover {
    transform: scale(1.05);
}

.product-image {
    width: 550px;
    min-height: 270px;
    border-radius: 30px 30px 0px 0px;
}

.product-text {
    color: #1a0d00;
    width: 510px;
    margin-top: 20px;
    margin-left: 20px;
    margin-right: 20px;
    
    font-family: "Josefin Sans", sans-serif;
    font-style: normal;
    font-weight: 300px;
    font-size: 25px;
}
.product-link {
    color: #0080ff;
    min-width: 0px;
    margin-bottom: 20px;
    margin-left: 20px;
    margin-right: 20px;
    
    font-family: "Open Sans", sans-serif;
    font-style: normal;
    font-size: 20px;
    text-decoration: none;
}

.banner-button {
    background: #ff8000;
    color: #fff2e5;
    
    width: 288px;
    height: 80px;
    border-radius: 40px;
    
    font-family: "Open Sans", sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 25px;
    text-align: center;
    line-height: 80px;
    text-decoration: none;
    
    border: 1px solid #fff2e500;
    box-shadow: 0px 0px 8px #fff2e500;
    transition: 0.1s
}
.banner-button:hover {
    border: 1px solid #fff2e5;
    box-shadow: 0px 0px 8px #fff2e5;
}

/* ---------------- FOOTER ----------------*/

.page-footer {
    order: 2;
    display: flex;
    align-items: top;
    background: #efe0d2;
}

.footer-container {
    display: inline-flex;
    flex-direction: row;
    gap: 40px;
    
    align-items: center;
    color: #1a0d00;
    position: relative;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 100%;
    max-width: 1240px;
    margin-right: auto;
    margin-left: auto;
}

.footer-section {
    display: flex;
    flex-direction: column;

    height: 100%;
    
    font-family: "Open Sans", sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
}

.footer-link {
    color: #2d1f00;
    
    font-family: "Open Sans", sans-serif;
    font-style: normal;
    font-weight: 350;
    font-size: 20px;
    line-height: 30px;
    text-decoration: none;
    transition: 0.3s;
}
.footer-link:hover {
    color: #1a0d00;
    font-weight: 400;
}

.copywrite {
    text-align: right;
    flex-grow: 1;
}
