@font-face {
    font-family: Phenomena;
    src: url('src/fonts/phenomena-regular.eot');
    src: url('src/fonts/phenomena-regular.eot?#iefix') format('embedded-opentype'),
    url('src/fonts/phenomena-regular.woff2') format('woff2'),
    url('src/fonts/phenomena-regular.woff') format('woff'),
    url('src/fonts/phenomena-regular.ttf') format('truetype');
}

* {
    --text-primary-color: #242322;
    --text-secondary-color: #f6c581;
}

body, html {
    font-family: 'Phenomena';
    color: var(--text-primary-color);
    margin: 0 5%;
    scroll-behavior: smooth;
}

header {
    background: white; 
    width: 100%;
    display: flex;
    flex-direction: column;
}

h2 {
    font-size: 54px;
}

.header-logo {
    margin: 75px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-logo-img {
    min-width: 15vw;
    transform: rotate(90deg); 
}

.header-link-parent {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-link {
    margin: 0 50px;
    font-size: 42px;
    color: var(--text-primary-color);
    padding: 5px 10px 10px 10px;
    border: 2px solid white;
}

.header-link-divider {
    width: 50%;
}

.header-link-parent .header-link-divider:first-child .header-link {
    float: right;
}

.header-link:hover {
    color: var(--text-secondary-color);
    background-color: white;
    border: 2px solid var(--text-secondary-color);
}

.block {
    width: 100%;
    margin-top: 200px;
    display: flex;
    flex-direction: column;
}

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

.text-alinea-center {
    text-align: center; 
    margin: 100px 10%; 
    font-size: 28px;
}

.product .product-parent {
    display: flex;
    margin: 0 50px 0 0;
}

.product-reverse .product-parent {
    display: flex;
    margin: 0 0 50px 0;
}

.product {
    display: flex;
    margin: 50px auto;
    width: 100%;
}

.product-reverse {
    display: flex;
    flex-direction: row-reverse;
    margin: 50px auto;
    width: 100%;
}

.product-image {
    width: 550px; 
    height: 700px;
}

.product .product-image {
    float: right;
}

.product .product-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.product-reverse .product-info {
    width: 100%;
    margin: 0 50px 0 0;
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: flex-end;
}

.product-name {
    font-size: 28px;
}

.product-price {
    font-weight: 100;
    font-size: 42px;
}

.button-wide-parent {
    width: 100%; 
    height: 450px; 
    display: flex; 
    justify-content: center;
    align-items: center;
}

.button-secondary-big {
    font-family: 'Phenomena';
    background-color: white; 
    padding: 10px 15px 15px 15px; 
    font-size: 42px; 
    color: var(--text-secondary-color); 
    border: 2px solid var(--text-secondary-color);
    height: fit-content;
}

.button-secondary-big:hover {
    color: white; 
    border: 2px solid transparent;
    cursor: pointer;
}

.button-ghost-primary {
    color: var(--text-primary-color); 
    border: 2px solid var(--text-primary-color);
    background-color: transparent;
}

.button-ghost-primary:hover {
    color: white; 
    border: 2px solid transparent;
    background-color: var(--text-primary-color);
}

.button-ghost-secondary {
    color: var(--text-secondary-color); 
    border: 2px solid var(--text-secondary-color);
    background-color: transparent;
}

.button-ghost-secondary:hover {
    color: white; 
    border: 2px solid transparent;
    background-color: var(--text-secondary-color);
}

.button-ghost-contrast {
    color: white; 
    border: 2px solid white;
    background-color: transparent;
}

.button-ghost-contrast:hover {
    color: black; 
    border: 2px solid transparent;
    background-color: white;
    mix-blend-mode: lighten;
}

.block-shrink-parent {
    display: flex;
    height: 400px;
    justify-content: center;
}

.block-shrink {
    width: 100%;
    background-color: #888;
    background-image: url('src/img/neckalce_banner_test_1.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: bottom;
    background-position-x: left;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width: 720px) {
    .header-logo {
        margin: 75px 0;
    }
    
    .header-logo-img {
        transform: rotate(90deg); 
        width: 50%;
    }

    .header-link-parent {
        flex-direction: column;
    }

    .header-link-divider {
        width: 100%;
        display: flex;
        justify-content: center;
        margin: 20px 0;
    }

    .header-link-parent .header-link-divider:first-child .header-link {
        float: none;
    }

    .header-link {
        margin: 0;
    }

    .product, .product-reverse {
        flex-direction: column;
    }

    .product-image {
        width: 100%;
        height: auto;
    }

    .product .product-parent,
    .product-reverse .product-parent {
        margin: 0;
    }

    .product-reverse .product-info,
    .product .product-info {
        margin: 25px 0;
        align-items: flex-start;
        text-align: left;
    }
}