:root {
    --primary: #E6E6E6;
    --primary-50: #e6e6e681;
    --primary-70: #e6e6e6b4;
    --accent: #7D1542;
    --accent-10: #7d15422c;
    --foreground: #010014;
    --foreground-10: #0100142a;
    --foreground-50: #01001477;
    --black-25: #0000003f;

    --corner-radius: 24px;
}

/* Color Classes*/
.accent {
    color: var(--accent);
}

.primary {
    color: var(--primary);
}

.filter-white {
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(107deg) brightness(106%) contrast(101%);
}

body {
    background-color: var(--primary);
    font-family: GeoSharpVF;
    overflow-x: hidden;
}

input {
    width: 438px;
    height: 75px;
    border-radius: 24px;
}

img {
    border-radius: 24px;
    object-fit: cover;
}

/*Text and Fonts*/
.font-xs {
    font-size: var(--font-size-xs);
}

h1 {
    font-weight: 900;
    font-size: var(--font-size-xxl);
    color: var(--accent);
}

h2 {
    font-family: GeoSharpVF;
    font-weight: 900;
    font-size: var(--font-size-xl);
    color: var(--accent);
    line-height: 38px;
    text-transform: uppercase;
}

h3 {
    font-size: var(--font-size-l);
    color: var(--accent);
    text-transform: uppercase;
    line-height: 28px;
}

h4 {
    font-size: var(--font-size-s);
    color: var(--accent);
}

h5 {
    font-size: var(--font-size-xs);
    color: var(--foreground-50);
}

h6 {
    font-size: var(--font-size-xxs);
    color: black;
}

a {
    text-decoration: none;
    color: black;
}

label {
    color: var(--foreground-50);
}

input {
    background: none;
    height: 48px;
    border-radius: 16px;
    border: 1px solid var(--foreground-50);
}

p {
    font-family: GeoSharpVF;
    font-weight: 250;
}

p.bold {
    font-size: var(--font-size-s);
    font-weight: 500;
}

.test-box {
    border: 1px solid red;
}

.round-box {
    height: 40px;
    border-radius: 20px;
    border: 1px solid var(--accent);
}

.round-corner {
    border-radius: 24px;
}

.ultra-bold {
    font-weight: 900;
}

/*region Buttons*/
.btn-primary {
    height: 40px;
    border-radius: 20px;
    background-color: var(--accent);
    color: white;
    border: none;
    padding: 0 12px;
}

.btn-primary:hover {
    background-color: white;
    color: var(--accent);
    cursor: pointer;
}

.btn-border {
    height: 40px;
    border-radius: 20px;
    border: 1px solid var(--accent);
    color: black;
    padding: 0 12px;
    background: none;
}

.btn-border img {
    height: 16px;
    margin-right: 8px;
}

/*end region Buttons*/

/*======================Header=========================*/
#header {
    height: 88px;
    width: 100%;
    position: fixed;
    background-color: var(--primary);
    z-index: 1;
}

#headerInner {
    height: 100%;
    margin: 0 48px;
    display: flex;
    align-items: center;
}

.menu {
    margin-left: 88px;
    display: flex;
    gap: 32px;
}

.menu-item {
    font-size: 20px;
    color: var(--foreground-50);
    text-decoration: none;
    height: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    box-sizing: border-box;
}

.menu-item.active {
    color: var(--foreground);
    border: 1px solid var(--accent);
}

#headerActions {
    display: flex;
    margin-left: auto;
}

#headerActions div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 20px;
    border: 1px solid var(--accent);
    height: 40px;
}

/*==============================Footer===================*/
#socialContainer {
    gap: 10px;
}

#socialContainer a {
    width: 20px;
    height: 20px;
}


/*=====================================================*/
.highlight {
    background-color: #BCED09;
    color: black;
}



.main-container {
    margin: 0 50px;
    padding-top: 190px;
}

.inner-container {
    position: relative;
}

.inner-container::-webkit-scrollbar {
    display: none;
}

.message-box {
    padding-left: 16px;
    border-left: 1px solid var(--black-25);
    width: 230px;
}

.field-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.field-container label {
    font-size: 24px;
}

.field-container input {
    background: none;
    height: 64px;
    border-radius: 16px;
    width: 100%;
}

#modal {
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    z-index: 3;
    gap: 24px;
    padding: 50px 100px;
}

#modal>div {
    background-color: white;
    height: 100%;
}

.modal-action {
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent);
    border-radius: 20px;
}

/*=============First===================*/
#first_part_title {
    height: 80px;
}

#first_part_image {
    /* height: 570px; */
    margin: 180px 0;
}

#first_part_message {
    height: 258px;
    top: 0;
    left: 60%;
}

#scrolldown {
    position: fixed;
    gap: 8px;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent);
    height: 40px;
    width: 140px;
    font-size: 20px;
    z-index: 1;
}

/*======================Product Line=======================*/
.product-line-item {
    position: relative;
    gap: 24px;
    height: 740px;
}

.product-line-item img {
    width: 100%;
    height: 100%;
    transition: 0.2s;
}

.product-line-item>div {
    transition: 0.2s;
    transform-origin: top;
    height: 654px;
    overflow: hidden;
    border-radius: 24px;
}

.product-line-item:hover>div {
    height: 740px;
}

.product-line-item:hover img {
    transform: scale(1.1, 1.1);
}

.product-line-item:hover .product-line-more {
    transform: scaleX(0.9);
    background-color: var(--accent);
    color: white;
}

.product-line-more {
    height: 40px;
    width: 100%;
    border-radius: 20px;
    border: 1px solid var(--accent);
    padding: 8px 16px;
    box-sizing: border-box;
    transition: 0.2s;
    position: absolute;
    bottom: 24px;
}

.product-line-more span {
    font-size: 20px;
}

/*======================WoodenSection=====================*/
#woodenSection {
    height: 100vh;
    width: 100%;
    margin: 148px 0 0;
    padding: 0 160px;
    background-image: url('../images/wood_back.png');
    background-size: cover;
    transform: scaleX(1.1);
}

#woodenSection>img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

/*======================History Section=====================*/
.history img {
    transform: scale(0.5, 0.5);
    opacity: 0;
    transition: 0.3s;
    transition-timing-function: ease-out;
}

.history:hover img {
    transform: scale(1.3, 1.3);
    opacity: 1;
}

#textOverlay2 {
    background: var(--primary);
    bottom: 0;
    opacity: 0.8;
    margin-right: 520px;
}