:root {
    --primary: #1a1a1a;
    --secondary: #d4af37;
    --accent: #c9a96e;
    --text-light: #f8f8f8;
    --text-dark: #333;
    --background: #0f0f0f;
    --card-bg: #1e1e1e;
    --gradient: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Playfair Display', serif;
    background: var(--background);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    letter-spacing: 0.5px;
}

p {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Header */
header {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    position: static;
    top: 0;
    z-index: 1000;
    padding: 2rem 0;
}

header h1 {
    text-align: center;
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    letter-spacing: 1px;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
}

header nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 300;
    font-size: 1.1rem;
    letter-spacing: 1px;
    padding: 10px 0;
    position: relative;
    transition: all 0.3s ease;
}

header nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

header nav a:hover::after {
    width: 100%;
}

header nav a:hover {
    color: var(--secondary);
}

/* Sections */
section {
    margin: 4rem 0;
}

.content-card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 4rem;
    margin: 3rem 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 1s;
}

.content-card:hover::before {
    left: 100%;
}

h2 {
    font-size: 3rem;
    color: var(--secondary);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--accent);
}

h3 {
    color: var(--secondary);
    font-size: 1.8rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    border-left: 4px solid var(--secondary);
    text-align: center;
}

p {
    margin-bottom: 2rem;
    text-align: justify;
}

/* Links */
a {
    color: var(--secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

a:hover {
    color: var(--accent);
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

/* Lists */
ul {
    margin-left: 2rem;
}

li {
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
}

li::before {
    content: '◆';
    color: var(--secondary);
    position: absolute;
    left: 0;
    top: 0;
}

/* FAQ */
#faq dt {
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--secondary);
    margin: 2.5rem 0 1rem 0;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 8px;
    border-left: 4px solid var(--secondary);
}

#faq dd {
    margin: 0 0 2rem 1rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.03);
    border-radius: 6px;
    border-left: 2px solid var(--accent);
}

/* Professional Gallery */
#portfolio {
    padding: 4rem 0;
}

.gallery-intro {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 10px;
}

.gallery-intro h3 {
    color: var(--secondary);
    font-size: 2rem;
    margin-bottom: 1rem;
    background: none;
    border: none;
    padding: 0;
}

.gallery-intro p {
    font-style: italic;
    color: var(--accent);
    font-size: 1.2rem;
}

.professional-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.7);
    transition: all 0.4s ease;
    cursor: pointer;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.2) 0%, transparent 50%, rgba(212, 175, 55, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

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

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: var(--text-light);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 2;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    color: var(--secondary);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-size: 0.9rem;
    margin: 0;
}

/* Social Sharing */
.social-sharing {
    text-align: center;
    padding: 3rem;
    background: var(--card-bg);
    border-radius: 10px;
    margin: 3rem 0;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.social-sharing h3 {
    color: var(--secondary);
    font-size: 2rem;
    margin-bottom: 2rem;
    background: none;
    border: none;
    padding: 0;
}

.social-sharing a {
    display: inline-block;
    margin: 0 1rem;
    padding: 15px 30px;
    background: linear-gradient(45deg, var(--secondary), var(--accent));
    color: var(--background);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-sharing a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.5);
    color: var(--background);
}

/* Contact */
#kontakt {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 4rem;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    margin: 3rem 0;
}

/* Footer */
footer {
    background: var(--primary);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    text-align: center;
    padding: 3rem;
    margin-top: 4rem;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    header h1 {
        font-size: 2.2rem;
    }

    header nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .content-card {
        padding: 2.5rem;
        margin: 2rem 0;
    }

    h2 {
        font-size: 2.2rem;
    }

    .professional-gallery {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gallery-item {
        height: 300px;
    }

    .gallery-item img {
        height: 300px;
    }
}

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

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--background);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}
