body {
    padding-top: 56px;
    background-image: url("background.png"); 
    background-repeat: no-repeat; 
    background-size: cover; 
    background-position: center; 
    background-color: white;
}

.navbar {
    background-color: #DC143C;
}

.hero-section {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
    margin-bottom: 2rem;
    border-radius: .3rem;
}

.section-title {
    margin-bottom: 2rem;
    text-align: center;
}

.card-deck .card {
    margin-bottom: 1.5rem;
}

.product-list {
    margin-top: 2rem;
}

.product-item {
    border: 1px solid #ced4da;
    border-radius: .25rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

.product-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.about-section {
    margin-top: 2rem;
}

.history-item {
    margin-bottom: 1.5rem;
}

.history-year {
    font-size: 1.2rem;
    font-weight: bold;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 képarány */
    height: 0;
    overflow: hidden;
    margin-bottom: 1rem;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.support-section {
    margin-top: 2rem;
}

.support-item {
    margin-bottom: 1.5rem;
}

.support-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.news-section {
    margin-top: 2rem;
}

.news-item {
    margin-bottom: 2rem;
    border-bottom: 1px solid #ced4da;
    padding-bottom: 1rem;
}

.news-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.news-date {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

/* Lábléc (alul) */
.bg-dark {
    background-color: #DC143C !important; /* Vagy #FF0000, red, stb. */
}

.image-gallery {
    display: flex;
    overflow-x: auto;
    margin-bottom: 1rem;
}

.gallery-item {
    flex: 0 0 auto;
    margin-right: 1rem;
    width: 200px;
    /* Állítsd be a kívánt képszélességet */
    height: auto;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}

.data-table th,
.data-table td {
    border: 1px solid #ddd;
    padding: 0.5rem;
    text-align: left;
}

.data-table th {
    background-color: #f2f2f2;
}

.development-page {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 80vh;
            text-align: center;
        }

        .development-message {
            font-size: 2rem;
            color: #6c757d;
        }

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    padding: 1rem;
}

.product-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.product-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.product-card p {
    font-size: 0.9rem;
    color: #6c757d;
}

.data-table a {
        text-decoration: none;
        color: blue;
    }

    .data-table a:hover {
        text-decoration: underline;
    }

    .data-table a:visited {
        color: purple;
        text-decoration: underline;
    }