@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');

@font-face {
  font-family: 'Trajan Pro 3';
  src: url('../fonts/TrajanPro3-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;  /* Verhindert Fallback-Schriftarten */
}

:root {
    --primary-gold: #fac73c;
    --primary-dark: #0a0a0a;
    --secondary-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #b0b0b0;
    --accent-blue: #2c5282;
    --shadow-gold: rgba(250, 199, 60, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: var(--text-light);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Impressum Page */
main {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
}

main section {
    margin-bottom: 60px;
    background: linear-gradient(135deg, var(--secondary-dark) 0%, #252525 100%);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(250, 199, 60, 0.1);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

main section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8em;
    color: var(--primary-gold);
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(250, 199, 60, 0.3);
    padding-bottom: 8px;
}

main section p {
    font-size: 1.05em;
    color: var(--text-gray);
    margin-bottom: 8px;
    line-height: 1.6;
}

main section strong {
    color: var(--primary-gold);
}


/* Navigation Header */
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(250, 199, 60, 0.2);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.nav-logo img {
    height: 50px;
    width: auto;
}

.nav-logo span {
    font-family: 'Trajan Pro 3', serif;
    font-size: 1.4em;
    font-weight: 600;
    color: var(--primary-gold);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--primary-gold);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-gold);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(circle at center, rgba(250, 199, 60, 0.05) 0%, transparent 70%);
}

.hero-content {
    max-width: 1200px;
    padding: 60px 20px;
    text-align: center;
    animation: fadeInUp 1s ease;
}

.hero-logo {
    width: 400px;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 10px 30px rgba(250, 199, 60, 0.3));
}

.hero h1 {
    font-family: 'Trajan Pro 3', serif;
    font-size: 3.5em;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero .tagline {
    font-size: 1.3em;
    color: var(--text-gray);
    margin-bottom: 40px;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 40px;
    font-size: 1em;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #e6b535 100%);
    color: var(--primary-dark);
    box-shadow: 0 5px 20px rgba(250, 199, 60, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(250, 199, 60, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
}

.btn-secondary:hover {
    background: var(--primary-gold);
    color: var(--primary-dark);
}

/* Services Section */
.services {
    padding: 100px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8em;
    color: var(--primary-gold);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-gold);
}

.section-header p {
    font-size: 1.2em;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, #252525 100%);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(250, 199, 60, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, #e6b535 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(250, 199, 60, 0.15);
    border-color: rgba(250, 199, 60, 0.3);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #e6b535 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5em;
}

.service-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5em;
    color: var(--text-light);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

.service-card ul {
    list-style: none;
    margin-top: 20px;
}

.service-card ul li {
    color: var(--text-gray);
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.service-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

/* Gallery Section */
.gallery {
    padding: 100px 20px;
    background: rgba(250, 199, 60, 0.02);
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 350px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3em;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.gallery-overlay p {
    color: var(--text-light);
    font-size: 0.95em;
}

/* Contact Section */
.contact {
    padding: 100px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 40px;
}

.contact-info {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, #252525 100%);
    border-radius: 20px;
    padding: 50px;
    border: 1px solid rgba(250, 199, 60, 0.1);
}

.contact-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8em;
    color: var(--primary-gold);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(250, 199, 60, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 1.2em;
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--text-light);
    margin-bottom: 5px;
    font-size: 1.1em;
}

.contact-details p {
    color: var(--text-gray);
    line-height: 1.6;
}

.contact-details a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #e6b535;
}

/* Footer */
footer {
    background: var(--primary-dark);
    border-top: 1px solid rgba(250, 199, 60, 0.1);
    padding: 60px 20px 30px;
    margin-top: 100px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8em;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-column h4 {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.1em;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(250, 199, 60, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-bottom p {
    color: var(--text-gray);
}

.footer-bottom .legal-links {
    display: flex;
    gap: 30px;
}

.footer-bottom .legal-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom .legal-links a:hover {
    color: var(--primary-gold);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--secondary-dark) 0%, #252525 100%);
    border: 2px solid var(--primary-gold);
    border-radius: 15px;
    padding: 25px;
    z-index: 1500;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: bottom 0.4s ease;
    max-width: 600px;
    margin: 0 auto;
}

.cookie-banner.show {
    bottom: 20px;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cookie-text h3 {
    color: var(--primary-gold);
    margin: 0 0 10px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2em;
}

.cookie-text p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
    font-size: 0.95em;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9em;
    flex: 1;
    min-width: 120px;
}

.cookie-btn.accept {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #e6b535 100%);
    color: var(--primary-dark);
}

.cookie-btn.accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(250, 199, 60, 0.4);
}

.cookie-btn.decline {
    background: transparent;
    color: var(--text-gray);
    border: 1px solid var(--text-gray);
}

.cookie-btn.decline:hover {
    background: rgba(255, 255, 255, 0.1);
}