@import url('https://fonts.googleapis.com/css2?family=Satisfy&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Carattere&display=swap');
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

.page-one {
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(
        rgba(10, 8, 6, 0.9), 
        rgba(10, 8, 6, 0.6)),
        url(../system_images/sc_background.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.navbar {
    background: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px clamp(20px, 6vw, 120px);
    transition: padding 0.4s ease;
    height: fit-content;
    font-size: 24px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    background-image: linear-gradient(
        rgba(20, 15, 12, 0.55), 
        rgba(20, 15, 12, 0.35));
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
}

.navbar h2 {
    font-family: "Satisfy", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
}

.nav-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.logo-name {
    margin-right: 20px;
}

.nav-options {
    list-style: none;
    display: flex;
    align-items: center;
    flex-direction: row;
    font-family: "EB Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 17px;
    margin-right: 20px;
    gap: clamp(40px, 6vw, 90px);
}

.nav-options a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: inherit;
}

.nav-options a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #C7A17A;
    transition: 0.3s;
}

.nav-options a:hover::after {
    width: 100%;
}

.nav-options a.active::after {
    width: 100%;
}

.nav-options a.active {
    color: #C7A17A;
}

.nav-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
}

.login {
    position: relative;
    background: none;
    border: none;
    padding: 0;
    color: white;
    font-family: "EB Garamond", serif;
    font-size: 17px;
    cursor: pointer;
}

.login::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #daaa81;
    transition: 0.3s;
}

.login:hover::after {
    width: 100%;
}

.login:hover {
    color: #daaa81;
    transition: 0.3s;
}

.sign_up {
    border: none;
    padding: 5px;
    border-radius: 20px;
    background: #C08552;
    font-family: "EB Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    letter-spacing: 1;
    font-style: normal;
    width: 110px;
    color: white;
    font-size: 17px;
    cursor: pointer;
    transition: scale 0.2 ease;
}

.sign_up:hover {
    background: #936339;
    scale: 1.05;
}

.sign_up:active {
    scale: 0.95;
}

.nav-item a, .nav-logo {
    color: rgb(255, 255, 255);
    text-decoration: none;
    cursor: pointer;
    
}

.nav-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.toggle-btn {
    color: #ffffff;
    font-size: 1.3rem;
    cursor: pointer;
    display: none;
}

.dropdown-menu {
    display: none;
    position: absolute;
    right: 2rem;
    top: 60px;
    width: 300px;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    overflow: hidden;
    transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dropdown-menu.open {
    height: 270px;
}

.dropdown-menu li {
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}

.nav-link:hover {
    color: #C7A17A;
    transition: 0.3s;
}

.dropdown-login {
    position: relative;
    background: none;
    border: none;
    color: white;
    font-family: "EB Garamond", serif;
    font-size: 17px;
    cursor: pointer;
}

.dropdown-login:hover {
    color: #daaa81;
    transition: 0.3s;
}

.dropdown-sign_up {
    border: none;
    border-radius: 20px;
    padding: 5px;
    background: #C08552;
    font-family: "EB Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    letter-spacing: 1;
    font-style: normal;
    color: white;
    font-size: 17px;
    cursor: pointer;
    transition: scale 0.2 ease;
}

.dropdown-sign_up:hover {
    background: #936339;
    scale: 1.05;
}

.dropdown-sign_up:active {
    scale: 0.95;
}

.dropdown-menu button {
    width: 100%;
    display: flex;
    justify-content: center;
}

@media (max-width: 992px) {
    .nav-options,
    .nav-buttons {
        display: none;
    }

    .toggle-btn {
        display: block;
    }

    .navbar {
        padding: 10px 24px;
    }

    .nav-logo {
        margin-right: auto;
    }

    .dropdown-menu {
        display: block;
    }
}

@media (max-width: 575px) {
    .dropdown-menu {
        left: 2rem;
        width: unset;
    }
}

.elevated {
    font-family: "Carattere", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 84px;
    color: white;
    padding-left: 17%;
    padding-top: 13%;
}

.sub {
    font-family: "EB Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: white;
    line-height: 1.5;
    letter-spacing: 1px;
    padding-top: 30px;
    padding-left: 17%;
    font-size: 20px;
}

.order_btn {
    border: none;
    padding: 10px;
    border-radius: 20px;
    background: #C08552;
    font-family: "EB Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    width: 110px;
    color: white;
    font-size: 14px;
    margin-top: 30px;
    margin-left: 17%;
    cursor: pointer;
}

.order_btn:hover {
    background: #936339;
    transition: 0.3s;
}

.page-two {
    display: flex;
    justify-content: space-between;
    min-height: 100vh;
    padding: 100px 8%;
    background: #F5EFE6;
    gap: 60px;
}

.page-two-content {
    margin-top: 90px;
    max-width: 610px;
    width: 100%;
}

.discover {
    margin-left: 10%;
    margin-top: 7%;
    margin-bottom: 15px;
    font-size: 60px;
    
}

.sub2 {
    margin-left: 10%;
    font-size: 22px;
    color: #5C4A42;
}

.get_yours {
    border: none;
    padding: 10px;
    border-radius: 20px;
    background: #C08552;
    font-family: "EB Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    width: fit-content;
    color: white;
    font-size: 16px;
    margin-top: 25px;
    margin-left: 10%;
    cursor: pointer;
}

.learn_more:hover {
    background: #936339;
    transition: 0.3s;
}

.page-two img {
    width: 400px;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
}

.page-divider1 {
    display: flex;
    margin: -200px 0;
}

.page-divider1 img {
    width: 400px;
    height: 400px;
    object-fit: contain;
}

.page-three {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: #F5EFE6;
}

.header-p3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 55px;
}

.header-p3 h2 {
    font-size: 62px;
    color: #3E2723;
    margin-bottom: 5px;
}

.header-p3 p {
    font-size: 20px;
    color: #5C4A42;
}

.bs_container {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    padding: 40px;
}

.product {
    position: relative;
    width: 305px;
    border-radius: 10px;
    box-shadow:
        0 6px 20px rgba(62, 39, 35, 0.12),
        0 1px 4px rgba(62, 39, 35, 0.08);
}

.product img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.details {
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
    padding: 25px 25px 40px 25px;
    background: #FFF8E7;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.bs_order_btn {
    border: none;
    padding: 10px;
    border-radius: 20px;
    background: #C08552;
    font-family: "EB Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 800;
    letter-spacing: 1;
    font-style: normal;
    width: 110px;
    color: white;
    font-size: 14px;
    cursor: pointer;
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
}

.bs_order_btn:hover {
    background:#936339;
    transition: 0.3s;
}

.page-divider2 {
    display: flex;
    margin: -200px 0;
}

.page-divider2 img {
    width: 400px;
    height: 400px;
    object-fit: contain;
    margin-left: 73%;
}

.page-four {
    min-height: 100vh;
    background: #F5EFE6;
}

.header4 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header4 h2 {
    font-size: 62px;
    color: #3E2723;
    margin-bottom: 5px;
}

.header4 p {
    font-size: 20px;
    color: #5C4A42;
    margin-bottom: 20px;
}

.page-two-content {
    margin-top: 90px;
    max-width: 610px;
    width: 100%;
}

.unique-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    padding: 40px;
} 

.unique {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 280px;
    height: 300px;
    padding: 40px 10px;
    background: #FFF8E7;
    border-radius: 10px;
    box-shadow: 
        0 6px 20px rgba(62, 39, 35, 0.12),
        0 1px 4px rgba(62, 39, 35, 0.08);
}

.unique img {
    width: 100px;
    margin-bottom: 20px;
    height: auto;
    object-fit: contain;
    display: block;
}

.unique-details {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 10px;
}

.unique-details h2 {
    font-size: 26px;
    color: #3E2723;
}

.unique-details p {
    font-size: 18px;
    color: #5C4A42;
}

.footer4 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer4 p {
    font-size: 22px;
    color: #5C4A42
}

.footer4 h1 {
    font-size: 34px;
    color: #3E2723;
}

.footer4 button {
    border: none;
    padding: 10px;
    border-radius: 20px;
    background: #C08552;
    font-family: "EB Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    width: 150px;
    color: white;
    font-size: 18px;
    cursor: pointer;
    margin-top: 15px;
}

.footer4 button:hover {
    background: #936339;
    transition: 0.3s;
}

.page-five {
    position: relative;
    align-content: center;
    width: 100%;
    height: 672px;
    background-image: linear-gradient(
        rgba(10, 8, 6, 0.95) 0%, 
        rgba(10, 8, 6, 0.4) 40%),
        url(../system_images/sc_background2.png);
    background-size: 1584px 672px;
    background-position: center;
    background-repeat: no-repeat;
}

.text-container {
    margin-left: 170px;
}

.text-container h2 {
    font-size: 58px;
    color: white;
    margin-top: 50px;
    margin-bottom: 20px;
}

.text-container p {
    font-size: 26px;
    color: white;
    margin-bottom: 20px;
}

.text-container button {
    border: none;
    padding: 10px;
    border-radius: 20px;
    background: #C08552;
    font-family: "EB Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    width: 150px;
    color: white;
    font-size: 18px;
    cursor: pointer;
    margin-top: 15px;
}

.text-container button:hover {
    background:#936339;
    transition: 0.3s;
}

.page-five img {
    position: absolute;
    top: -90px;
    left: 0;
    width: 300px;
    height: 400px;
    object-fit: contain;
}

.page-six {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 108vh;
    background: #F5EFE6;
}

.header-p6 {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 90px;
}

.header-p6 h2 {
    font-size: 58px;
    color:#3E2723;
    margin-bottom: 10px;
}

.header-p6 p {
    font-size: 22px;
    color: #5C4A42;
    margin-bottom: 40px;
}

.feedback {
    position: relative;
    padding: 45px 40px;
    width: 1000px;
    height: auto;
    min-height: 500px;
    background: #FFF8E7;
    border-radius: 10px;
    box-shadow: 
        0 6px 20px rgba(62, 39, 35, 0.12),
        0 1px 4px rgba(62, 39, 35, 0.08);
    align-items: center;
}

.message-name {
    height: 271px;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.quotation h2 {
    line-height: 0.8;
    font-size: 150px;
    font-style: italic;
    color: #3E2723;
}

.message {
    text-align: center;
    font-size: 30px;
    color: #3E2723;
}

.customer-name {
    text-align: center;
}

.page-six img:first-child {
    position: absolute;
    left: 0;
    top: 560px;
    width: 400px;
    height: auto;
    object-fit: contain;
    z-index: 1;
}

.page-six img:nth-child(2) {
    position: absolute;
    right: 0px;
    top:80px;
    width: 400px;
    height: auto;
    object-fit: contain;
    z-index: 1;
}

.btn-left, .btn-right {
    border: none;
    padding: 5px;
    border-radius: 20px;
    background: #C08552;
    font-family: "EB Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 800;
    letter-spacing: 1;
    font-style: normal;
    width:  80px;
    height: 80px;
    color: white;
    font-size: 26px;
    cursor: pointer;
    position: absolute;
}

.btn-left {
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
}

.btn-right {
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
}

.btn-left:hover, .btn-right:hover {
    background: #936339;
    transition: 0.3s;
}

.last-page {
    position: relative;
    min-height: 140vh;
    background: #F5EFE6;
    display: flex;
    flex-direction: column;
}

.bgs {
    display: flex;
    flex-direction: row;
}

.first-img {
    width: 972px;
    height: 500px;
    background-image: linear-gradient(
        rgba(10, 8, 6, 0.95) 0%, 
        rgba(10, 8, 6, 0.4) 40%),
        url(../system_images/first-img.png);
    background-size: 972px 500px;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    padding: 80px 40px;
}

.second-img {
    width: 550px;
    height: 500px;
    background-image: linear-gradient(
        rgba(10, 8, 6, 0.95) 0%, 
        rgba(10, 8, 6, 0.4) 40%),
        url(../system_images/second-img.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.first-img h2 {
    color: white;
    font-size: 50px;
    margin-bottom: 20px;
}

.first-img p {
    color: rgb(63, 126, 220);
    font-size: 25px;
}

.first-img button {
    border: none;
    padding: 10px;
    border-radius: 20px;
    background: #C08552;
    font-family: "EB Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    width: 200px;
    color: rgb(255, 255, 255);
    font-size: 18px;
    cursor: pointer;
    margin-top: 20px;
}

.first-img button:hover {
    background: #936339;
    transition: 0.3s;
}

.contacts {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: 100%;
    height: 521px;
    background-image: linear-gradient(
        rgba(0, 0, 0, 0.5),
        rgba(0, 0, 0, 0.3)),
        url(../system_images/coffee-beans.png);
    background-size: 100% 521px;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding-top: 130px;
}

.first-col h2 {
    font-size: 48px;
    margin-top: 30px;
}

.first-col p {
    font-size: 18px;
    margin-top: 40px;
}

.second-col h2, .third-col h2, .last-col h2 {
    font-size: 32px;
    margin-top: 30px;
}

.second-col li, .third-col li, .last-col li {
    font-size: 20px;
    margin-top: 20px;
    list-style: none;
}

.last-page img {
    position: absolute;
    display: block;
    width: 350px;
    height: auto;
    top: -10%;
    transform: translateY(50%);
}
