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

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

html{
    scroll-behavior:smooth;
}

body{
    font-family: Arial, sans-serif;
    color:#1f2937;
    background:#ffffff;
    line-height:1.6;
}

/* =========================
   CONTAINER
========================= */

.container{
    width:90%;
    max-width:1100px;
    margin:auto;
}

/* =========================
   COLORS
========================= */

:root{

    --gold:#c8aa22;
    --gold-light:#e4d07a;

    --dark:#0F172A;

    --text:#374151;

    --light:#f8fafc;

}

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

header{

    position:sticky;
    top:0;

    z-index:1000;
    
    background:rgba(255,255,255,0.95);

    backdrop-filter:blur(10px);

    border-bottom:1px solid #eee;

}

.nav{

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

    padding:10px 0;

}

.logo{

    font-size:1.2rem;
    font-weight:700;
    color:var(--dark);

}

nav{

    display:flex;
    gap:30px;

}

nav a{

    text-decoration:none;
    color:var(--text);
    font-weight:500;
    transition:.3s;

}

nav a:hover{

    color:var(--gold);

}

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

.hero{

    min-height:50vh;

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

    text-align:center;
    background:var(--dark);
    /*background:
    linear-gradient(
        rgba(15,23,42,.75),
        rgba(15,23,42,.75)
    ),
    url("images/hero.jpg");*/

    background-size:cover;
    background-position:center;

    color:white;

}

.hero h1{
    color:var(--light);
    font-size:3rem;
    margin-bottom:15px;

}

.hero h2{
    color:var(--light);
    font-size:1.2rem;
    margin-bottom:15px;
}

.hero p{

    max-width:750px;
    margin:auto;

    font-size:1.0rem;

    opacity:.95;

}

/* =========================
   BUTTON
========================= */

		
.btn{

    display:inline-block;

    margin-top:35px;

    background:var(--gold);
    color:white;

    padding:16px 34px;

    border-radius:999px;

    text-decoration:none;
    font-weight:600;

    transition:.3s;

}		

.btn:hover{

    transform:translateY(-3px);

    background:#b59617;

    box-shadow:
    0 15px 35px rgba(200,170,34,.35);

}

/* =========================
   SECTIONS
========================= */

section{

    padding:120px 0;

}

section h2{

    text-align:center;

    margin-bottom:60px;

    font-size:2.3rem;

    color:var(--dark);

}

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

.about-grid{

    display:grid;

    grid-template-columns:
    1fr 1fr;

    gap:60px;

    align-items:center;

}

.about-image img{

    width:100%;

    border-radius:30px;

    box-shadow:
    0 20px 50px rgba(0,0,0,.1);

}

.about-content p{

    margin-bottom:20px;

    color:var(--text);

}

/* =========================
   AUDIENCE
========================= */

.audience{

    background:var(--light);

}

.audience-grid{

    display:flex;
    flex-direction:column;

    gap:20px;

    max-width:900px;
    margin:auto;

}

.audience .card{

    position:relative;

    text-align:left;

    padding:22px 25px 22px 55px;

    background:white;

    border-radius:18px;

}

.audience .card::before{

    content:"";

    position:absolute;

    left:22px;
    top:50%;

    width:12px;
    height:12px;

    border-radius:50%;

    background:var(--gold);

    transform:translateY(-50%);

}

/*.card:hover{

    transform:translateY(-6px);

}*/

/* =========================
   SERVICES
========================= */

.services-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

    gap:25px;

}

.service-card{

    background:white;

    padding:35px;

    border-radius:20px;

    box-shadow:
    0 10px 25px rgba(0,0,0,.05);

    transition:.3s;

    border-top:4px solid var(--gold);
    border-left:4px solid var(--gold);
    //border:4px solid var(--gold);

}

.service-card:hover{

    transform:translateY(-8px);

}

.service-card h3{

    margin-bottom:15px;

    color:var(--dark);

}

/* =========================
   ROADMAP
========================= */

.roadmap{

    background:var(--light);

}

.timeline{

    max-width:900px;
    margin:auto;

    position:relative;

}

.timeline::before{

    content:"";

    position:absolute;

    left:28px;
    top:0;
    bottom:0;

    width:3px;

    background:
    linear-gradient(
        var(--gold),
        var(--gold-light)
    );

}

.item{

    display:flex;
    gap:25px;

    margin-bottom:60px;

}

.dot{

    width:60px;
    height:60px;

    min-width:60px;

    border-radius:50%;

    background:var(--gold);

    color:white;

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

    font-weight:700;

    box-shadow:
    0 10px 25px rgba(0,0,0,.08);

}

.final{

    background:var(--dark);

    border:2px solid var(--gold);

}

.content{

    background:white;

    padding:30px;

    border-radius:20px;

    flex:1;

    box-shadow:
    0 10px 25px rgba(0,0,0,.05);

}

.content h3{

    margin-bottom:10px;

}

/* =========================
   CTA
========================= */

.cta{

    text-align:center;
    background:white;
    color:black;

}

.cta h2{

    color:black;

}

.cta p{

    font-size:1.1rem;
    opacity:.9;

}

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

footer{

    border-top:3px solid #c8aa22;
    background:#0b1220;
    color:white;
    padding:35px 0;

}

.footer{

    display:flex;

    justify-content:space-between;
    align-items:center;

}

.footer a{

    color:white;

    text-decoration:none;

    margin-left:20px;

}

.footer a:hover{

    color:var(--gold);

}

/* =========================
   ANIMATION
========================= */

.reveal{

    opacity:0;

    transform:
    translateY(40px);

    transition:
    opacity .8s ease,
    transform .8s ease;

}

.reveal.active{

    opacity:1;

    transform:
    translateY(0);

}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:900px){

    .about-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    nav{

        display:none;

    }

    .hero h1{

        font-size:2.5rem;

    }

    .footer{

        flex-direction:column;
        gap:15px;

        text-align:center;

    }

}


/* =========================
   IMPRESSUM
========================= */


.legal-page{
    padding:120px 0;
}

.legal-page h1{
    margin-bottom:30px;
    color:#0F172A;
}

.legal-page h2{
    margin-top:40px;
    margin-bottom:10px;
    color:#c8aa22;
}

.legal-page p{
    margin-bottom:15px;
    color:#374151;
    line-height:1.7;
}






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

.hamburger{

    display:none;

    width:40px;
    height:40px;

    background:none;
    border:none;

    cursor:pointer;

    flex-direction:column;
    justify-content:center;
    gap:5px;

}

.hamburger span{

    width:28px;
    height:3px;

    background:var(--dark);

    border-radius:20px;

    transition:.3s;

}

/* Overlay */

.menu-overlay{

    position:fixed;
    inset:0;

    background:rgba(0,0,0,.45);

    opacity:0;
    visibility:hidden;

    transition:.3s;

    z-index:1500;

}

.menu-overlay.active{

    opacity:1;
    visibility:visible;

}

/* Menü */

.mobile-menu{

    position:fixed;

    top:0;
    left:-320px;

    width:280px;
    height:100vh;

    background:white;

    z-index:2000;

    display:flex;
    flex-direction:column;

    padding:100px 30px;

    transition:.35s ease;

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

}

.mobile-menu.active{

    left:0;

}

.mobile-menu a{

    padding:18px 0;

    text-decoration:none;

    color:var(--dark);

    font-size:1.1rem;
    font-weight:600;

    border-bottom:1px solid #eee;

}

/* Hamburger Animation */

.hamburger.active span:nth-child(1){

    transform:
    rotate(45deg)
    translate(6px,6px);

}

.hamburger.active span:nth-child(2){

    opacity:0;

}

.hamburger.active span:nth-child(3){

    transform:
    rotate(-45deg)
    translate(5px,-5px);

}

/* Mobile */

@media(max-width:768px){

    nav{
        display:none;
    }

    .hamburger{
        display:flex;
    }

}


/* =========================
   HEADER RIGHT
========================= */

.header-right{

    display:flex;
    align-items:center;

    gap:20px;

}

.social-icons{

    display:flex;
    align-items:center;

    gap:15px;

}

.social-icons a{

    color:var(--dark);

    font-size:1.2rem;

    transition:.3s;

}

.social-icons a:hover{

    color:var(--gold);

}

/* Logo */

.logo a{

    text-decoration:none;

    color:var(--dark);

    font-weight:700;

}

/* Mobile */

@media(max-width:768px){

    .social-icons{

        display:none;

    }

}






















/* FLOATING COOKIE BUTTON */
#cc-fab {
  position: fixed;
  bottom: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  background: rgba(20,20,20,0.9);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  z-index: 99999;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  font-size: 20px;
}

/* BACKDROP */
#cc-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: none;
  z-index: 9998;
}

/* PREMIUM CARD */
#cc-modal {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, 20px);
  width: 92%;
  max-width: 420px;
  background: rgba(20,20,20,0.85);
  backdrop-filter: blur(14px);
  color: white;
  border-radius: 16px;
  padding: 14px;
  z-index: 9999;

  opacity: 0;
  pointer-events: none;
  transition: all 0.35s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* OPEN STATE */
#cc-modal.show {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

/* TOP */
.cc-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 10px;
}

.cc-top strong {
  font-size: 15px;
}

.cc-top p {
  font-size: 12px;
  opacity: 0.7;
  margin: 4px 0 0;
}

.cc-close {
  background: transparent;
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
  opacity: 0.6;
}

/* BOX */
.cc-box {
  margin: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cc-box label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.06);
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 13px;
}

/* ACTIONS */
.cc-actions {
  display: flex;
  gap: 8px;
}

.btn {
  flex: 1;
  padding: 8px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-size: 12px;
}

.primary {
  background: #4CAF50;
  color: white;
}

.secondary {
  background: #2196F3;
  color: white;
}

.ghost {
  background: rgba(255,255,255,0.1);
  color: white;
}