@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

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

body {
    margin: 0;
    background: #ffffff;
    color: #111;
     font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/* =========================
   TOP BANNER
========================= */

.top-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 120px;
    background: white;
    padding: 0 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    z-index: 10;
}

.logo-center img {
    width: 242px;
    height: 100px;
    object-fit: contain;
}

/* Mobile Banner */
@media (max-width: 768px) {
    .top-banner {
        flex-direction: column;
        height: auto;
        gap: 10px;
        text-align: center;
        padding: 10px;
    }
}

/* =========================
   GLAS DIV
========================= */



.glas-div {
      width: 100%;
      height: 80px;
      background: linear-gradient(135deg, #EEBB00 0%, #FFBB00 100%);
      border-radius: 0px;
      position: relative;
      overflow: hidden;
      box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.06),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1);
      
      /* Starker Glassmorphism-Effekt */
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.4);
      
      /* Extra Glanz für modernen Look */
      background-image: 
        linear-gradient(135deg, #EEBB00 0%, #FFCC00 100%),
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.5) 0%, transparent 50%);
    }

    .glas-div::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.35) 0%,
        rgba(255, 255, 255, 0.05) 40%,
        transparent 60%,
        rgba(255, 255, 255, 0.15) 100%
      );
      pointer-events: none;
      z-index: 1;
    }
.glas-text {
      position: absolute;
      bottom: 12px;
      right: 20px;
      color: #000000;
      font-family: 'Inter', sans-serif;
      font-size: 16px;
      font-weight: 600;
      margin: 0;
      z-index: 2; /* über dem Glaseffekt */
      text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6); /* leichter Schatten für bessere Lesbarkeit */
    }






























/* =========================
   SERIÖSES 3D GLASS SIDEBAR
========================= */

.sidebar {
    position: fixed;
    top: 50%;
    left: 28px;
    transform: translateY(-50%);

    width: 190px;
    padding: 18px 18px;

    /* Glas mit 3D-Effekt */
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);

    border-radius: 26px;
    
    /* Dünne schwarze Linie für 3D-Effekt */
    border: 1.5px solid rgba(0, 0, 0, 0.18);
    
    /* Mehrere Schichten für Tiefe */
    box-shadow: 
        0 25px 55px -15px rgba(0, 0, 0, 0.4),
        inset 0 8px 0 rgba(255, 255, 255, 0.95),      /* heller oberer Rand */
        inset 0 -8px 0 rgba(0, 0, 0, 0.08);           /* dunkler unterer Rand */

    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Glanz nur oben rechts am Menü */
.sidebar::before {
    content: '';
    position: absolute;
    top: -8px;
    right: -8px;
    width: 90px;
    height: 70px;
    
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.95) 90%,
        rgba(255, 255, 255, 0.95) 95%,
        transparent 80%
    );
    
    border-radius: 40% 20% 50% 30%;
    pointer-events: none;
    z-index: 2;
    opacity: 0.9;
    filter: blur(16px);
}

/* Menü-Buttons – seriös und clean */
.sidebar a {
    display: flex;
    align-items: center;
    gap: 12px;
    
    padding: 13px 18px;
    border-radius: 14px;
    
    color: #1f1f1f;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    
    transition: all 0.25s ease;
}

/* Einfacher Hover-Effekt */
.sidebar a:hover {
    background: rgba(240, 240, 240, 0.9);
    color: #000;
    transform: translateX(6px);
}

/* Aktiver Link (falls benötigt) */
.sidebar a.active {
    background: rgba(30, 30, 30, 0.95);
    color: white;
}


.content-container {
    min-height: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;     /* Vertikale Zentrierung */
    align-items: center;         /* Horizontale Zentrierung */
    text-align: center;          /* Text zentrieren */
    background-color: #f8f9fa;
    padding: 20px;
    box-sizing: border-box;
}




















}

/* =========================
   CONTENT
========================= */

.content {
    margin-left: 0;
}

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

.hero {
    width: 100%;
    height: 400px;
    background: url('/fp/includ/css/images/hero.jpg') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

/* dunkles Overlay */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
}

/* =========================
   OFFERS / CARDS
========================= */

.offers {
    padding: 40px;
}

.cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    flex: 1;
    min-width: 220px;

    padding: 20px;
    background: white;
    border-radius: 15px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.1);

    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

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

footer {
    background: #111;
    color: white;

    display: flex;
    justify-content: space-around;

    padding: 20px;
    margin-top: 40px;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .sidebar {
        top: auto;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);

        flex-direction: row;
        width: auto;
    }

    .sidebar a {
        font-size: 12px;
        padding: 10px 12px;
    }

    .cards {
        flex-direction: column;
    }
}
