/* 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;
}