.home-main {
    padding: 0; /* Remove padding for full-width sections */
}

.hero-section {
    background: url('images/home.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 8rem 2rem;
    height: 92vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-section p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.art-preview-section {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 2rem;
    /*padding: 4rem 2rem;*/
    padding: 4rem 2rem 0 2rem;
    background-color: var(--secondary-color);
}

.art-preview-section h3 {
    font-weight: 200;
}

.art-preview-quote {
    opacity: 0.6;
    font-style: italic;
}

.art-link {
    text-decoration: none;
    color: var(--text-color);
    text-align: center;
    transition: transform 0.3s ease-in-out;
    flex: 1; /* Allows links to grow and shrink */
}

.art-link:hover {
    transform: scale(1.05);
}

.art-link img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.art-link h3 {
    margin-top: 1rem;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .hero-section {
        padding: 5rem 1rem;
    }
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .art-preview-section {
        flex-direction: column;
        padding: 2.5rem 2rem 0 2rem;
    }

    .art-preview-section p {
        text-align: center;
    }
}