﻿body {
    scroll-behavior: smooth;
}

.text-shadow {
    text-shadow: 0px 0px 5px white;
}

.hero {
    background: url('./images/slider4.png') left/cover no-repeat;
    color: white;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-attachment: fixed;
}

.product-card {
    background: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 1)), url('./images/vlna.png') top center/cover no-repeat;
}

    .product-card img {
        border-radius: 1rem;
        transition: transform 0.3s ease;
    }

    .product-card:hover img {
        transform: scale(1.05);
    }

.cta {
    background-color: #ffc107;
    color: #000;
}

footer {
    background-color: #111;
    color: #ccc;
    padding: 2rem 0;
}

.img-max {
    max-height: 300px;
    width: auto;
    object-fit: contain;
}

.image-section {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin: auto;
}

    .image-section img {
        display: block;
        margin: 2rem auto;
        width: 50%;
        height: auto;
        object-fit: cover;
    }

.image-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.3); /* priehľadné pozadie */
    color: #fff;
    padding: 1rem;
    text-align: center;
    font-size: 1.25rem;
    font-weight: normal;
}

@media (max-width: 768px) {

    .text-shadow {
        text-shadow: none;
    }

    .image-text {
        position: static;
        background: none;
        color: #000;
        padding: 0;
        font-size: 1rem;
        font-weight: normal;
    }

    .image-section {
        box-shadow: none;
    }

        .image-section img {
            width: 75%;
            height: auto;
        }
}
