/* VIP-Bild dezent im Eck */
.vip-page {
    position: relative; /* Container für absolute Positionierung */
}

.vip-image-container {
    position: absolute;
    top: 20px;       /* Abstand nach unten vom Main-Start */
    right: -10px;    /* leicht über den Rand hinaus, kannst du anpassen */
    width: 220px;    /* Bildgröße */
    opacity: 0.85;
    z-index: 0;      /* hinter dem Text */
}

.vip-image-container img {
    width: 100%;
    height: auto;
    transform: rotate(-5deg);
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.vip-image-container img:hover {
    transform: rotate(0deg) scale(1.05);
    opacity: 1;
}

/* Handy: Bild wieder in den Textfluss setzen */
@media (max-width: 768px) {
    .vip-image-container {
        position: relative;
        top: 0;
        right: 0;
        margin: 10px auto 20px auto;
        display: block;
        width: 150px;
    }
}


/* Logo & Telefonnummer nebeneinander */
header {
    background: #071A34;
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* Logo + Kontakt nebeneinander */
.header-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

header .logo img {
    height: 100px;
}

/* Kontaktinfos inline */
.contact-under-logo {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Telefonnummer auffällig */
.fancy-phone {
    font-size: 1.6rem;
    font-weight: bold;
    color: gold;
    text-decoration: none;
    transform: rotate(-2deg);
    text-shadow: 2px 2px 5px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
}

.fancy-phone:hover {
    transform: rotate(0deg) scale(1.05);
    color: #FFD700;
}

.fancy-phone i {
    margin-right: 8px;
}

/* E-Mail dezenter */
.fancy-email {
    font-size: 1rem;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.fancy-email i {
    margin-right: 6px;
    color: gold;
}

.fancy-email:hover {
    color: #FFD700;
}
.about-philosophy {
    margin: 2rem 0;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.about-why {
    margin: 2rem 0;
    padding: 2rem;
    background: #071A34;
    color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.about-why h2 {
    margin-bottom: 1rem;
}

.about-why ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 2rem 0;
}

.about-why li {
    margin: 0.5rem 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-why i {
    color: gold;
}
.about-text-with-logo {
    position: relative;
}

.ratzek-inline-logo {
    width: 280px;               /* nochmal deutlich größer */
    height: auto;
    margin-right: 20px;         /* mehr Abstand zum Text */
    float: left;                /* links neben Text */
    transform: rotate(-5deg);   /* leicht schräg */
    border-radius: 10px;        /* etwas stärkere Abrundung */
    box-shadow: 0 6px 14px rgba(0,0,0,0.4);  /* kräftiger Schatten */
    opacity: 0.98;              /* fast voll sichtbar */
}

.vip-button-container {
    margin-top: 2rem;
    text-align: center;
}

.btn-vip {
    display: inline-block;
    background: linear-gradient(45deg, #071A34, #1a73e8);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-vip:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.4);
}

.vip-list {
    list-style: none;
    padding-left: 0;
}

.vip-list li {
    background: #f9f9f9;
    margin: 0.5rem 0;
    padding: 0.8rem 1rem;
    border-left: 5px solid #071A34;
    border-radius: 5px;
}
.service-buttons {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.btn-service {
    display: inline-block;
    background: linear-gradient(45deg, #071A34, #1a73e8);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-service:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.4);
}

.homepage-list {
    list-style: none;
    padding-left: 0;
}

.homepage-list li {
    background: #f9f9f9;
    margin: 0.5rem 0;
    padding: 0.8rem 1rem;
    border-left: 5px solid #1a73e8;
    border-radius: 5px;
}

/* --------------------
   Grundlegendes Reset
-------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* --------------------
   Body
-------------------- */
body {
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

/* --------------------
   Header
-------------------- */
header {
    background: #071A34;
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

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

header .logo img {
    height: 130px; /* leicht verkleinert für mobile */
    margin-right: 20px;
}

/* Navigation schöner gestalten */
nav {
    display: flex;
    gap: 15px;
}

nav a {
    position: relative;
    padding: 6px 14px;

    background: rgba(255,255,255,0.28);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 8px;

    color: white;
    font-weight: bold;
    text-decoration: none;

    transition: all 0.25s ease;
    overflow: hidden; /* wichtig für den Lichteffekt */
}
nav a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 40%;

    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0.35),
        rgba(255,255,255,0)
    );

    pointer-events: none;
}

/* Hover-Effekt */
nav a:hover {
    background: rgba(255,255,255,0.45);
    color: #071A34;
    box-shadow: 0 6px 16px rgba(0,0,0,0.35);
    transform: translateY(-2px);
}

/* Aktiver Menüpunkt */
nav a.active {
    background: #FFD700;
    color: #071A34;
}

/* Optional: kleine Animation beim Klick */
nav a:active {
    transform: scale(0.95);
}

/* Mobile Anpassungen */
@media (max-width: 768px) {

    nav {
        display: flex;
        flex-direction: column;
        width: 100%;
        background: #071A34;

        position: absolute;
        top: 100%;
        left: 0;

        transform: scaleY(0);
        transform-origin: top;
        transition: transform 0.3s ease;

        box-shadow: 0 8px 20px rgba(0,0,0,0.4);
        z-index: 999; /* wichtig */
    }

    nav.active {
        transform: scaleY(1);
    }

    nav a {
        padding: 12px 20px;
        font-size: 1.2rem;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .hamburger {
        display: block;
        cursor: pointer;
        z-index: 1100;
    }

}
/* --------------------
   Container
-------------------- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

/* --------------------
   Hero Bereich
-------------------- */
.hero {
    background: linear-gradient(rgba(7,26,52,0.85), rgba(7,26,52,0.85)), 
                url('assets/images/hero.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 30px 1px; /* schmaler Hero */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.hero h1 span {
    color: #FFD700;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* --------------------
   CTA Button
-------------------- */
.cta-button {
    display: inline-block;
    padding: 12px 25px;
    background: #FFD700;
    color: #071A34;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}

.cta-button:hover {
    background: #e6c200;
    transform: translateY(-3px);
}

/* --------------------
   Grid Layout
-------------------- */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, 250px);
    gap: 2rem;
    margin-top: 2rem;
    justify-content: center;
}

/* --------------------
   Service Boxen mit Bildern
-------------------- */
.box {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
    width: 250px;
    height: 250px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}


.box:hover img {
    transform: scale(1.05);
}

.box-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.5);
    padding: 10px;
    text-align: center;
}

.box-content h3 {
    margin: 5px 0;
    font-size: 1.1rem;
    color: #FFD700;
}

.box-content p {
    margin: 0;
    font-size: 0.9rem;
    color: #fff;
}

/* --------------------
   Footer
-------------------- */
footer {
    background-color: #071A34;
    color: white;
    text-align: center;
    padding: 20px 0;
}

/* --------------------
   Responsive Anpassungen
-------------------- */
@media (max-width: 768px) {
    header .logo img {
        height: 80px;
        margin-right: 15px;
    }

    .container {
        padding: 1rem;
    }

    .box {
        width: 100%;
        height: 200px;
    }

    .hero {
        padding: 40px 15px;
    }

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

    .hero p {
        font-size: 1rem;
    }
}
/* --------------------
   Kontaktformulare
-------------------- */
/* Allgemeines Formular-Layout */
.kontakt-form {
    max-width: 600px;
    margin: 0 auto;
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.kontakt-form input,
.kontakt-form textarea,
.kontakt-form button {
    width: 100%;
    padding: 0.75rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

/* Button */
.kontakt-form button {
    background: #0077cc;
    color: #fff;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}
.kontakt-form button:hover {
    background: #005fa3;
}

/* Datenschutzhinweis */
.privacy-check {
    font-size: 0.9rem;
    display: block;
    margin-top: -0.5rem;
}

/* Erfolgs-/Fehlernachrichten */
.alert {
    max-width: 600px;
    margin: 1rem auto;
    padding: 1rem;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
.fols-button-container {
    text-align: center;
    margin: 1rem 0;
}

.btn-fols {
    background: linear-gradient(45deg, #071A34, #1a73e8);
    color: white;
    font-size: 0.9rem;        /* kleinerer Text */
    font-weight: bold;
    padding: 0.4rem 1rem;     /* halbiertes Padding */
    border: none;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25); /* etwas dezenterer Schatten */
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-fols:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
/* --------------------
   Header mit Hintergrundbild
-------------------- */

header {
    position: relative;


    background:
        linear-gradient(to bottom, rgba(7,26,52,0.25), rgba(7,26,52,0.60)),
        url("../images/headerpic.png") center/cover no-repeat;

    color: white;
    padding: 1.5rem 2rem;
    min-height: 250px;
z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;   /* ← hier geändert */
    flex-wrap: wrap;
}
nav {
    display: flex;
    gap: 15px;
    margin-top: 40px;   /* steuert die Höhe der Buttons */
}
/* --------------------
   Buttons für Mobilgeräte
-------------------- */
@media (max-width: 768px) {

    .service-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn-service {
        width: 90%;
        max-width: 300px;
        text-align: center;
    }
/* --------------------
   Buttons für Objektmanager
-------------------- */
/* ObjektManager Button */
.objektmanager-btn{
    position:absolute;
    top:12px;
    right:15px;

    background:linear-gradient(45deg,#FFD700,#ffb300);
    color:#071A34;

    padding:10px 16px;
    border-radius:8px;

    text-decoration:none;
    font-weight:bold;
    font-size:0.9rem;

    box-shadow:0 4px 10px rgba(0,0,0,.25);
    transition:all .2s ease;

    z-index:2000;
}

.objektmanager-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 6px 14px rgba(0,0,0,.35);
    color:#071A34;
}

.objektmanager-btn i{
    margin-right:6px;
}

@media (max-width:768px){

    .objektmanager-btn{
        top:10px;
        right:60px; /* Platz für Hamburger */
        padding:8px 10px;
        font-size:0.75rem;
    }

}
