/* Images Styles - Voetbal Wedden Nederland */

.hero-image {
    width: 100%;
    margin: 0 0 2.5rem 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(26, 42, 68, 0.15);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.article-image {
    margin: 2rem 0 2.5rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(26, 42, 68, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(26, 42, 68, 0.18);
}

.article-image img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.article-image:hover img {
    transform: scale(1.02);
}

/* Dark mode adjustments */
@media (prefers-color-scheme: dark) {
    .hero-image {
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    }
    
    .article-image {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    }
    
    .article-image:hover {
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .hero-image {
        margin: 0 0 2rem 0;
        border-radius: 12px;
    }
    
    .article-image {
        margin: 1.5rem 0 2rem 0;
        border-radius: 8px;
    }
}

/* Print styles */
@media print {
    .hero-image,
    .article-image {
        box-shadow: none;
        break-inside: avoid;
    }
}

/* Footer content */
.footer-content {
    max-width: 72rem;
    margin: 0 auto;
    text-align: center;
}

.footer-content p {
    max-width: none;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-content a {
    color: rgba(255, 255, 255, 0.9);
}
