﻿/* ============================================
   DJOLI - DJ Olli Website Styles
   ============================================ */

/* ============================================
   BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Oswald', sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in-section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

    .fade-in-section.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

/* ============================================
   NAVIGATION
   ============================================ */

/* Navigation unter Hero */
.main-navigation {
    background: #0A1B2E;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

    .main-navigation .navbar {
        padding: 0;
    }

.navbar-brand {
    padding: 0;
    margin-right: 0;
}

.navbar-logo {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
}

    .navbar-logo:hover {
        transform: rotate(360deg) scale(1.1);
    }

.main-navigation .navbar-nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.main-navigation .nav-item {
    margin: 0;
}

.main-navigation .nav-link {
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 300;
    padding: 0px !important;
    transition: color 0.3s ease;
    position: relative;
}

/* Erste Nav-Item ganz links ohne Padding */
.main-navigation .nav-item:first-child .nav-link {
    padding-left: 0px !important;
}

/* Active Link (aktueller Bereich) in GOLD */
.main-navigation .nav-link.active {
    color: #C8A865 !important;
}

/* Hover State in GOLD */
.main-navigation .nav-link:hover {
    color: #C8A865 !important;
}

.main-navigation .instagram-icon {
    color: #C8A865 !important;
    font-size: 20px;
    padding: 20px 25px !important;
}

.main-navigation .btn-anfragen {
    background: #C8A865;
    color: #1a1a1a;
    padding: 12px 30px;
    margin-right: 40px;
    font-weight: 400;
    transition: all 0.3s ease;
    border: none;
}

    .main-navigation .btn-anfragen:hover {
        background: #9d8659;
        color: #ffffff;
    }

/* Navigation Layout */
.navbar-collapse {
    display: flex !important;
    justify-content: space-between !important;
    flex-basis: auto !important;
}

.navbar-nav.ms-auto {
    margin-left: auto !important;
}

.navbar-nav {
    display: flex;
    flex-direction: row;
}

.instagram-icon {
    font-size: 20px;
    color: #ffffff;
    padding: 0 15px;
}

    .instagram-icon:hover {
        color: #C8A865;
    }

/* ============================================
   MOBILE NAVIGATION
   ============================================ */
.navbar-toggler {
    border: 2px solid #C8A865;
    padding: 8px 12px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(200, 168, 101, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 27, 46, 0.98);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    padding: 60px 30px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.mobile-logo svg {
    width: 60px;
    height: 60px;
}

.mobile-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 36px;
    cursor: pointer;
}

.mobile-menu-links {
    list-style: none;
    padding: 0;
}

    .mobile-menu-links li {
        margin-bottom: 25px;
        opacity: 0;
        transform: translateX(-30px);
        transition: opacity 0.5s ease, transform 0.5s ease;
    }

.mobile-menu-overlay.active .mobile-menu-links li {
    opacity: 1;
    transform: translateX(0);
}

    .mobile-menu-overlay.active .mobile-menu-links li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .mobile-menu-overlay.active .mobile-menu-links li:nth-child(2) {
        transition-delay: 0.15s;
    }

    .mobile-menu-overlay.active .mobile-menu-links li:nth-child(3) {
        transition-delay: 0.2s;
    }

    .mobile-menu-overlay.active .mobile-menu-links li:nth-child(4) {
        transition-delay: 0.25s;
    }

    .mobile-menu-overlay.active .mobile-menu-links li:nth-child(5) {
        transition-delay: 0.3s;
    }

    .mobile-menu-overlay.active .mobile-menu-links li:nth-child(6) {
        transition-delay: 0.35s;
    }

.mobile-menu-links a {
    color: #ffffff;
    font-size: 24px;
    text-decoration: none;
    font-weight: 300;
    display: block;
    transition: color 0.3s ease, transform 0.3s ease;
}

    .mobile-menu-links a:hover {
        color: #C8A865;
        transform: translateX(10px);
    }

.mobile-menu-footer {
    margin-top: auto;
    padding-top: 40px;
    border-top: 1px solid rgba(200, 168, 101, 0.3);
}

    .mobile-menu-footer a {
        color: #ffffff;
        margin-right: 20px;
        font-size: 14px;
        text-decoration: underline;
        text-decoration-color: rgba(200, 168, 101, 0.5);
        transition: color 0.3s ease, text-decoration-color 0.3s ease;
    }

        .mobile-menu-footer a:hover {
            color: #C8A865;
            text-decoration-color: #C8A865;
        }

.mobile-social {
    margin-top: 30px;
}

    .mobile-social a {
        color: #C8A865;
        font-size: 32px;
        margin-right: 20px;
    }

.mobile-anfragen-btn {
    background: #C8A865;
    color: #1a1a1a;
    padding: 15px;
    text-align: center;
    margin-top: 30px;
    font-size: 18px;
    text-decoration: none;
    display: block;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease, background 0.3s ease;
}

.mobile-menu-overlay.active .mobile-anfragen-btn {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.mobile-anfragen-btn:hover {
    background: #9d8659;
    color: #ffffff;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    background: linear-gradient(rgba(10, 30, 60, 0.7), rgba(10, 30, 60, 0.7)), url('/Content/Images/AdobeStock_1332895309.jpeg') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    position: relative;
    opacity: 0;
    animation: heroSectionFadeIn 0.8s ease-out forwards;
}

@keyframes heroSectionFadeIn {
    to {
        opacity: 1;
    }
}

.hero-logo {
    width: 440px;
    height: 300px;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(-50px) scale(0.8);
    animation: heroLogoFadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

@keyframes heroLogoFadeIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-title {
    font-size: 72px;
    font-weight: 200;
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 12px;
    text-transform: uppercase;
    margin: 0;
    opacity: 0;
    transform: translateY(30px);
    animation: heroTitleFadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) 0.8s forwards;
}

@keyframes heroTitleFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   INTRO SECTION
   ============================================ */
.intro-section {
    padding: 40px 0 80px;
    background: #ffffff;
}

    .intro-section h1 {
        font-size: 48px;
        font-weight: 300;
        color: #1a1a1a;
        margin-bottom: 30px;
        font-family: 'Oswald', sans-serif;
        line-height: 1.3;
    }

    .intro-section h2 {
        font-size: 24px;
        font-weight: 300;
        color: #1a1a1a;
        margin-bottom: 40px;
        font-family: 'Oswald', sans-serif;
        line-height: 1.4;
    }

    .intro-section .mobile-subtitle {
        display: none;
        font-size: 28px;
        font-weight: 300;
        color: #1a1a1a;
        margin-bottom: 40px;
        font-family: 'Oswald', sans-serif;
        line-height: 1.4;
    }

    .intro-section p {
        font-size: 15px;
        line-height: 1.8;
        color: #333333;
        margin-bottom: 20px;
    }

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.section-title {
    font-size: 42px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 60px;
    text-align: center;
    font-family: 'Oswald', sans-serif;
}

.service-card {
    text-align: center;
    padding: 20px;
    margin-bottom: 40px;
}

.service-image-circle {
    width: 280px;
    height: 280px;
    border: 6px solid #C8A865;
    border-radius: 50%;
    margin: 0 auto 30px;
    overflow: hidden;
}

    .service-image-circle img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.service-card h3 {
    font-size: 22px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-family: 'Oswald', sans-serif;
}

.service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #333333;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-section {
    padding: 80px 0;
    background: #0A1B2E;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

    .process-section .section-title {
        color: #ffffff;
    }


    .process-section .container {
        position: relative;
        z-index: 1;
    }

.process-column h3 {
    color: #C8A865;
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 500;
    font-family: 'Oswald', sans-serif;
}

.process-column ul {
    list-style: none;
    padding: 0;
}

    .process-column ul li {
        padding: 8px 0;
        padding-left: 25px;
        position: relative;
        font-size: 15px;
        line-height: 1.6;
    }

        .process-column ul li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: #C8A865;
            font-weight: bold;
            font-size: 20px;
        }

/* ============================================
   ABOUT SECTION
   ============================================ */
/* ABOUT SECTION */
.about-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}
/* ABOUT SECTION */
.about-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}
    /* Hintergrundbild oben rechts mit goldenem Border links */
    .about-section::after {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 600px;
        height: 500px;
        background-image: url('/Content/images/e6f8274d-1557-45d1-9a79-9f1770618787.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        pointer-events: none;
        z-index: 0;
        border-left: 8px solid #C8A865;
        border-radius: 0 0 0 400px;
    }

.hero-logo {
    width: 400px;
    height: auto;
    display: block;
    margin: 0 auto;
    /* Falls das Logo zu groß/klein ist: */
    max-width: 100%;
}

/* Responsive Anpassung */
@media (max-width: 768px) {
}

.contact-logo {
    width: 200px;
    height: auto;
    display: block;
    margin: 0 auto 2rem auto;
    max-width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-logo {
        width: 150px;
    }
}

/* Opacity nur bei Bildschirmen kleiner als 1300px */
@media (max-width: 1299px) {
    .about-section::after {
        opacity: 0.15;
    }
}

.about-section .container {
    position: relative;
    z-index: 1;
}

.about-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 20px;
}

/* About Section - Ein Bild mit goldenen Ecken-Rahmen */
.about-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    padding: 60px 60px 60px 40px;
}

    .about-image-container img {
        width: 100%;
        height: auto;
        display: block;
        box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    }

    /* Goldener Ecken-Rahmen - Oben rechts */
    .about-image-container::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 250px;
        height: 250px;
        border-top: 8px solid #C8A865;
        border-right: 8px solid #C8A865;
        border-radius: 0 150px 0 0;
        pointer-events: none;
    }

    /* Goldener Ecken-Rahmen - Unten links */
    .about-image-container::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 250px;
        height: 250px;
        border-bottom: 8px solid #C8A865;
        border-left: 8px solid #C8A865;
        border-radius: 0 0 0 150px;
        pointer-events: none;
    }

/* ============================================
   REFERENCES SECTION
   ============================================ */
.references-section {
    padding: 80px 0;
    background: #f5f5f5;
}

    .references-section h3 {
        font-size: 24px;
        font-weight: 400;
        color: #1a1a1a;
        margin-bottom: 30px;
        font-family: 'Oswald', sans-serif;
    }

.location-text {
    font-size: 15px;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 50px;
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 80px;
    padding: 60px 0;
    background: #ffffff;
}

    .partner-logos img {
        max-width: 200px;
        height: auto;
    }

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 80px 0;
    background: #fff;
}

.faq-item {
    margin-bottom: 2px;
}

.faq-question {
    background: #0A1B2E;
    color: #ffffff;
    padding: 22px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 15px;
    font-weight: 300;
    font-family: 'Oswald', sans-serif;
    transition: background 0.3s ease;
}

    .faq-question:hover {
        background: #1a3a5c;
    }

    .faq-question i {
        color: #ffffff;
        font-size: 16px;
        transition: transform 0.3s ease;
    }

    .faq-question.active i {
        transform: rotate(180deg);
    }

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    background: #ffffff;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

    .faq-answer.active {
        padding: 30px;
        max-height: 600px;
    }

    .faq-answer p {
        color: #333333;
        line-height: 1.8;
        margin: 0;
        font-size: 15px;
    }

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(rgba(10, 30, 60, 0.85), rgba(10, 30, 60, 0.85)), url('/Content/Images/AdobeStock_1332895309.jpeg') center/cover no-repeat;
    color: #ffffff;
    text-align: center;
}

.contact-logo {
    width: 150px;
    height: 150px;
    margin: 0 auto 40px;
}

.contact-section h2 {
    color: #C8A865;
    font-size: 42px;
    margin-bottom: 30px;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
}

.contact-section p {
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.btn-contact-large {
    background: #C8A865;
    color: #1a1a1a;
    padding: 15px 50px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    display: inline-block;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    transition: all 0.3s ease;
}

    .btn-contact-large:hover {
        background: #9d8659;
        color: #ffffff;
        text-decoration: none;
    }

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: #0A1B2E;
    color: #ffffff;
    padding: 30px 0 20px;
}

    footer a {
        color: #ffffff;
        text-decoration: underline;
        text-decoration-color: rgba(200, 168, 101, 0.5);
        font-size: 14px;
        margin: 0 15px;
        transition: color 0.3s ease, text-decoration-color 0.3s ease;
    }

        footer a:hover {
            color: #C8A865;
            text-decoration-color: #C8A865;
        }

/* Alert Styling */
.alert {
    border-radius: 12px;
    padding: 16px 20px;
    border: none;
    animation: slideInRight 0.3s ease-out;
}

.alert-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.alert-danger {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.alert .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

    .alert .btn-close:hover {
        opacity: 1;
    }

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .alert {
        top: 20px !important;
        right: 10px !important;
        left: 10px !important;
        max-width: none !important;
    }
}

/* ============================================
   IMPRESSUM & DATENSCHUTZ PAGES
   ============================================ */
.legal-section {
    padding: 0px 0;
    background: #ffffff;
    min-height: 70vh;
    opacity: 1;
}

    .legal-section h1 {
        font-size: 48px;
        font-weight: 300;
        color: #1a1a1a;
        margin-bottom: 40px;
        font-family: 'Oswald', sans-serif;
        text-align: center;
    }

    .legal-section h2 {
        font-size: 32px;
        font-weight: 400;
        color: #C8A865;
        margin-top: 40px;
        margin-bottom: 20px;
        font-family: 'Oswald', sans-serif;
    }

    .legal-section h3 {
        font-size: 24px;
        font-weight: 400;
        color: #1a1a1a;
        margin-top: 30px;
        margin-bottom: 15px;
        font-family: 'Oswald', sans-serif;
    }

    .legal-section p {
        font-size: 15px;
        line-height: 1.8;
        color: #333333;
        margin-bottom: 20px;
    }

    .legal-section ul {
        margin-left: 25px;
        margin-bottom: 20px;
    }

        .legal-section ul li {
            font-size: 15px;
            line-height: 1.8;
            color: #333333;
            margin-bottom: 10px;
        }

    .legal-section a {
        color: #C8A865;
        text-decoration: none;
    }

        .legal-section a:hover {
            text-decoration: underline;
        }

    .legal-section strong {
        font-weight: 500;
    }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 991px) {
    /* Desktop H1 und H2 verstecken, Mobile Subtitle zeigen */
    .intro-section h1,
    .intro-section h2 {
        display: none;
    }

    .intro-section .mobile-subtitle {
        display: block;
    }

    .intro-section {
        padding: 60px 0;
    }

    .main-navigation .navbar-collapse {
        display: none !important;
    }

    .main-navigation .navbar-toggler {
        display: block;
        margin-left: auto;
    }

    /* Logo größer auf mobile */
    .navbar-logo {
        width: 45px;
        height: 45px;
    }
}

@media (min-width: 992px) {
    /* Logo verstecken auf Desktop - Menü-Links sind sichtbar */
    .navbar-brand {
        display: none;
    }

    .mobile-menu-overlay {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 48px;
        letter-spacing: 8px;
    }

    .section-title {
        font-size: 36px;
    }

    .service-image-circle {
        width: 220px;
        height: 220px;
    }

    .about-image-container {
        margin: 40px auto 0;
        padding: 40px 40px 40px 20px;
    }

        .about-image-container::before {
            width: 150px;
            height: 150px;
        }

        .about-image-container::after {
            width: 150px;
            height: 150px;
        }

    .about-section::after {
        width: 300px;
        height: 300px;
        top: -50px;
        right: -50px;
    }

    .process-section::after {
        width: 300px;
        height: 300px;
        right: -50px;
        bottom: -50px;
    }

    .legal-section h1 {
        font-size: 36px;
    }

    .legal-section h2 {
        font-size: 28px;
    }

    .legal-section h3 {
        font-size: 20px;
    }
}

/* ============================================
   SCROLL DOWN ANIMATION (Hero Section)
   ============================================ */
.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    text-decoration: none;
    z-index: 10;
    animation: scrollBounce 2s infinite;
}

.scroll-icon {
    width: 30px;
    height: 50px;
    border: 2px solid #C8A865;
    border-radius: 25px;
    margin: 0 auto 10px;
    position: relative;
    opacity: 0.8;
}

.scroll-wheel {
    width: 4px;
    height: 10px;
    background: #C8A865;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

.scroll-text {
    color: #C8A865;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

.scroll-down:hover .scroll-icon {
    border-color: #ffffff;
}

.scroll-down:hover .scroll-wheel {
    background: #ffffff;
}

.scroll-down:hover .scroll-text {
    color: #ffffff;
}

/* Mobile Anpassung */
@media (max-width: 768px) {
    .scroll-down {
        bottom: 30px;
    }

    .scroll-icon {
        width: 25px;
        height: 45px;
    }
}

/* ============================================
   MOBILE STICKY CONTACT BUTTONS
   ============================================ */
/* ============================================
   MOBILE STICKY CONTACT BUTTONS
   ============================================ */
.mobile-contact-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    z-index: 999;
    background: #ffffff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

    .mobile-contact-buttons.show {
        transform: translateY(0);
    }

.mobile-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 12px 10px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
}

    .mobile-btn i {
        font-size: 24px;
        margin-bottom: 4px;
    }

    .mobile-btn span {
        font-family: 'Oswald', sans-serif;
        letter-spacing: 0.5px;
    }

.whatsapp-btn {
    background: #25D366;
    color: #ffffff;
    border-right: 1px solid rgba(255,255,255,0.2);
}

    .whatsapp-btn:hover {
        background: #20ba5a;
        color: #ffffff;
        text-decoration: none;
    }

.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
}

    .instagram-btn:hover {
        background: linear-gradient(45deg, #d67d2a 0%, #c94f2a 25%, #b71e35 50%, #a61d57 75%, #9c1578 100%);
        color: #ffffff;
        text-decoration: none;
    }

/* Mobile Contact Buttons anzeigen */
@media (max-width: 768px) {
    .mobile-contact-buttons {
        display: flex;
    }
}

/* Desktop: Verstecken */
@media (min-width: 769px) {
    .mobile-contact-buttons {
        display: none !important;
    }
}

.site-footer {
    background: #0a0a0a;
    border-top: 1px solid rgba(200, 168, 101, 0.2);
    padding: 1.5rem 0;
}

    .site-footer .footer-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .site-footer .footer-left p {
        margin: 0;
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.9rem;
    }

    .site-footer .footer-right {
        display: flex;
        gap: 0.75rem;
    }

    .site-footer .footer-btn {
        display: inline-block;
        padding: 0.5rem 1.25rem;
        background: transparent;
        border: 1px solid rgba(200, 168, 101, 0.4);
        color: #C8A865;
        text-decoration: none;
        font-size: 0.85rem;
        border-radius: 4px;
        transition: all 0.3s ease;
    }

        .site-footer .footer-btn:hover {
            background: #C8A865;
            color: #0a0a0a;
            border-color: #C8A865;
        }

/* Mobile */
@media (max-width: 576px) {
    .site-footer .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .site-footer .footer-left {
        order: 2;
    }

    .site-footer .footer-right {
        order: 1;
    }
}





/* ============================================
       ALERT ANIMATIONS
       ============================================ */
.animate-slide-in {
    animation: slideInRight 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.animate-slide-out {
    animation: slideOutRight 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

@keyframes slideInRight {
    from {
        transform: translateX(120%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(120%);
        opacity: 0;
    }
}

/* Alert Styling */
.alert {
    border-radius: 12px;
    padding: 18px 22px;
    border: none;
    font-size: 0.95rem;
    line-height: 1.6;
}

.alert-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-left: 4px solid #047857;
}

.alert-danger {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    border-left: 4px solid #b91c1c;
}

.alert i {
    font-size: 1.2rem;
    vertical-align: middle;
}

.alert .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

    .alert .btn-close:hover {
        opacity: 1;
    }

/* ============================================
       CONTACT FORM STYLES - DJ Olli
       ============================================ */
.contact-section {
    padding: 80px 0;
    text-align: center;
}

    .contact-section h2 {
        color: #C8A865;
        margin-bottom: 15px;
    }

.contact-intro {
    max-width: 700px;
    margin: 0 auto 40px;
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    line-height: 1.7;
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(200, 168, 101, 0.2);
    border-radius: 16px;
    padding: 40px;
    text-align: left;
}

.contact-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
}

.contact-form .form-group {
    flex: 1;
    margin-bottom: 24px;
    position: relative;
}

    .contact-form .form-group.full-width {
        width: 100%;
    }

.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: #C8A865;
    font-size: 0.95rem;
    font-weight: 500;
}

    .contact-form label i {
        margin-right: 8px;
        opacity: 0.8;
    }

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(200, 168, 101, 0.3);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

    .contact-form input::placeholder,
    .contact-form textarea::placeholder {
        color: rgba(255,255,255,0.4);
    }

    .contact-form input:focus,
    .contact-form select:focus,
    .contact-form textarea:focus {
        outline: none;
        border-color: #C8A865;
	color: white;
        background: rgba(200, 168, 101, 0.1);
        box-shadow: 0 0 0 3px rgba(200, 168, 101, 0.15);
    }

    /* Validation States */
    .contact-form input.is-invalid,
    .contact-form select.is-invalid,
    .contact-form textarea.is-invalid {
        border-color: #ef4444;
        background: rgba(239, 68, 68, 0.05);
    }

        .contact-form input.is-invalid:focus,
        .contact-form select.is-invalid:focus,
        .contact-form textarea.is-invalid:focus {
            border-color: #ef4444;
            box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
        }

    .contact-form input.is-valid,
    .contact-form select.is-valid,
    .contact-form textarea.is-valid {
        border-color: #10b981;
        background: rgba(16, 185, 129, 0.05);
    }

        .contact-form input.is-valid:focus,
        .contact-form select.is-valid:focus,
        .contact-form textarea.is-valid:focus {
            border-color: #10b981;
            box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
        }

.invalid-feedback {
    display: none;
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 6px;
    animation: fadeIn 0.3s ease;
}

.was-validated .form-control:invalid ~ .invalid-feedback,
.form-control.is-invalid ~ .invalid-feedback {
    display: block;
}

@@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C8A865' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

    .contact-form select option {
        background: #1a1a1a;
        color: #fff;
        padding: 10px;
    }

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Checkbox Styling */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}

    .checkbox-label input[type="checkbox"] {
        display: none;
    }

    .checkbox-label .checkmark {
        width: 22px;
        height: 22px;
        min-width: 22px;
        border: 2px solid rgba(200, 168, 101, 0.5);
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        margin-top: 2px;
    }

    .checkbox-label input[type="checkbox"]:checked + .checkmark {
        background: #C8A865;
        border-color: #C8A865;
    }

        .checkbox-label input[type="checkbox"]:checked + .checkmark::after {
            content: '✓';
            color: #0a0a0a;
            font-size: 14px;
            font-weight: bold;
        }

    .checkbox-label input[type="checkbox"]:invalid + .checkmark {
        border-color: #ef4444;
    }

    .checkbox-label a {
        color: #C8A865;
        text-decoration: underline;
    }

        .checkbox-label a:hover {
            color: #d4b978;
        }

/* Submit Button */
.btn-contact-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 48px;
    background: linear-gradient(135deg, #C8A865 0%, #a08050 100%);
    color: #0a0a0a;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 10px;
}

    .btn-contact-large:hover:not(:disabled) {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(200, 168, 101, 0.3);
        background: linear-gradient(135deg, #d4b978 0%, #C8A865 100%);
    }

    .btn-contact-large:active:not(:disabled) {
        transform: translateY(-1px);
    }

    .btn-contact-large:disabled {
        opacity: 0.6;
        cursor: not-allowed;
    }

.form-note {
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    margin-top: 20px;
    margin-bottom: 0;
}

/* ============================================
       RESPONSIVE
       ============================================ */
@media (max-width: 768px) {
    .alert {
        top: 20px !important;
        right: 10px !important;
        left: 10px !important;
        max-width: none !important;
    }

    .contact-form-wrapper {
        padding: 25px 20px;
    }

    .contact-form .form-row {
        flex-direction: column;
        gap: 0;
    }

    .contact-form .form-group {
        margin-bottom: 20px;
    }

    .btn-contact-large {
        width: 100%;
        padding: 16px 30px;
    }
}

.locations-list-column {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.locations-list-column li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.locations-list-column li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #d4af37; /* Gold-Akzent, pass an dein Farbschema an */
    font-weight: bold;
}

.locations-list-column li a {
    color: black;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.locations-list-column li a:hover {
    color: #d4af37;
    padding-left: 5px;
}

.locations-footer {
    text-align: center;
    margin-top: 30px;
    font-style: italic;
    opacity: 0.8;
    font-size: 1.1rem;
}

@media (max-width: 767px) {
    .locations-list-column {
        text-align: center;
    }
    
    .locations-list-column li {
        padding-left: 0;
    }
    
    .locations-list-column li::before {
        display: none;
    }
}