/* Reset und Basis-Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: #121212;
}

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

/* Header & Navigation */
header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    border-bottom: 2px solid #ee7e19;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 65px;
    width: auto;
    max-width: 320px;
    object-fit: contain;
    filter: brightness(1.1); /* Macht das Logo etwas heller auf dunklem Hintergrund */
}

.logo-text {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-links a:hover {
    background: rgba(238, 126, 25, 0.2);
    transform: translateY(-2px);
    border-radius: 8px;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.mobile-menu:hover {
    background: rgba(238, 126, 25, 0.1);
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(31, 31, 31, 0.7) 0%, rgba(45, 45, 45, 0.7) 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    opacity: 1;
}

.hero-video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(31, 31, 31, 0.8) 0%, rgba(45, 45, 45, 0.8) 100%), url('../images/Slider001.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -3;
    display: none; /* Wird nur angezeigt wenn Video nicht lädt */
}

/* Overlay über dem Video für bessere Lesbarkeit */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(31, 31, 31, 0.3) 0%, rgba(45, 45, 45, 0.2) 100%);
    z-index: -1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(238,126,25,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    animation: pulse 4s ease-in-out infinite;
    opacity: 0.2;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ee7e19;
    border: 2px solid #ee7e19;
}

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

/* Services Section */
.services {
    padding: 80px 0;
    background: #1a1a1a;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    color: #e0e0e0;
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Spezifische Hintergrundbilder für Service-Karten */
.service-card:nth-child(1) {
    background-image: linear-gradient(rgba(26, 26, 26, 0.85), rgba(42, 42, 42, 0.85)), url('../images/DJService.jpg');
}

.service-card:nth-child(2) {
    background-image: linear-gradient(rgba(26, 26, 26, 0.85), rgba(42, 42, 42, 0.85)), url('../images/Tontechnik.jpg');
}

.service-card:nth-child(3) {
    background-image: linear-gradient(rgba(26, 26, 26, 0.85), rgba(42, 42, 42, 0.85)), url('../images/Lichttechnik.jpg');
}

.service-card:nth-child(4) {
    background-image: linear-gradient(rgba(26, 26, 26, 0.85), rgba(42, 42, 42, 0.85)), url('../images/Videotechnik.jpg');
}

.service-card:nth-child(5) {
    background-image: linear-gradient(rgba(26, 26, 26, 0.85), rgba(42, 42, 42, 0.85)), url('../images/34booking_team.jpg');
}

.service-card:nth-child(6) {
    background-image: linear-gradient(rgba(26, 26, 26, 0.85), rgba(42, 42, 42, 0.85)), url('../images/34booking_team.jpg');
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.1) 0%, rgba(238, 126, 25, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(238, 126, 25, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

/* Alle Inhalte über das Overlay legen */
.service-card > * {
    position: relative;
    z-index: 2;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: #0f0f0f;
}

.pricing-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.7;
}

.pricing-intro p {
    margin-bottom: 1rem;
}

.pricing-intro strong {
    color: #ee7e19;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    color: #e0e0e0;
    text-decoration: none;
    display: block;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(238, 126, 25, 0.2);
    color: #e0e0e0;
    text-decoration: none;
}

/* Pricing Image Circle */
.pricing-image-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 3px solid #ee7e19;
    position: relative;
    box-shadow: 0 4px 12px rgba(238, 126, 25, 0.3);
    transition: all 0.3s ease;
}

.pricing-card:hover .pricing-image-circle {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(238, 126, 25, 0.5);
    border-color: #ff8c42;
}

.pricing-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.3s ease;
}

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

.pricing-card .btn {
    margin-top: 1.5rem;
    pointer-events: none;
}

.price-subtitle {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 1rem;
}

.pricing-note {
    text-align: center;
    margin-top: 3rem;
    color: #999;
    font-size: 0.9rem;
}

.pricing-card.featured {
    border: 3px solid #ee7e19;
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: 'BELIEBT';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #ee7e19;
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ee7e19;
    margin: 1rem 0;
}

.price-features {
    list-style: none;
    margin: 1rem 0;
    text-align: left;
}

.price-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #444;
}

.price-features li:before {
    content: '✓';
    color: #ee7e19;
    margin-right: 10px;
    font-weight: bold;
}

/* Catalog Section */
.catalog {
    padding: 80px 0;
    background: #1a1a1a;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.catalog-item {
    background: #2a2a2a;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.catalog-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(238, 126, 25, 0.2);
}

.catalog-image {
    height: 200px;
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.catalog-content {
    padding: 1.5rem;
    color: #e0e0e0;
}

.catalog-price {
    color: #ee7e19;
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 1rem;
}

/* Catalog Spezifikationen */
.catalog-specs {
    margin: 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.spec-item {
    background: rgba(238, 126, 25, 0.1);
    color: #ff8c42;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(238, 126, 25, 0.3);
}

/* About Section */
.about {
    padding: 80px 0;
    background: #0f0f0f;
    position: relative;
    overflow: hidden;
}

/* Three Four Booking Grafik */
.three-four-graphic {
    text-align: center;
    margin: 3rem auto 4rem;
    max-width: 600px;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.9), rgba(51, 51, 51, 0.9));
    border-radius: 20px;
    border: 2px solid #ee7e19;
    position: relative;
    overflow: hidden;
}

.three-four-graphic::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff6b35, #ff8c42, #ee7e19, #ff6b35);
    border-radius: 20px;
    z-index: -1;
    animation: gradient-border 3s ease infinite;
}

@keyframes gradient-border {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.number-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.number-3, .number-4 {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(238, 126, 25, 0.3);
    transition: all 0.3s ease;
}

.number-3:hover, .number-4:hover {
    transform: scale(1.1) rotate(5deg);
}

.word-explanation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.three-text, .four-text, .booking-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: #e0e0e0;
    padding: 0.5rem 1rem;
    background: rgba(238, 126, 25, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(238, 126, 25, 0.3);
    transition: all 0.3s ease;
}

.booking-text {
    background: rgba(238, 126, 25, 0.2);
    color: #ff8c42;
    font-weight: 700;
}

.three-text:hover, .four-text:hover, .booking-text:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(238, 126, 25, 0.3);
}

.tagline {
    font-style: italic;
    color: #ee7e19;
    font-size: 1.1rem;
    margin-bottom: 0;
    font-weight: 500;
}

/* Absatz-Styles für About Text */
.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
}

.founding-paragraph,
.today-paragraph,
.philosophy-paragraph {
    margin-bottom: 2rem;
    padding: 1.5rem 0;
}

.founding-paragraph {
    border-bottom: 1px solid rgba(238, 126, 25, 0.3);
}

.today-paragraph {
    border-bottom: 1px solid rgba(238, 126, 25, 0.3);
}

.philosophy-paragraph {
    border-bottom: 1px solid rgba(238, 126, 25, 0.3);
}

/* Farbige Highlights - nur Orange-Töne */
.highlight-name {
    color: #ff6b35;
    font-weight: 600;
    padding: 0.2rem 0.4rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 5px;
}

.highlight-partner {
    color: #ee7e19;
    font-weight: 600;
    padding: 0.2rem 0.4rem;
    background: rgba(238, 126, 25, 0.1);
    border-radius: 5px;
}

.highlight-partnership {
    color: #ff8c42;
    font-weight: 600;
    padding: 0.2rem 0.4rem;
    background: rgba(255, 140, 66, 0.1);
    border-radius: 5px;
}

/* Firmen-Motto als Blockquote */
.company-motto {
    background: linear-gradient(135deg, rgba(238, 126, 25, 0.1), rgba(255, 140, 66, 0.1));
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #ee7e19;
    margin: 2rem 0;
    font-size: 1.3rem;
    font-style: italic;
    color: #ffffff;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 20px rgba(238, 126, 25, 0.1);
}

.company-motto::before {
    content: '“';
    font-size: 4rem;
    color: #ee7e19;
    position: absolute;
    top: -10px;
    left: 20px;
    line-height: 1;
}

.company-motto::after {
    content: '”';
    font-size: 4rem;
    color: #ee7e19;
    position: absolute;
    bottom: -30px;
    right: 20px;
    line-height: 1;
}

/* Text-Formatierung */
.about-text strong {
    color: #ffffff;
    font-weight: 700;
}

.about-text em {
    color: #ff8c42;
    font-style: italic;
    font-weight: 500;
}

/* About Section mit Team-Bild als Hintergrund */
.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/34booking_team.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.3;
    z-index: -2;
}

.about::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.7) 0%, rgba(26, 26, 26, 0.8) 100%);
    z-index: -1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
}

.team-member {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
}

/* Neue Avatar-Bild Styles */
.team-avatar-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    overflow: hidden;
    border: 3px solid #444;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.team-avatar-image:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border-color: #666;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Team-Kontakt Styles */
.team-contact {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(238, 126, 25, 0.2);
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #42a5f5;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    background: rgba(66, 165, 245, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(66, 165, 245, 0.3);
    transition: all 0.3s ease;
}

.contact-email:hover {
    background: rgba(66, 165, 245, 0.2);
    color: #64b5f6;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(66, 165, 245, 0.3);
}

.email-icon {
    font-size: 1rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #1a1a1a;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-form {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 15px;
    color: #e0e0e0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #444;
    border-radius: 8px;
    transition: border-color 0.3s ease;
    background: #1a1a1a;
    color: #e0e0e0;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ee7e19;
}

.contact-info {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    padding: 2rem;
    border-radius: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-item span {
    font-size: 1.5rem;
    margin-right: 1rem;
    width: 30px;
}

/* Footer */
footer {
    background: #0f0f0f;
    color: #e0e0e0;
    text-align: center;
    padding: 2rem 0;
    border-top: 2px solid #ee7e19;
}

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

/* Legal/Impressum Seiten Styles */
.legal-content {
    padding: 140px 0 80px;
    background: #1a1a1a;
    min-height: 100vh;
    color: #e0e0e0;
}

.legal-header {
    text-align: center;
    margin-bottom: 4rem;
}

.legal-header h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #ee7e19);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.back-link a {
    color: #ee7e19;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-link a:hover {
    color: #ff8c42;
    text-decoration: underline;
}

.legal-main {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #2a2a2a;
    border-radius: 15px;
    border-left: 5px solid #ee7e19;
    transition: all 0.3s ease;
}

.legal-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(238, 126, 25, 0.2);
}

.legal-section h2 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #ee7e19;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.legal-section h3 {
    color: #ff8c42;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.legal-section h3:first-child {
    margin-top: 0;
}

.legal-section p {
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

/* Kontakt-Karte */
.contact-card {
    background: linear-gradient(135deg, #333, #2a2a2a);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(238, 126, 25, 0.3);
}

.contact-card h3 {
    color: #ee7e19;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 0;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
    line-height: 1;
    margin-top: 0.2rem;
}

.contact-item a {
    color: #42a5f5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #64b5f6;
    text-decoration: underline;
}

/* Steuerliche Angaben */
.tax-info {
    background: rgba(238, 126, 25, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #ee7e19;
}

.tax-info p {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

/* Disclaimer Blöcke */
.disclaimer-block {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(42, 42, 42, 0.5);
    border-radius: 10px;
    border-left: 3px solid #666;
}

.disclaimer-block:nth-child(1) {
    border-left-color: #ff6b35;
}

.disclaimer-block:nth-child(2) {
    border-left-color: #42a5f5;
}

.disclaimer-block:nth-child(3) {
    border-left-color: #66bb6a;
}

/* Letzte Aktualisierung */
.last-updated {
    text-align: center;
    color: #999;
    font-style: italic;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #444;
}

/* Footer Updates */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #ee7e19;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff8c42;
    text-decoration: underline;
}

/* Mobile Responsive für Legal Seiten */
@media (max-width: 768px) {
    .legal-content {
        padding: 120px 0 60px;
    }
    
    .legal-header h1 {
        font-size: 2.2rem;
    }
    
    .legal-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@keyframes pulse {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.3; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-image-circle {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .services-grid,
    .pricing-grid,
    .catalog-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Service Detail Pages */
.service-hero {
    background: linear-gradient(135deg, #1f1f1f 0%, #2d2d2d 100%);
    padding: 140px 0 80px;
    text-align: center;
    color: white;
    min-height: 40vh;
    display: flex;
    align-items: center;
}

.service-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.service-details {
    padding: 80px 0;
    background: #1a1a1a;
    color: #e0e0e0;
}

.service-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.service-main h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #ee7e19;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.service-main p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.feature-grid, .types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.feature-item, .type-card {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #ee7e19;
    transition: all 0.3s ease;
}

.feature-item:hover, .type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(238, 126, 25, 0.2);
}

.feature-item h3, .type-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.equipment-specs {
    margin-top: 3rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.spec-item {
    background: #2a2a2a;
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #ee7e19;
    font-size: 0.95rem;
}

.service-sidebar {
    position: sticky;
    top: 120px;
}

.cta-box {
    background: linear-gradient(135deg, #ee7e19, #ff8c42);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 2rem;
    color: white;
}

.cta-box h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.cta-box .btn {
    margin: 0.5rem;
    display: inline-block;
}

.cta-box .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.other-services {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 15px;
}

.other-services h3 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.other-services ul {
    list-style: none;
}

.other-services ul li {
    margin-bottom: 0.8rem;
}

.other-services ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 0.5rem;
    border-radius: 5px;
}

.other-services ul li a:hover {
    color: #ee7e19;
    background: rgba(238, 126, 25, 0.1);
}

.planning-process {
    margin-top: 3rem;
}

.process-steps {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.step-item {
    background: #2a2a2a;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #ee7e19;
    font-size: 1rem;
    line-height: 1.6;
}

/* Pricing Detail Pages Styles */
.price-hero {
    font-size: 2.5rem;
    color: #ee7e19;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.price-hero span {
    font-size: 1.2rem;
    color: #ccc;
    font-weight: normal;
}

.price-summary {
    background: linear-gradient(135deg, #ee7e19, #ff8c42);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 2rem;
    color: white;
}

.final-price {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 1rem 0;
}

.price-note {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.price-description {
    font-size: 0.95rem;
    line-height: 1.4;
}

.package-highlights {
    margin: 2rem 0;
}

.highlight-box {
    background: linear-gradient(135deg, #2a2a2a, #333);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #ee7e19;
}

.highlight-box h3 {
    color: #ee7e19;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.highlight-box ul {
    list-style: none;
    margin-left: 0;
}

.highlight-box ul li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.highlight-box ul li:before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: #ee7e19;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.event-item {
    text-align: center;
    padding: 1.5rem;
    background: #2a2a2a;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.event-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(238, 126, 25, 0.2);
}

.event-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.event-item h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.other-packages ul {
    list-style: none;
}

.other-packages ul li {
    margin-bottom: 0.8rem;
}

.other-packages ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 0.5rem;
    border-radius: 5px;
}

.other-packages ul li a:hover {
    color: #ee7e19;
    background: rgba(238, 126, 25, 0.1);
}

/* Mobile Responsive für Service-Seiten */
@media (max-width: 768px) {
    .service-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-sidebar {
        position: static;
    }
    
    .service-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .feature-grid, .types-grid {
        grid-template-columns: 1fr;
    }
}

/* Gallery Section - für Hochzeit-Galerie */
.gallery-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.gallery-section h2 {
    color: #ee7e19;
    margin-bottom: 20px;
    text-align: center;
    font-size: 2rem;
    background: linear-gradient(45deg, #ee7e19, #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Tab Navigation */
.tab-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    background: rgba(0,0,0,0.3);
    border-radius: 10px;
    padding: 5px;
    gap: 5px;
}

.tab-button {
    flex: 1;
    max-width: 300px;
    padding: 15px 25px;
    background: transparent;
    color: #e0e0e0;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 500;
}

.tab-button:hover {
    background: rgba(238, 126, 25, 0.2);
    transform: translateY(-2px);
}

.tab-button.active {
    background: linear-gradient(45deg, #ee7e19, #ff8c42);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(238, 126, 25, 0.3);
}

/* Tab Content */
.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(0,0,0,0.5);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(238, 126, 25, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s 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.8));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.gallery-overlay h3 {
    color: #ee7e19;
    margin-bottom: 5px;
}

.section-description {
    text-align: center;
    margin-bottom: 30px;
    color: #b0b0b0;
    font-size: 1.1rem;
}

/* Responsive für Gallery */
@media (max-width: 768px) {
    .tab-nav {
        flex-direction: column;
        gap: 10px;
    }
    
    .tab-button {
        max-width: none;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-section {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: 80vh;
    }
    
    .hero-video {
        display: none; /* Video auf mobil deaktiviert für bessere Performance */
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .services,
    .pricing,
    .catalog,
    .about,
    .contact {
        padding: 60px 0;
    }
}

/* About Section Updates */
.story-cta {
    text-align: center;
    margin-top: 2rem;
}

.company-highlights {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #2a2a2a, #333);
    border-radius: 12px;
}

.highlight-item {
    text-align: center;
}

.highlight-number {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: #ee7e19;
    margin-bottom: 0.5rem;
}

.highlight-text {
    font-size: 0.9rem;
    color: #ccc;
}

/* Story Page Basic Styles */
.story-hero {
    background: linear-gradient(135deg, #1f1f1f 0%, #2d2d2d 100%);
    text-align: center;
}

.story-content {
    padding: 80px 0;
    background: #1a1a1a;
    color: #e0e0e0;
}

.story-main {
    max-width: 1000px;
    margin: 0 auto;
}

.story-chapter {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #2a2a2a;
    border-radius: 15px;
    border-left: 5px solid #ee7e19;
}

.chapter-header h2 {
    color: #ffffff;
    font-size: 1.8rem;
}

.founder-card {
    background: #1f1f1f;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 1rem;
}

/* Catalog/Technikverleih Updates */
.catalog-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.7;
}

.catalog-intro p {
    margin-bottom: 1rem;
}

.catalog-intro strong {
    color: #ee7e19;
}

.catalog-cta {
    text-align: center;
    margin: 4rem 0 3rem;
    padding: 3rem;
    background: linear-gradient(135deg, #2a2a2a, #333);
    border-radius: 15px;
}

.private-rental h3 {
    color: #ee7e19;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.private-rental p {
    color: #e0e0e0;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.dry-hire-section {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 15px;
    border: 2px solid #444;
}

.dry-hire-separator {
    height: 3px;
    background: linear-gradient(90deg, #ee7e19, #ff8c42);
    margin-bottom: 2rem;
    border-radius: 2px;
}

.dry-hire-section h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.dry-hire-explanation {
    margin-bottom: 2rem;
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.7;
}

.dry-hire-explanation strong {
    color: #ee7e19;
}

.dry-hire-cta {
    text-align: center;
}

.btn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: #555;
    border-color: #555;
}

.btn.disabled:hover {
    transform: none;
    box-shadow: none;
}

.btn small {
    font-size: 0.8rem;
    display: block;
    margin-top: 0.3rem;
    opacity: 0.8;
}

.coming-soon {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
}

/* Team Photo Background Styles */
.team-photo-background {
    position: relative;
    width: 100%;
    height: 400px;
    background-image: url('../images/34booking_team.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    margin-bottom: 3rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(238, 126, 25, 0.2);
    transition: all 0.3s ease;
}

.team-photo-background:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(238, 126, 25, 0.3);
}

.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    padding: 2rem;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.team-photo {
    text-align: center;
    margin-bottom: 3rem;
}

.team-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(238, 126, 25, 0.2);
    transition: all 0.3s ease;
}

.team-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(238, 126, 25, 0.3);
}

.team-caption {
    margin-top: 1rem;
    color: #ee7e19;
    font-style: italic;
    font-size: 1rem;
    font-weight: 500;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Mobile Navigation */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
        flex-direction: column;
        padding: 0;
        box-shadow: 0 5px 20px rgba(0,0,0,0.5);
        border-top: 2px solid #ee7e19;
        z-index: 999;
    }
    
    .nav-links.active {
        display: flex !important;
        animation: slideDown 0.3s ease-out;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-links li {
        margin: 0;
        border-bottom: 1px solid rgba(238, 126, 25, 0.1);
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .nav-links a {
        display: block;
        padding: 1.2rem 2rem;
        margin: 0;
        text-align: left;
        border-radius: 0;
        transition: all 0.3s ease;
        font-size: 1.1rem;
        font-weight: 500;
    }
    
    .nav-links a:hover {
        background: rgba(238, 126, 25, 0.2);
        transform: none;
        padding-left: 2.5rem;
        color: #ff8c42;
    }

    .mobile-menu {
        display: flex !important;
        z-index: 1001;
        padding: 8px;
        border-radius: 5px;
        transition: all 0.3s ease;
    }
    
    .mobile-menu:hover {
        background: rgba(238, 126, 25, 0.1);
    }
    
    .mobile-menu:active {
        background: rgba(238, 126, 25, 0.2);
        transform: scale(0.95);
    }
    
    /* Mobile Menu Animation */
    .mobile-menu.active span:nth-child(1) {
        transform: rotate(45deg) translateY(12px);
    }
    
    .mobile-menu.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-12px);
    }

    /* Header Adjustments */
    nav {
        position: relative;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }
    
    .services-grid,
    .pricing-grid,
    .catalog-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }

    .team-members {
        grid-template-columns: 1fr;
    }
    
    .team-image {
        max-width: 100%;
    }
    
    .team-photo-background {
        height: 300px;
    }
    
    .team-overlay {
        padding: 1.5rem;
    }
    
    .team-avatar-image {
        width: 80px;
        height: 80px;
    }
    
    .contact-email {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    /* Auf mobilen Geräten fixed background deaktivieren für bessere Performance */
    .about::before {
        background-attachment: scroll;
        opacity: 0.1;
    }
    
    /* Three Four Graphic Mobile */
    .three-four-graphic {
        margin: 2rem auto 3rem;
        padding: 1.5rem;
    }
    
    .number-3, .number-4 {
        font-size: 3rem;
    }
    
    .word-explanation {
        gap: 0.3rem;
    }
    
    .three-text, .four-text, .booking-text {
        font-size: 1.1rem;
        padding: 0.4rem 0.8rem;
    }
    
    /* Text-Blöcke Mobile */
    .founding-paragraph,
    .today-paragraph,
    .philosophy-paragraph {
        padding: 1rem 0;
        margin-bottom: 1.5rem;
    }
    
    .company-motto {
        padding: 1.5rem;
        font-size: 1.1rem;
    }
    
    .company-motto::before {
        font-size: 3rem;
        top: -5px;
        left: 10px;
    }
    
    .company-motto::after {
        font-size: 3rem;
        bottom: -20px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: 80vh;
    }
    
    .hero-video {
        display: none; /* Video auf mobil deaktiviert für bessere Performance */
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .services,
    .pricing,
    .catalog,
    .about,
    .contact {
        padding: 60px 0;
    }
}