@charset "UTF-8";

* {
    box-sizing:border-box;
}
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
}

:root {
    --link-color-active: #ffffff;
    --link-color-hover: #e6e6e6;
    --background-color-1: #FCF8F0;
    --background-color-2: #E2D9CD;
    --main-title-color: #332d2b;
}

::selection {
    background:#ede1d2;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-size:18px;
    color:#000;
    background-color: var(--background-color-1);
    font-family: 'Lora', serif;
    opacity: 0;
    animation: fadeIn 1s forwards;
    line-height:25px;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

img {
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

img:not(.product-cont img) {
    width: 200px;
    height: 200px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

h1, h2 {
    font-family: "Lora", serif;
    font-weight: 700;
}


h1 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
}

h2 {
    margin:5px;
    padding:20px 5px;
    font-size:2rem;
    font-weight:bold;
    color:var(--main-title-color);
}

p {
    margin-top:0;
    margin-bottom: 1rem;
    font-family: "Lora", serif;
}

a {
    color:#333;
    transition: color 0.5s ease;
}
.footer-column p a {
    color: #cfcfcf;
    white-space: nowrap;
}

.content-value-input {
    resize: both;
}

.content-value-input {
    min-height: 500px;
    min-width: 500px;
}

a:hover {
    color:var(--link-color-hover);
    text-decoration: none;
}

.flash-center {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    padding: 40px 50px;
    border-radius: 8px;
    background-color: #d4edda;
    color: #155724;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 80%;
    opacity: 1;
    transition: opacity 1s ease-out;
}

.flash-fade-out {
    opacity: 0;
}

.flash-error {
    background-color: #f8d7da;
    color: #721c24;
}


.site-header {
    margin-top: 5rem;
    margin-bottom: 5rem;
    text-transform: uppercase;
    line-height: 1;
    font-family: "Lora", serif;
    text-align:center;
}

.site-header .header-top {
    display: block;
    font-size: 2rem;
    font-weight: 800;
}

.site-header .header-bottom {
    font-size: 2.8rem;
    font-weight: 100;
    line-height: 4rem;
}

@media (max-width: 768px) {
    .site-header .header-top {
        font-size: 1.5rem;
    }

    .site-header .header-bottom {
        font-size: 2rem;
        line-height: 2.5rem;
    }
}

@media (max-width: 1024px) {
    .product-cont {
        flex: 1 1 calc(50% - 2rem);
        max-width: calc(50% - 2rem);
    }
}

@media (max-width: 768px) {
    .about-us-section {
        flex-direction: column;
    }

    .product-cont {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
    }
}

.contact-button:active {
    transform: translateY(0);
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.navi-bar {
    background-color: #6B5B4D;
    padding:1rem;
    position:sticky;
    top:0;
    z-index:999;
    width: 100vw;
    left:0;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: white;
}

/* Mobile styles */
@media screen and (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .navi-items {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #6B5B4D;
        flex-direction: column;
        display: none;
    }

    .navi-items.show {
        display: flex;
        align-items:flex-start;
        padding:20px;
    }
}

.navi-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navi-title a {
    margin-left:15px;
    font-weight:600;
    font-size:1.8rem;
    color:var(--link-color-active);
    text-decoration: none;
}

@media screen and (max-width: 768px) {
    .navi-title {
        margin: auto;
    }

    .navi-title a {
        margin-left:0;
    }
}

.navi-items {
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navi-items a {
    color:var(--link-color-active);
    font-size: 1.8rem;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.navi-items a i {
    color:var(--link-color-active)!important;
    fill:var(--link-color-active)!important;
}


.header-image {
    position: relative;
    width: 100%;
    height: 90%;
    overflow: hidden;
    border-radius: 0;
}

.header-image img {
    object-fit: cover;
    display: block;
    margin:0;
    padding:0;
    width:100vw!important;
    height:auto!important;
    border-radius:0!important;
}

.landing-hero {
    background-image: url('https://imgur.com/a/IBSctSr');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.landing-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* dark overlay to make text pop */
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 20px;
}

.hero-content h1 {
    font-family: 'Raleway', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-content p {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.cta-button {
    background-color: #B6A593;
    color: rgba(0, 0, 0, 0.86);
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
    background-color: #958473;
    color: #ffffff;
}

@media screen and (max-width: 600px) {
    nav {
        width: 100%!important;
    }

    .head-img {
        width:100%;
    }
}


.navi-bar ul {
    list-style-type:none;
    padding:0;
    margin:0;
    display:flex;
    justify-content:flex-end;
}

.navi-bar ul li a {
    font-weight:600!important;
    text-decoration:none;
    font-family: "Lora", serif;
    font-size:1.2rem;
    margin-right:50px;
    text-align: right;
}

@media (max-width: 768px) {
    .navi-bar ul {
        flex-direction: column;
        text-align: right;
    }

    .navi-bar li {
        margin: 10px 0;
    }
}

@media (max-width: 768px) {
    main {
        max-width:100%;
        margin:0;
    }
}

.container {
    width: 100%;
    padding: 50px 0;
    margin: 0;
    border-radius: 0;
    background-color: var(--background-color-1);
}


.container-text {
    font-size:20px;
    padding:15px 140px;
    text-align:justify;
}


.container-text ul {
    display:inline-block;
    width:50%;
}


.container-flex {
    padding:10px;
}

.container-flex h2 {
}


.container img {
    width: 250px;
    height: 250px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 60px;
    padding: 0 70px 10px 10px;
    display: block;
}

#contact-form-section.container {
    width:900px;
    background-color:#FCF8F0;
}

@media screen and (max-width:600px) {
    #contact-form-section.container {
        width:90%;
        background-color:#FCF8F0;
    }
}

.about-us-section {
    background-color: var(--background-color-1);
    margin: 100px 0;
    padding: 2rem;
}

.about-us-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.about-us-image img {
    width:450px!important;
    height:450px!important;
    max-width: 100%;
    border-radius:50%!important;
    object-fit: cover;
    margin-left:5rem;
}

@media screen and (max-width: 600px) {
    .about-us-image img {
        width:200px!important;
        height:200px!important;
    }

    .about-us-text {
        margin-left:0!important;
        text-align: center;
    }
}

.about-us-text {
    flex: 1;
    min-width: 300px;
    margin-left:70px;
}

.about-us-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-us-text p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.field {
    font-weight:600;
    font-size:1rem;
}

.field .line {
    padding:20px;
}

.login-message {
    margin:0;
    font-weight:600;
}
.scroll-down {
    position: absolute;
    margin-top:30px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 36px; /* Size of the button */
    height: 36px; /* Size of the button */
    cursor: pointer;
}

.scroll-down:before,
.scroll-down:after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    transform: rotate(45deg);
    border-bottom: 4px solid white; /* Stroke color */
    border-right: 4px solid white; /* Stroke color */
    position: absolute;
    top: 80%;
    left: 50%;
    transform-origin: center;
}

.scroll-down:before {
    animation: down-arrow-before 2.6s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

.scroll-down:after {
    animation: down-arrow-after 2.6s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

/* Keyframes for Animation */
@keyframes down-arrow-before {
    50% {
        transform: rotate(45deg) translate(70%, 70%);
    }
    100% {
        transform: rotate(45deg) translate(70%, 70%);
    }
}

@keyframes down-arrow-after {
    50% {
        transform: rotate(45deg) translate(110%, 110%);
        opacity: 0;
    }
    51% {
        transform: rotate(45deg) translate(-130%, -130%);
    }
    100% {
        transform: rotate(45deg) translate(-70%, -70%);
        opacity: 1;
    }
}

#products.container {
    background-color:var(--background-color-2);
    color:#fff;
    padding-bottom:70px;
}

#products.container h2 {
    text-align:center;
    color:#412f26;
    margin-bottom: 1.5rem;
}

.product-grid {
    display: flex;
    flex-wrap:wrap;
    justify-content:center;
    gap: 4rem;
    padding: 2rem;
}

@media screen and (max-width: 600px) {
    .product-grid {
        display:block;
    }

    .product-cont {
        max-width:100%!important;
        max-height:500px!important;
        margin: 0 auto 100px;
    }

    .product-cont:last-child {
        margin-bottom:20px;
    }
}

.product-cont {
    box-sizing:content-box;
    align-items:center;
    max-width:300px;
    max-height:430px;
    flex: 1 0 50px;
    background-color: #ffffff;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 16px;
    padding: 2.5rem 1.5rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.product-cont img {
    flex: 0 0 auto;
    margin-top:10px;
    object-fit: cover!important;
    width:200px;
    height:200px!important;
    margin-bottom: 15px;
    padding:0px!important;
}


.product-cont h3 {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    color: #332d2b;
}

.product-cont p {
    font-size: 1rem;
    color: #1b1919;
}


#faq {
    max-width: 1000px;
    margin: 10px auto;
    padding: 0 20px;
}

#faq h1 {
    font-weight:bold;
    color: #332d2b;
    padding-bottom:20px;
    text-align: center;
}

.faq-item {
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 20px;
    font-family: 'Lora', serif;
    padding: 10px 0;
    cursor: pointer;
    font-weight: bold;
    outline: none;
    transition: color 0.5s ease;
}

@media screen and (max-width:600px) {
    .faq-item {
        box-sizing:content-box!important;
    }
}

.faq-question:hover {
    color: #B6A593;
    transition: color 0.5s ease;
}

.faq-answer {
    font-size:19px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-question.active + .faq-answer {
    max-height: 200px;
    padding:20px 0;
}

.faq-more-button {
    display: inline-block;
    background-color: #B6A593;
    color: #fff;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.faq-more-button:hover {
    background-color: #958473;
    color: #090908;
}

#contact-form-section {
    max-width:1000px;
    margin:auto;
}

#contact-form-section .container-text {
    margin-left:0!important;
}

.footer {
    background-color: #6B5B4D;
    color: #ffffff;
    padding: 20px 20px;
    margin-top:auto;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap:100px;
}

.footer-column {
    flex: 1;
    margin: 20px;
}

@media screen and (max-width:600px) {
    .footer-container {
        gap: 0px;
    }
    .footer-column {
        flex: 1 1 300px;
    }
}

.footer-column h3 {
    color: rgb(239, 239, 239);
    margin-bottom: 15px;
    font-size: 18px;
    border-bottom: 1px solid rgba(182, 182, 182, 0.38);
    padding-bottom: 5px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #cfcfcf;
    text-decoration: none;
}

.footer-column ul li a:hover {
    color: #fff;
    text-decoration: none;
}


.search-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

#faqSearch {
    flex: 1;
    padding: 10px;
    font-size: 1em;
    width: 85%;
}

#faqSearchBtn {
    padding: 10px 20px;
    font-size: 1em;
    background-color: #cbb89d;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

#faqSearchBtn:hover {
    background-color: #412f26;
}

.container .faq-index {
    margin:0 auto;
}

.faq-index h1 {
    text-align:center;
    font-weight:600;
    margin-bottom:50px;
}
