:root {
    --primary-color: #1a1a1a;
    --secondary-color: #d4af37;
    --light-color: #f8f8f8;
    --dark-color: #333;
    --gray-color: #777;
    --light-gray: #f1f1f1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #fff;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Loader Styles */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.loader-circle {
    width: 80px;
    height: 80px;
    border: 5px solid rgba(212, 175, 55, 0.2);
    border-top-color: var(--secondary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

.loader-text {
    color: var(--light-color);
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: 2px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.btn-gold {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.btn-gold:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-gold:active {
    transform: translateY(-1px);
}

.btn-dark {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.btn-dark:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(26, 26, 26, 0.2);
}

.btn-small {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 8px 20px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
}

.btn-small:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    transition: width 0.5s ease;
}

.section-title:hover::after {
    width: 100px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
}

.gold-underline {
    position: relative;
    display: inline-block;
}

.gold-underline::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.gold-underline:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(26, 26, 26, 0.9);
    transition: all 0.5s ease;
    backdrop-filter: blur(10px);
}

.header.scrolled {
    background-color: rgba(26, 26, 26, 0.95);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light-color);
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.logo:hover {
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
    position: relative;
}

.nav-links a {
    color: var(--light-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Language Dropdown */
/* Alle CSS-Stile bleiben gleich wie in der vorherigen Version */
/* ... */

/* Nur die Sprachauswahl-spezifischen Styles werden hier gezeigt */

.language-dropdown {
    position: relative;
    display: inline-block;
    margin-left: 20px;
    z-index: 1001;
}

.language-dropdown-btn {
    background: none;
    border: none;
    color: var(--light-color);
    cursor: pointer;
    padding: 8px 15px;
    font-size: 14px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.1);
}

.language-dropdown-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.dropdown-icon {
    margin-left: 8px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.language-dropdown.active .dropdown-icon {
    transform: rotate(180deg);
}

.language-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: var(--primary-color);
    min-width: 150px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-top: 2px solid var(--secondary-color);
    border-radius: 0 0 4px 4px;
    overflow: hidden;
    animation: fadeIn 0.3s ease-out;
}

.language-dropdown.active .language-dropdown-content {
    display: block;
}

.language-option {
    color: var(--light-color);
    padding: 10px 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.language-option:hover {
    background-color: rgba(212, 175, 55, 0.2);
    color: var(--secondary-color);
}

.language-option .flag-icon {
    margin-right: 10px;
}

/* Rest des CSS bleibt gleich */
/* ... */

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger .line {
    width: 25px;
    height: 2px;
    background-color: var(--light-color);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.hamburger.toggle .line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.toggle .line:nth-child(2) {
    opacity: 0;
}

.hamburger.toggle .line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1489987707025-afc232f7ea0f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(26, 26, 26, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--light-color);
    max-width: 600px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

@keyframes fadeInUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--light-color);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* Collection Section */
.collection {
    padding: 100px 0;
    background-color: var(--light-color);
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.collection-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(20px);
}

.collection-item.animate__animated {
    opacity: 1;
    transform: translateY(0);
}

.collection-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.collection-img-container {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.collection-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.collection-item:hover .collection-overlay {
    opacity: 1;
}

.collection-item:hover img {
    transform: scale(1.1);
}

.collection-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    color: var(--light-color);
    transform: translateY(20px);
    transition: transform 0.5s ease;
    opacity: 0;
}

.collection-item:hover .collection-info {
    transform: translateY(0);
    opacity: 1;
}

.collection-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.collection-info p {
    margin-bottom: 15px;
}

/* Custom Section */
.custom {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.custom .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.custom-content {
    opacity: 0;
    transform: translateX(-20px);
}

.custom-content.animate__animated {
    opacity: 1;
    transform: translateX(0);
}

.custom-content p {
    margin-bottom: 20px;
}

.custom-list {
    list-style: none;
    margin: 30px 0;
}

.custom-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateX(-10px);
}

.custom-list li.animate__animated {
    opacity: 1;
    transform: translateX(0);
}

.custom-list i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

.custom-image {
    opacity: 0;
    transform: translateX(20px);
}

.custom-image.animate__animated {
    opacity: 1;
    transform: translateX(0);
}

.image-frame {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.image-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 10px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    z-index: 1;
    pointer-events: none;
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.custom-image:hover img {
    transform: scale(1.05);
}

/* Consultation Section */
.consultation {
    padding: 100px 0;
    background-color: var(--primary-color);
    color: var(--light-color);
    text-align: center;
}

.consultation .section-title::after {
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary-color);
}

.consultation-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 8px;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(20px);
}

.step.animate__animated {
    opacity: 1;
    transform: translateY(0);
}

.step:hover {
    transform: translateY(-10px);
    background-color: rgba(212, 175, 55, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.step h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--light-color);
}

.about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    opacity: 0;
    transform: translateX(-20px);
}

.about-image.animate__animated {
    opacity: 1;
    transform: translateX(0);
}

.about-content {
    opacity: 0;
    transform: translateX(20px);
}

.about-content.animate__animated {
    opacity: 1;
    transform: translateX(0);
}

.about-content p {
    margin-bottom: 20px;
}

.signature {
    margin-top: 30px;
    font-style: italic;
    font-weight: 600;
    color: var(--secondary-color);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: var(--light-color);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-info {
    padding: 30px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 8px;
    opacity: 0;
    transform: translateX(-20px);
}

.contact-info.animate__animated {
    opacity: 1;
    transform: translateX(0);
}

.contact-info h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 10px;
    color: var(--secondary-color);
    width: 20px;
    text-align: center;
}

.contact-form {
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateX(20px);
}

.contact-form.animate__animated {
    opacity: 1;
    transform: translateX(0);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Raleway', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.form-group textarea {
    height: 150px;
    resize: none;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 80px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    opacity: 0;
    transform: translateY(20px);
}

.footer-logo.animate__animated {
    opacity: 1;
    transform: translateY(0);
}

.footer-logo h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.footer-links {
    opacity: 0;
    transform: translateY(20px);
}

.footer-links.animate__animated {
    opacity: 1;
    transform: translateY(0);
}

.footer-links h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--light-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-social {
    opacity: 0;
    transform: translateY(20px);
}

.footer-social.animate__animated {
    opacity: 1;
    transform: translateY(0);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .custom .container,
    .about .container,
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .custom-image,
    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--primary-color);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: left 0.5s ease;
        backdrop-filter: blur(10px);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .language-dropdown {
        margin-left: 0;
        margin-top: 15px;
    }
    
    .language-dropdown-content {
        right: auto;
        left: 0;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
    }
}