/* ============================================
   VIP GARAGE - Custom Styles
   Dark Premium Theme with Gold Accents
   ============================================ */

:root {
    --gold:        #c8a84e;
    --gold-light:  #dcc06a;
    --gold-dark:   #a8892e;
    --dark:        #0a0a0a;
    --dark-2:      #111111;
    --dark-3:      #1a1a1a;
    --dark-4:      #222222;
    --text-light:  #e0e0e0;
    --text-muted:  #888888;
}

/* ---- Base ---- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark);
    color: var(--text-light);
    overflow-x: hidden;
}
a { color: var(--gold); transition: color .3s; }
a:hover { color: var(--gold-light); }
img { max-width: 100%; height: auto; }

/* ---- Cookie Consent Override ---- */
.cc--darkmode {
    --cc-bg: #111111;
    --cc-primary-color: #e0e0e0;
    --cc-secondary-color: #888888;
    --cc-btn-primary-bg: #c8a84e;
    --cc-btn-primary-color: #000;
    --cc-btn-primary-border-color: #c8a84e;
    --cc-btn-primary-hover-bg: #a8892e;
    --cc-btn-primary-hover-color: #000;
    --cc-btn-primary-hover-border-color: #a8892e;
    --cc-btn-secondary-bg: #1a1a1a;
    --cc-btn-secondary-color: #e0e0e0;
    --cc-btn-secondary-border-color: rgba(200,168,78,.25);
    --cc-btn-secondary-hover-bg: #222222;
    --cc-btn-secondary-hover-color: #fff;
    --cc-btn-secondary-hover-border-color: rgba(200,168,78,.4);
    --cc-separator-border-color: rgba(200,168,78,.1);
    --cc-footer-bg: #0a0a0a;
    --cc-footer-color: #888888;
    --cc-footer-border-color: rgba(200,168,78,.1);
    --cc-link-color: #c8a84e;
    --cc-toggle-on-bg: #c8a84e;
    --cc-toggle-off-bg: #333;
    --cc-overlay-bg: rgba(0,0,0,.75);
    --cc-cookie-category-block-bg: #1a1a1a;
    --cc-cookie-category-block-border: rgba(200,168,78,.1);
    --cc-cookie-category-block-hover-bg: #222222;
    --cc-cookie-category-block-hover-border: rgba(200,168,78,.2);
    --cc-font-family: 'Montserrat', sans-serif;
    --cc-modal-border-radius: 4px;
    --cc-btn-border-radius: 2px;
}
#cc-main .cm--bar {
    border-top: 1px solid rgba(200,168,78,.2);
    box-shadow: 0 -4px 30px rgba(0,0,0,.5);
}
#cc-main .cm__title {
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: .95em;
    color: #c8a84e;
}
#cc-main .cm__btn {
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: .75em;
}
#cc-main .cm__footer {
    border-top-color: rgba(200,168,78,.1);
}
#cc-main .cm__link-group a {
    color: #888 !important;
    font-weight: 500;
}
#cc-main .cm__link-group a:hover {
    color: #c8a84e !important;
}

/* ---- Utility ---- */
.text-gold { color: var(--gold) !important; }
.bg-gold { background-color: var(--gold) !important; }
.bg-dark-2 { background-color: var(--dark-2) !important; }
.bg-dark-3 { background-color: var(--dark-3) !important; }
.bg-dark-4 { background-color: var(--dark-4) !important; }
.fw-600 { font-weight: 600 !important; }
.fw-700 { font-weight: 700 !important; }
.fw-800 { font-weight: 800 !important; }
.fw-900 { font-weight: 900 !important; }
.section-padding { padding: 80px 0; }
.text-script {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--gold);
}

/* ---- Button Gold ---- */
.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #000;
    border: 2px solid var(--gold);
    font-weight: 700;
    letter-spacing: .5px;
    padding: 10px 24px;
    border-radius: 4px;
    transition: all .3s;
    text-decoration: none;
    display: inline-block;
}
.btn-gold:hover {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

.btn-gold-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    font-weight: 700;
    letter-spacing: .5px;
    padding: 10px 24px;
    border-radius: 4px;
    transition: all .3s;
    text-decoration: none;
    display: inline-block;
}
.btn-gold-outline:hover {
    background: var(--gold);
    color: #000;
}

/* ---- Navbar ---- */
#mainNavbar {
    background: rgba(10, 10, 10, 0);
    backdrop-filter: blur(0px);
    padding: 20px 0;
    border-bottom: 1px solid rgba(200, 168, 78, 0);
    transition: all .5s cubic-bezier(.25,.8,.25,1);
    z-index: 1000;
}
#mainNavbar.scrolled {
    padding: 10px 0;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(12px);
    border-bottom-color: rgba(200, 168, 78, 0.12);
    box-shadow: 0 4px 30px rgba(0,0,0,.4);
}

.navbar-brand {
    text-decoration: none;
    opacity: 0;
    animation: navFadeIn .8s .2s forwards;
}
.navbar-logo {
    height: 40px;
    width: auto;
    transition: all .5s cubic-bezier(.25,.8,.25,1);
    filter: drop-shadow(0 2px 8px rgba(200, 168, 78, 0.2));
}
body.is-home .navbar-logo {
    height: 100px;
}
body.is-home #mainNavbar.scrolled .navbar-logo,
#mainNavbar.scrolled .navbar-logo {
    height: 34px;
}

#mainNavbar .navbar-nav .nav-item {
    opacity: 0;
    animation: navSlideDown .5s forwards;
}
#mainNavbar .navbar-nav .nav-item:nth-child(1) { animation-delay: .3s; }
#mainNavbar .navbar-nav .nav-item:nth-child(2) { animation-delay: .4s; }
#mainNavbar .navbar-nav .nav-item:nth-child(3) { animation-delay: .5s; }
#mainNavbar .navbar-nav .nav-item:nth-child(4) { animation-delay: .6s; }
#mainNavbar .navbar-nav .nav-item:nth-child(5) { animation-delay: .7s; }

@keyframes navFadeIn {
    from { opacity: 0; transform: translateX(-10px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes navSlideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

#mainNavbar .navbar-nav .nav-link {
    color: rgba(255,255,255,.7);
    font-weight: 600;
    font-size: .8rem;
    letter-spacing: 2px;
    padding: 8px 14px;
    position: relative;
    transition: color .3s, transform .3s;
}
#mainNavbar .navbar-nav .nav-link:hover {
    color: #fff;
    transform: translateY(-1px);
}
#mainNavbar .navbar-nav .nav-link.active {
    color: var(--gold);
}
#mainNavbar .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transition: width .4s cubic-bezier(.25,.8,.25,1);
    transform: translateX(-50%);
}
#mainNavbar .navbar-nav .nav-link:hover::after,
#mainNavbar .navbar-nav .nav-link.active::after {
    width: 80%;
}

/* ---- Nav CTA Button ---- */
.btn-nav-cta {
    display: inline-block;
    padding: 10px 28px;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    color: #000;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    border: 1px solid var(--gold);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    transition: all .4s cubic-bezier(.25,.8,.25,1);
}
.btn-nav-cta::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
    transition: left .5s;
}
.btn-nav-cta:hover {
    color: var(--gold);
    background: transparent;
    box-shadow: 0 0 20px rgba(200, 168, 78, 0.2);
}
.btn-nav-cta:hover::before {
    left: 100%;
}
.btn-nav-cta::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 3px;
    background: var(--gold);
    opacity: 0;
    z-index: -1;
    animation: ctaPulse 3s infinite;
}
@keyframes ctaPulse {
    0%, 100% { opacity: 0; transform: scale(1); }
    50%      { opacity: .12; transform: scale(1.05); }
}

/* ---- Hero Section ---- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 80px;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.3) 0%,
        rgba(0,0,0,0.5) 50%,
        rgba(0,0,0,0.85) 100%
    );
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-title-script {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 8px;
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.hero-subtitle {
    font-size: .95rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 3px;
    margin-top: 16px;
    text-transform: uppercase;
}

/* ---- Services Section ---- */
.services-section { background: var(--dark-2); }
.service-card {
    text-align: center;
    padding: 40px 24px;
    border-radius: 8px;
    background: var(--dark-3);
    border: 1px solid rgba(200, 168, 78, 0.1);
    transition: all .3s;
}
.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(200, 168, 78, 0.1);
}
.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold);
}
.service-card h4 {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 12px;
}
.service-card p {
    color: var(--text-muted);
    font-size: .9rem;
    line-height: 1.6;
}

/* ---- Service Image Cards ---- */
.service-card-img {
    display: block;
    text-decoration: none;
    background: var(--dark-3);
    border: 1px solid rgba(200, 168, 78, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: all .4s cubic-bezier(.25,.8,.25,1);
}
.service-card-img:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(200, 168, 78, 0.12);
}
.service-card-thumb {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform .5s;
}
.service-card-img:hover .service-card-thumb {
    transform: scale(1.05);
}
.service-card-body {
    padding: 24px;
    text-align: center;
}
.service-card-body h4 {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 10px;
}
.service-card-body p {
    color: var(--text-muted);
    font-size: .9rem;
    line-height: 1.6;
    margin-bottom: 12px;
}
.service-card-link {
    color: var(--gold);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: letter-spacing .3s;
}
.service-card-img:hover .service-card-link {
    letter-spacing: 2px;
}

/* ---- About Section ---- */
.about-section {
    background: var(--dark-3);
    position: relative;
    overflow: hidden;
}
.about-label {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 8px;
}
.about-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 24px;
}
.about-text {
    color: var(--text-muted);
    font-size: .95rem;
    line-height: 1.8;
    margin-bottom: 24px;
}
.about-logo-area {
    background: var(--dark);
    border-radius: 12px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}
.about-logo-img {
    max-width: 80%;
    height: auto;
}

/* ---- Contact Bar ---- */
.contact-bar {
    background: var(--dark-3);
    border-top: 1px solid rgba(200, 168, 78, 0.2);
    border-bottom: 1px solid rgba(200, 168, 78, 0.2);
}

/* ---- Footer ---- */
.site-footer {
    background: var(--dark);
}
.footer-brand {
    color: #fff;
    font-size: 1.1rem;
    letter-spacing: 3px;
}

/* ---- Page Header (Unterseiten) ---- */
.page-header {
    background: var(--dark-3);
    padding: 140px 0 60px;
    text-align: center;
    border-bottom: 1px solid rgba(200, 168, 78, 0.15);
}
.page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
}
.page-header .breadcrumb {
    justify-content: center;
    margin-top: 12px;
}
.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    color: var(--text-muted);
    font-size: .85rem;
    text-decoration: none;
}
.page-header .breadcrumb-item.active { color: var(--gold); }

/* ---- Kontakt Page ---- */
.contact-section { background: var(--dark-2); }
.contact-info-card {
    background: var(--dark-3);
    border: 1px solid rgba(200, 168, 78, 0.1);
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 16px;
    transition: border-color .3s;
}
.contact-info-card:hover { border-color: var(--gold); }
.contact-info-card i {
    color: var(--gold);
    font-size: 1.5rem;
    width: 40px;
}
.form-control,
.form-select {
    background: var(--dark-3);
    border: 1px solid rgba(200, 168, 78, 0.2);
    color: #fff;
    border-radius: 4px;
    padding: 12px 16px;
}
.form-control:focus,
.form-select:focus {
    background: var(--dark-4);
    border-color: var(--gold);
    color: #fff;
    box-shadow: 0 0 0 .2rem rgba(200, 168, 78, 0.15);
}
.form-control::placeholder { color: var(--text-muted); }
.form-label { color: var(--text-light); font-weight: 600; font-size: .85rem; letter-spacing: .5px; }

/* ---- Impressum / Datenschutz ---- */
.legal-section { background: var(--dark-2); }
.legal-section h2 {
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 12px;
}
.legal-section p,
.legal-section li {
    color: var(--text-muted);
    font-size: .9rem;
    line-height: 1.7;
}
.legal-section a { color: var(--gold); }

/* ---- 404 ---- */
.error-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--dark-2);
}
.error-section h1 {
    font-size: 8rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}
.error-section p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin: 16px 0 32px;
}

/* ---- Animations ---- */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
    .hero-title { font-size: 2.5rem; }
    .hero-title-script { font-size: 1.5rem; }
    .about-title { font-size: 1.8rem; }
    .section-padding { padding: 60px 0; }
    .navbar-collapse {
        background: var(--dark-2);
        padding: 20px;
        border-radius: 8px;
        margin-top: 12px;
        border: 1px solid rgba(200, 168, 78, 0.1);
    }
    #mainNavbar .navbar-nav .nav-link.active::after { display: none; }
}

@media (max-width: 575.98px) {
    .hero-title { font-size: 2rem; }
    .hero-section { min-height: 80vh; padding-bottom: 40px; }
    .page-header { padding: 120px 0 40px; }
    .page-header h1 { font-size: 1.8rem; }
}