/* General reset and styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #111;
    color: #fff;
}

/* Header Styling */
header {
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 2;
    /* Allows absolute positioning for the icon if needed */
}

/* Header with text and image alignment */
header h1 {
    font-size: 3rem;
    font-weight: bold;
    display: inline-block;
    /* Makes the text and image sit next to each other */
    vertical-align: middle;
    margin-right: 15px;
    /* Space between text and the image */
}

header h1 img {
    width: 60px;
    /* Adjust the size of the image */
    height: auto;
    vertical-align: middle;
    /* Aligns the image with the text */
}

.stripes-container {
    position: absolute;
    /* Take the stripes out of normal document flow */
    bottom: 0;
    /* Start at the top of the page */
    left: 50%;
    /* Center the stripes horizontally */
    transform: translateX(-50%);
    /* Adjust position to perfectly center the container */
    display: flex;
    gap: 40px;
    z-index: 0;
    /* Ensure stripes are behind the other content */
}

.stripe {
    width: 30px;
    height: 800px;
    background-color: #00bfff;
}

.tread-icon {
    font-size: 2rem;
    margin-left: 10px;
}

nav {
    text-align: right;
    padding: 20px;
}

nav ul {
    list-style-type: none;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
}

/* Main section with text and other elements */
.main-section {
    position: relative;
    z-index: 1;
    /* Ensure this content stays above the stripes */
    padding: 20px;
}

.text-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
    /* Ensure it stays above even more important items like icons */
}

.text-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.text-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.home-button,
.catalog-button,
.technologie-button,
.contact-button {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    margin-right: 10px;
    /* Add spacing to the right of each button */
}

.shop-button {
    display: inline-block;
    background-color: #00bfff;
    color: #000;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
}

.shop-button:hover {
    background-color: #0080ff;
    color: #fff;
}

.logo-container {
    position: absolute;
    /* Take it out of the document flow */
    bottom: -200px;
    /* Adjust this value to control the vertical placement */
    right: 100px;
    /* Adjust this value to control how far from the left you want it */
    z-index: 1;
    /* Make sure it's above the stripes but below the text content */
}

.logo-container img {
    max-width: 500px;
    /* Adjust size of the logo */
    height: auto;
}

footer {
    text-align: left;
    padding: 20px;
}

footer ul {
    list-style-type: none;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
}

/* Products section */
.products-section {
    display: none;
    padding: 40px;
    text-align: center;
}

.products-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.product {
    display: inline-block;
    margin: 20px;
    text-align: center;
}

.product img {
    max-width: 150px;
}

.product h3 {
    margin: 10px 0;
    font-size: 1.5rem;
}

.price-button {
    display: inline-block;
    background-color: #00bfff;
    color: #000;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
}

.more-link {
    display: block;
    margin-top: 30px;
    font-size: 1.2rem;
    color: #00bfff;
    text-decoration: none;
}

.more-link:hover {
    text-decoration: underline;
}