/* Global Styles */
:root {
    --primary-color: #09000a;
    --secondary-color: #525254;
    --text-color: #ffffff;
    --light-text: #ffffff;
    --background-color: #1a1a1a;
    --background-gradient: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-color);
    background: var(--background-gradient);
    padding-top: 76px; /* Height of fixed navbar */
}

h1, h2, h3 {
    font-family: 'Dancing Script', cursive;
}

/* Navigation */
.navbar {
    background-color: var(--primary-color);
    padding: 1rem 0;
}

.navbar-brand img {
    max-height: 50px;
}

.nav-link {
    color: var(--light-text) !important;
    font-weight: 300;
    margin: 0 0.5rem;
}

.nav-link:hover {
    color: #bababa !important;
}

/* Hero Section */
.hero {
    background: url('../images/Schmal3.jpg') no-repeat center center;
    background-size: contain;
    color: var(--light-text);
    padding: 150px 0;
    text-align: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

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

.hero .lead {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Video Section */
.video-section {
    background-color: transparent;
    padding: 4rem 0;
}

.video-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.video-container:hover {
    transform: scale(1.02);
}

.video-container iframe {
    border: none;
}

/* Gallery Cards */
.gallery-card {
    transition: transform 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-5px);
}

.gallery-card .card {
    border: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
}

.gallery-card:hover .card {
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.gallery-card .card-img-container {
    overflow: hidden;
    position: relative;
}

.gallery-card .card-img-top {
    transition: transform 0.3s ease;
}

.gallery-card:hover .card-img-top {
    transform: scale(1.05);
}

.gallery-card .card-body {
    background-color: #fff;
    padding: 1.5rem;
}

.gallery-card .card-title {
    color: #333;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.gallery-card .card-text {
    color: #666;
    font-size: 0.9rem;
}

/* Gallery Preview */
.gallery-preview {
    background-color: rgba(0, 0, 0, 0.2);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.overlay h3 {
    color: var(--light-text);
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.footer a {
    color: var(--light-text);
    text-decoration: none;
}

.footer a:hover {
    color: #bababa;
}

.social-links a {
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #bababa;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .lead {
        font-size: 1.2rem;
    }
    
    .gallery-item {
        margin-bottom: 1rem;
    }
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Galerie Bildstile */
.gallery img {
    height: 250px; /* Feste Höhe für alle Bilder */
    width: 100%; /* Volle Breite des Containers */
    object-fit: cover; /* Bild wird proportional skaliert und zugeschnitten */
    transition: transform 0.3s ease; /* Sanfte Hover-Animation */
}

.gallery img:hover {
    transform: scale(1.02); /* Leichte Vergrößerung beim Hover */
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .gallery img {
        height: 200px; /* Kleinere Höhe auf mobilen Geräten */
    }
}

/* Card Styling */
.card {
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-text);
}

.card-title {
    color: var(--light-text);
}

.card-text {
    color: var(--light-text);
}

/* Section Backgrounds */
section {
    background-color: transparent;
}

section.bg-light {
    background-color: rgba(0, 0, 0, 0.2) !important;
} 