/* Styles for both pages */

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

h1 {
    margin-top: -20px;
    margin-bottom: -20px;
}

h2 {
    margin-top: 5px;
    margin-bottom: 5px;
}

/* 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 */
}

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

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

nav ul li {
    display: inline;
    margin-right: 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 */
}

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

section {
    padding: 40px;
    text-align: center;
}

/* Product section specific */
.products-section {
    padding: 40px;
}

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

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

.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;
}