* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #111;
    color: white;
}

/* SLIDER */
.slider {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 300px;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s;
}

.slide.active {
    opacity: 1;
}

/* TITLE */
.site-title {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #000;
}

.site-title h1 {
    font-size: 40px;
    margin-left: 10px;
}

.logo {
    height: 40px;
}

/* PARALLAX SECTIONS */
.parallax {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 60px 20px;
}

.products {
    background-image: url("imgs/pc1.png");
}

.services {
    background-image: url("imgs/pc1.png");
}

.parallax h2 {
    text-align: center;
    margin-bottom: 30px;
}

/* CARDS */
.cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background: #000000;   /* solid black */
    width: 250px;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

.card img {
    width: 100%;
    border-radius: 5px;
}

.price {
    color: #00ffcc;
    font-weight: bold;
}

/* FOOTER */
footer {
    background: #000;
    text-align: center;
    padding: 20px;
}

footer a {
    color: #00ffcc;
    margin: 0 10px;
    text-decoration: none;
}
