/* =========================================
   ROOT / VARIABLES
========================================= */

:root {
    --bg-color: #0b0b0f;
    --primary-start: #f31313;
    --primary-end: #ff914d;
    --primary-gradient: linear-gradient(135deg, var(--primary-start), var(--primary-end));

    --accent-glow: rgba(243, 19, 19, 0.15);

    --text-light: #ffffff;
    --text-muted: #888888;

    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}


/* =========================================
   RESET / GLOBAL
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}


/* =========================================
   GLOBAL HELPERS
========================================= */

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

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


/* =========================================
   BACKGROUND EFFECTS
========================================= */

.grid-bg {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background-color: #3232322d;
    background-size: 50px 50px;

    z-index: -2;
}


/* =========================================
   DETAIL CTA BUTTON
========================================= */

.detail-cta-wrapper {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

.big-detail-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 25px 40px;

    background: var(--glass-bg);

    border: 1px solid var(--glass-border);
    border-radius: 20px;

    text-decoration: none;

    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    position: relative;
    overflow: hidden;
}

.big-detail-btn:hover {
    border-color: var(--primary-start);

    transform: translateY(-5px);

    background: rgba(243, 19, 19, 0.05);

    box-shadow: 0 15px 30px rgba(243, 19, 19, 0.15);
}



a{
    text-decoration: none;
}
/* =========================================
   POLITUR TIMELINE
========================================= */

.process-timeline {
    display: flex;
    justify-content: space-between;

    gap: 20px;

    margin-top: 40px;
}

.timeline-item {
    flex: 1;
    text-align: center;
}


/* HEADER */
header {
    border-radius: 10px;


    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(11, 11, 15, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}


/* HEADER & NAVIGATION */
.floating-pill {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    height: 70px;
    background: rgba(11, 11, 15, 0.85);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    z-index: 9999;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-pill-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 1rem;
    
}

.logo-pill-inner img {
    height: 60px;
    width: auto;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.main-nav a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: 0.3s;
}

.main-nav a:hover {
    color: #fff;
}

.whatsapp-btn {
    background: var(--primary-gradient);
    color: #000000 !important;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.8rem !important;
    font-weight: 800 !important;
    text-decoration: none;
}

/* HAMBURGER STYLING */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: 0.3s;
}



@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* HERO */

.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 100px;
    flex-wrap: wrap;
    /* Damit sie auf dem Handy untereinander springen */

}

.hero-btn {
    width: auto !important;
    /* Verhindert, dass sie die volle Breite einnehmen */
    min-width: 200px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

/* Kleiner Hover-Effekt für den Outline-Button im Hero */
.btn-outline.hero-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-end);
}

.hero {
    padding-top: 130px;
    padding-bottom: 60px;
    text-align: center;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    background: linear-gradient(to bottom, #fff 60%, var(--primary-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtext {
    color: var(--text-muted);
    max-width: 600px;
    margin: 20px auto 40px;
}



/* =========================================
   FOOTER
========================================= */

footer {
    margin-top: 80px;
    padding: 80px 0 40px;

    background: rgba(0, 0, 0, 0.25);

    border-top: 1px solid var(--glass-border);
}


/* =========================================
   FOOTER LAYOUT
========================================= */

.footer-content {
    display: flex;
    flex-direction: column;

    gap: 50px;
}


/* =========================================
   FOOTER BRAND
========================================= */

.footer-brand {
    text-align: center;
}

.footer-logo {
    display: inline-flex;
    align-items: center;

    gap: 12px;

    text-decoration: none;

    color: #fff;

    font-size: 1.3rem;
    font-weight: 900;

    text-transform: uppercase;
}

.footer-logo img {
    height: 80px;
    width: auto;
}

.footer-text {
    max-width: 650px;

    margin: 20px auto 0;

    color: var(--text-muted);

    line-height: 1.8;
}


/* =========================================
   FOOTER GRID
========================================= */

.footer-links-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

    gap: 40px;
}


/* =========================================
   FOOTER COLUMNS
========================================= */

.footer-column h4 {
    margin-bottom: 20px;

    color: #fff;

    font-size: 1rem;
}

.footer-column a,
.footer-column p {
    display: block;

    margin-bottom: 12px;

    color: var(--text-muted);

    text-decoration: none;

    transition: 0.3s;
}

.footer-column a:hover {
    color: var(--primary-end);
}

.footer-column i {
    margin-right: 10px;

    color: var(--primary-end);
}


/* =========================================
   SOCIALS
========================================= */

.footer-socials {
    display: flex;
    justify-content: center;

    gap: 20px;
}

.footer-socials a {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--glass-bg);

    border: 1px solid var(--glass-border);
    border-radius: 50%;

    color: #fff;

    text-decoration: none;

    transition: 0.3s;
}

.footer-socials a:hover {
    transform: translateY(-5px);

    border-color: var(--primary-start);

    background: rgba(243, 19, 19, 0.08);
}


/* =========================================
   COPYRIGHT
========================================= */

.footer-bottom {
    text-align: center;

    padding-top: 20px;

    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom p {
    color: var(--text-muted);

    font-size: 0.9rem;
}



/* ÜBER UNS (JETZT IN DEINEM ORANGE/ROT) */
.about-section {
    padding: 80px 0;
    background: radial-gradient(circle at center, rgba(243, 19, 19, 0.08) 0%, transparent 70%);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-logo-wrapper {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.about-logo-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid var(--primary-start);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    position: relative;
    box-shadow: 0 0 40px rgba(243, 19, 19, 0.2);
}

.about-logo-circle i {
    font-size: 3.5rem;
    color: var(--primary-end);
}

.slogan-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    font-size: 1.4rem;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}
/* STANDORT */
.location-section {
    padding: 30px 0;
}

.location-frame {
    display: flex;
    min-height: 420px;

    border: 2px solid var(--primary-start);
    border-radius: 24px;
    overflow: hidden;

    background: var(--bg-color);
    box-shadow: 0 0 30px var(--accent-glow);
}

/* LINKE SEITE */
.location-info {
    width: 50%;
    display: flex;
    flex-direction: column;
    background: rgba(255,255,255,0.02);
}

.location-header {
    background: var(--primary-gradient);
    padding: 14px;
    text-align: center;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: white;
    text-transform: uppercase;
}

.location-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.location-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.location-content p {
    color: #cfcfcf;
    line-height: 1.6;
}

.location-details {
    margin-top: 30px;
}

.location-details p {
    margin-bottom: 12px;
    font-size: 1rem;
}

.location-details i {
    color: var(--primary-start);
    margin-right: 10px;
    width: 20px;
}

.location-btn {
    margin-top: 30px;
    width: fit-content;
}

/* RECHTE SEITE */
.location-map {
    width: 50%;
    min-height: 420px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}



.about-description {
    max-width: 850px;
    margin: 0 auto 60px;
    color: #ccc;
    font-size: 1.05rem;
}

.highlight-text {
    color: var(--primary-end);
    font-weight: 900;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.feature-card {
    background: var(--glass-bg);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: 0.3s;
}

.feature-card .icon-box {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.feature-card .icon-box i {
    color: white;
    font-size: 1.2rem;
}

.feature-card h4 {
    margin-bottom: 10px;
    font-weight: 800;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* GALERIE */
.gallery-section {
    background: rgba(255, 255, 255, 0.01);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    aspect-ratio: 16/10;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
    opacity: 1;
    cursor: zoom-in;
}

.gallery-item:hover img {
    transform: scale(1.05);
    opacity: 1;
}

.gallery-label {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.9);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: bold;
    border: 1px solid var(--primary-start);
}

.gallery-more-btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.gallery-more-btn:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px var(--accent-glow);
}

/* Schiebt den Fokus des Bildes nach oben */
.pos-top {
    object-position: 20% 25%;
    /* Zeigt das obere Ende des Bildes zuerst */
}

.pos-bottom {
    object-position: 20% 65%;
    /* Zeigt das obere Ende des Bildes zuerst */
}
/* Das Fullscreen Overlay Styling */
.fullscreen-overlay {
    display: none;
    /* Standardmäßig aus */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    /* Fast schwarzer Hintergrund */
    z-index: 9999;
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
    padding: 20px;
}

#full-image {
    max-width: 95%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    /* Animation beim Erscheinen */
    animation: zoomAnimation 0.3s ease-out;
}

.close-btn {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
}

@keyframes zoomAnimation {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* PAKETE */
.section-padding {
    padding: 20px 0;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.package-category-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.6rem;
    color: var(--primary-end);
    text-transform: uppercase;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.package-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 35px;
    border-radius: 28px;
    transition: 0.3s;
}

.package-card:hover {
    border-color: var(--primary-start);
    transform: translateY(-5px);
}

.package-card.highlight {
    border: 2px solid var(--primary-start);
    background: rgba(243, 19, 19, 0.05);
}

.price-tag {
    font-size: 2.8rem;
    font-weight: 900;
    margin: 15px 0;
}

.price-tag span {
    font-size: 1rem;
    color: var(--text-muted);
}

.pkg-list {
    list-style: none;
    margin-bottom: 25px;
}

.pkg-list li {
    color: #bbb;
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.pkg-list li i {
    color: var(--primary-start);
    margin-top: 4px;
}

.extras-section {
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
}

.extras-label {
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--primary-end);
}

.extra-item {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 8px;
    cursor: pointer;
    color: #ccc;
}

.extra-item input {
    margin-right: 10px;
    accent-color: var(--primary-start);
}

.btn-main {
    padding: 16px;
    border-radius: 15px;
    font-weight: 800;
    background: var(--primary-gradient);
    color: white;
    border: none;
    cursor: pointer;
    width: 100%;
    transition: 0.3s;
}

.btn-main:hover {
    opacity: 0.9;
    box-shadow: 0 10px 20px rgba(243, 19, 19, 0.2);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: white;
}

.btn-outline:hover {
    border-color: var(--primary-end);
}

/* TABLE */
.table-container {
    background: var(--glass-bg);
    border-radius: 24px;
    padding: 30px;
    overflow-x: auto;
    border: 1px solid var(--glass-border);
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

th,
td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--glass-border);
}

th {
    color: var(--primary-end);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

td {
    color: #ccc;
}

/* =========================================
   TABLET
   Anpassungen für kleinere Laptops & Tablets
========================================= */
@media (max-width: 992px) {

    /* SPLIT LAYOUTS */
    .split-container {
        flex-direction: column !important;
        gap: 30px;
    }

    /* MATERIAL GRID */
    .material-grid {
        grid-template-columns: 1fr;
    }

    /* HERO SPACING */
    .detail-hero {
        padding: 100px 0 40px;
    }

}


/* =========================================
   MOBILE
   Haupt-Mobile Layout
========================================= */
@media (max-width: 768px) {

    /* =====================================
       NAVIGATION / HEADER
    ===================================== */

    /* Hamburger anzeigen */
    .menu-toggle {
        display: flex;
    }

    /* Mobile Menü */
    .main-nav {
        display: none;
        position: fixed;
        top: 85px;
        right: 5%;

        flex-direction: column;

        width: 90%;

        padding: 30px;

        background: rgba(11, 11, 15, 0.98);
        backdrop-filter: blur(20px);

        border-radius: 25px;
        border: 1px solid var(--glass-border);

        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);

        z-index: 9998;
    }

    /* Menü geöffnet */
    .main-nav.active {
        display: flex;
        animation: fadeIn 0.3s ease forwards;
    }

    /* Nav Links */
    .main-nav a {
        width: 100%;

        padding: 15px 0;

        text-align: center;

        font-size: 1.1rem;
    }

    /* =====================================
       HAMBURGER ICON ANIMATION
    ===================================== */

    /* Mittlerer Balken verschwindet */
    .menu-toggle.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    /* Oberer Balken */
    .menu-toggle.is-active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    /* Unterer Balken */
    .menu-toggle.is-active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }


    /* =====================================
       HERO SECTION
    ===================================== */

    .hero h1 {
        font-size: 2.3rem;
    }


    /* =====================================
       ABOUT SECTION
    ===================================== */

    /* Features untereinander */
    .about-features-grid {
        grid-template-columns: 1fr;
    }

    /* Titel kleiner */
    .section-title {
        font-size: 2rem;
    }


    /* =====================================
       DETAIL BUTTONS
    ===================================== */

    .big-detail-btn {
        padding: 20px;
    }

    .big-detail-btn .btn-title {
        font-size: 1.1rem;
    }

    .big-detail-btn .btn-subtitle {
        font-size: 0.85rem;
    }


    /* =====================================
       TIMELINE
    ===================================== */

    .process-timeline {
        flex-direction: column;
        align-items: center;
    }

    .timeline-item {
        display: flex;
        align-items: center;

        gap: 20px;

        width: 100%;

        margin-bottom: 20px;

        text-align: left;
    }

    .timeline-img {
        width: 100px;
        height: 80px;

        margin-bottom: 0;
    }

}


/* =========================================
   SMALL MOBILE
   Kleine Smartphones
========================================= */
@media (max-width: 480px) {

    /* =====================================
       BEFORE / AFTER GALLERY
    ===================================== */

    .before-after-card {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .ba-image img {
        width: 100%;
        height: 350px;

        object-fit: cover;
        display: block;
    }

    .ba-label {
        font-size: 0.75rem;

        padding: 5px 12px;
    }

}




/* MOBILE */
@media (max-width: 900px) {

    .location-frame {
        flex-direction: column;
    }

    .location-info,
    .location-map {
        width: 100%;
    }

    .location-map {
        height: 300px;
    }

    .location-content {
        padding: 30px 20px;
    }

    .location-content h2 {
        font-size: 1.6rem;
    }
}
