/* Custom Styles für KOPF-KUNST */

:root {
    --primary-color: #d4af37;
    --secondary-color: #6c757d;
    --accent-color: #d4af37;
}

body {
    padding-top: 56px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #2b2b2b;
    color: #e0e0e0;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Navigation */
.navbar {
    transition: all 0.3s ease;
    background-color: #1a1a1a !important;
}

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: 1px;
    color: #f5c2d8 !important;
    padding: 0;
}

.logo-img {
    height: 45px;
    width: auto;
    transition: opacity 0.3s ease;
}

.logo-img:hover {
    opacity: 0.8;
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
    color: #e0e0e0 !important;
}

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

.nav-link.active {
    color: #d4af37 !important;
}

/* Hero Section */
.hero-section {
    min-height: 80vh;
    background: linear-gradient(135deg, #d4af37 0%, #f5c2d8 100%);
    background-size: 400% 400%;
    background-position: center;
    position: relative;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

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

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 3px;
}

.hero-tagline {
    font-weight: 300;
    font-style: italic;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-buttons a {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-tagline {
        font-size: 1.5rem;
    }
    
    .hero-section {
        min-height: 60vh;
    }
}

/* Cards */
.card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #3a3a3a;
    color: #e0e0e0;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3) !important;
}

.card .bi {
    background: linear-gradient(135deg, #d4af37 0%, #f5c2d8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Carousel */
.carousel-item img {
    height: 500px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .carousel-item img {
        height: 300px;
    }
}

/* Buttons */
.btn {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37 0%, #c49a2e 100%);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #c49a2e 0%, #d4af37 100%);
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Section Spacing */
section {
    padding: 80px 0;
}

section:nth-child(even) {
    background-color: #323232;
}

section:nth-child(odd) {
    background-color: #2b2b2b;
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

h2 {
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
}

.text-center h2::after {
    left: 50%;
}

/* Table Styling */
.table {
    color: #e0e0e0;
}

.table-striped tbody tr {
    background-color: transparent;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(255, 255, 255, 0.05);
}

.table-striped tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Alert Styling */
.alert-info {
    background-color: #3a3420;
    border-color: #5a5030;
    color: #f5d99d;
}

/* Footer */
footer {
    margin-top: 80px;
}

footer a:hover {
    text-decoration: underline !important;
}

/* Text Primary Override */
.text-primary {
    color: #d4af37 !important;
}

/* Philosophy Quote */
.philosophy-quote {
    margin: 80px auto;
    padding: 60px 50px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(245, 194, 216, 0.15) 100%);
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, #d4af37, #f5c2d8) 1;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
}

.philosophy-quote::before {
    content: '"';
    position: absolute;
    top: -30px;
    left: 30px;
    font-size: 140px;
    background: linear-gradient(135deg, #d4af37 0%, #f5c2d8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.5;
    font-family: Georgia, serif;
    line-height: 1;
    font-weight: bold;
}

.philosophy-quote::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, #f5c2d8, transparent);
}

.philosophy-quote blockquote {
    margin: 0;
    padding: 30px 0;
}

.philosophy-quote p {
    font-size: 1.4rem;
    font-style: italic;
    color: #f0f0f0;
    line-height: 2;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .philosophy-quote {
        padding: 40px 30px;
        margin: 60px 0;
    }
    
    .philosophy-quote p {
        font-size: 1.15rem;
        line-height: 1.8;
    }
    
    .philosophy-quote::before {
        font-size: 80px;
        top: -20px;
        left: 15px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}
