
html
{
    overflow-x: hidden;
}

body
{
    font-family: "Assistant", sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

a
{
    color: black;
    cursor: pointer;
}

.header a
{
    text-decoration: none;
    font-size: .9rem;
}


a:hover
{
    color: #555;
    text-decoration: underline;
}

p
{
    line-height: 1.4;

}

.logo-container
{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    padding-top: 5px;
}

.header
{     
    border-bottom: 1px solid #808080;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 15px;
}

.header a
{
    margin-left: 20px;
    margin-right: 20px;
}

.hero
{
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('img/hero3-960.webp');
    background-size: cover;
    background-position: center;
    height: calc(100vh - 80px);
    text-align: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 0;
    vertical-align: middle;
}

@media (min-width: 601px)
{
    .hero
    {
        background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('img/hero3-1400.webp');
    }
}

@media (min-width: 901px)
{
    .hero
    {
        background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('img/hero3-2000.webp');
    }
}

@media (min-width: 1401px)
{
    .hero
    {
        background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('img/hero3-2800.webp');
    }
}

.hero-text-container
{
    padding: 30px 10vw;
    color: white;
    background-color: white;
    opacity: 0.90;
    display: inline-block;
    margin-top: calc(25vh);
    margin-left: 20px;
    margin-right: 20px;
    color: #505050;
    border-radius: 12px;
}

h1
{
    font-weight: 600;
    letter-spacing: -.5px;
    margin-bottom: 8px;
    font-family: "Baloo 2", sans-serif;
    line-height: 1.1;
}

h2
{
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: .5px;
    margin-top: 0;
    margin-bottom: 22px;
}

/* Container holding the button and menu */
.dropdown
{
    position: relative;
    display: inline-block;
}

/* Style the button trigger */
.dropdown-btn 
{
    margin-left: 20px;
    margin-right: 20px;
    font-size: .9rem;
    cursor: pointer;
}

/* Hide menu by default and position it directly below the button */
.dropdown-content
{
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 230px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    border: 1px solid #e0e0e0;
    z-index: 1;
}

.dropdown-content a:first-child
{
    padding-top: 22px;
}

.dropdown-content a:last-child
{
    padding-bottom: 22px;
}

/* Style links inside the menu */
.dropdown-content a
{
    color: #333333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change link color on mouse hover */
.dropdown-content a:hover
{
    text-decoration: underline;
}

/* Crucial step: Show the dropdown menu when hovering over the container */
.dropdown:hover .dropdown-content
{
    display: block;
}

/* Underline on hover */
.dropdown:hover .dropdown-btn
{
    text-decoration: underline;
}

.button
{ 
    padding: 10px 26px;
    border: 1.5px solid #606060;
    background-color: transparent;
    border-radius: 8px;
    cursor: pointer;
}

.button:hover
{
    background-color: #f0f0f0;
}

.section
{
    padding: 40px 60px;
    border-bottom: 2px solid #e0e0e0;
}

.section-title
{
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.products
{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.product
{
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.product-image img
{
    width: 20vw;
    min-width: 300px;
}

.product-title
{
    margin-top: .5rem;
    font-size: .9rem;
    text-align: center;
}

.product-price
{
    display: none;
}

.product-detail
{
    position: fixed;
    width: 90vw;
    height: 90vh;
    top: 5vh;
    left: 5vw;
    background-color: white;;
    border: 1px solid #a0a0a0;
    z-index: 10;
    text-align: center;
}

.product-detail img
{
    margin-left: 5vw;
    margin-top: 5vw;
    max-width: 80vw;
    max-height: 80vh;
}

@media (max-width: 480px)
{
    .header
    {
        flex-wrap: wrap;
        row-gap: 6px;
    }

    .header a
    {
        margin-left: 6px;
        margin-right: 6px;
        font-size: .8rem;
    }

    .dropdown-btn
    {
        margin-left: 6px;
        margin-right: 6px;
        font-size: .8rem;
    }
}