:root {
    --primary-color: #1d1d1d;
    --secondary-color: orange;
    --text-color: white;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

body {
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--primary-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;

    background-image: url("images/hero-bg.jpg");
    background-size: cover;
    background-position: center;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

header {
    padding: 2rem 0;
}

main {
    flex: 1 0 auto;
}

footer {
    text-align: center;
    padding: 1rem 0;
    flex-shrink: 0;
}

.logo {
    text-align: center;
    margin-bottom: 1rem;
}

.logo img {
    max-width: 200px;
    height: auto;
}

.sub-header {
    color: var(--secondary-color);
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.product {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.product-image {
    width: 100%;
    max-width: 420px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.product-thumbnail {
    padding: 1rem;
}

.thumbnail {
    width: 210px;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
}

.product-description {
    padding: 1rem;
}

.product-description h2 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    cursor: pointer !important;
}

a:hover {
    text-decoration: underline;
    cursor: pointer !important;
}

a img:hover {
    outline: 1px solid orange;
}

@media (min-width: 768px) {
    .product {
        display: flex;
        align-items: center;
    }

    .product-image {
        width: auto;
        max-width: 50%;
    }

    .product-description {
        width: 100%;
    }
}