@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

.dm-sans {
    font-family: "DM Sans", sans-serif !important;
    font-optical-sizing: auto !important;
}

body {
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
}

.landing-page-navbar-logo {
    width: 100px;
}

.welcome-section {
    position: relative;

    background-image: url('../images/home_image_dummy.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.welcome-section::before {
    content: '';

    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.4);
}

.welcome-section > * {
    position: relative;
    z-index: 1;
}

.additional-info {
    position: relative;
    overflow: hidden;
    background-image: url('../images/home_image.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 110vh;
    display: flex;
    align-items: end;
}

.additional-info::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}

.additional-info > * {
    position: relative;
    z-index: 1;
}

.products {
    position: relative;
    overflow: hidden;
}

.products-track {
    display: flex;
    gap: 20px;

    width: max-content;
    padding: 0 40px;
}

.product-card {
    width: 400px;
    height: 70vh;

    flex-shrink: 0;

    background: white;
    border-radius: 20px;
    padding: 20px;

    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.landing-page-navbar {
    transform: translateY(-100%);
    transition: all 0.4s ease;
    opacity: 0;
}

.landing-page-navbar.show-navbar {
    transform: translateY(0);
    opacity: 1;
}

.product-name {
    width: fit-content;
    margin-inline: auto;
    padding: 12px 32px;
    border-radius: 999px;
    color: #1e384f;
    background-color: transparent;
    /* border: 2px solid #1e384f; */
    cursor: pointer;
    transition: all 0.35s ease;
}

.product-name:hover {
    background-color: #1e384f;
    color: white;
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(30, 56, 79, 0.3);
}
