@charset "utf-8";
/* CSS Document */

body {
    overflow-x: hidden;
}

/* Hero Section mit Hintergrundbild */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../_img/_backrounds/SE-backround-hero_ver01.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    padding-top: 100px; /* Erhöht von 76px auf 100px, damit das Logo nicht klebt */
    display: flex;
    align-items: center;
}

/* Hero Logo responsive */
.hero-section img {
    max-width: 80vw !important;
}

/* Hero Exhibition Card */
.hero-section .bg-dark {
    border: 1px solid rgba(255,255,255,0.3);
}

/* Hero Content auf Mobile Korrektur */
@media (max-width: 768px) {
    .hero-content {
        margin-top: 0; /* Negatives Margin entfernt, damit Logo nicht hinter Navbar verschwindet */
    }
}

/* Navigation Padding-Korrektur */
section:not(.hero-section) {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Ankerlink-Offset wegen fixed Navbar */
#about, #paintings, #photos, #contact {
    scroll-margin-top: 80px;
}

/* Thumbnails allgemein */
.gallery-thumb {
    width: 100%;
    height: 250px;
    object-fit: cover;
    cursor: pointer;
    display: block;
    transition: opacity 0.2s ease;
}

.gallery-thumb:hover {
    opacity: 0.8;
}

/* Paintings Grid */
#paintings .row {
    overflow: hidden;
}

#paintings a {
    overflow: hidden;
    display: block;
    border-radius: 0.375rem;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
}

#paintings .gallery-thumb {
    object-fit: cover;
    transform: scale(2.75);
    transition: transform 0.3s ease;
    border-radius: 0;
}

#paintings .gallery-thumb:hover {
    transform: scale(2.90);
    opacity: 1;
}