/*==================================================
    JARAMILLO IT
    style.css
    Version 1.0
==================================================*/


/*==================================================
    GOOGLE FONTS
==================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


/*==================================================
    CSS VARIABLEN
==================================================*/

:root{

    /* Farben */

    --primary:#0077ff;
    --primary-dark:#0058c7;

    --secondary:#0f172a;

    --text:#1f2937;

    --light:#f8fafc;

    --white:#ffffff;

    --glass:rgba(255,255,255,.18);

    --border:rgba(255,255,255,.28);

    --shadow:0 10px 30px rgba(0,0,0,.15);

    --radius:50px;

    --transition:.35s;

}


/*==================================================
    RESET
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}


/*==================================================
    HTML
==================================================*/

html{

    scroll-behavior:smooth;

}


/*==================================================
    BODY
==================================================*/

body{

    font-family:'Poppins',sans-serif;

    background:var(--light);

    color:var(--text);
    margin: 0;
    padding: 0;

    overflow-x:hidden;

    line-height:1.6;

}


/* ==========================
   Datenschutzerklärung
========================== */

.datenschutz-main {
    min-height: 100vh;
    padding: 160px 20px 80px;
    display: flex;
    justify-content: center;
}

.datenschutz-box {
    width: 100%;
    max-width: 900px;
    background: #fff;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0,0,0,.15);
}



.privacy-page{
    min-height:100vh;
    display:flex;
    justify-content:center;
    padding:160px 20px 80px;
    background:#f8fbff;
}

.privacy-card{
    width:100%;
    max-width:900px;
    background:#ffffff;
    border-radius:24px;
    padding:60px;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.privacy-card h1{
    text-align:center;
    font-size:2.5rem;
    margin-bottom:40px;
    color:#0b1d45;
}

.privacy-card h2{
    margin-top:35px;
    margin-bottom:15px;
    color:#0077ff;
    font-size:1.35rem;
}

.privacy-card p,
.privacy-card li{
    color:#555;
    line-height:1.8;
    font-size:1rem;
}

.privacy-card ul{
    padding-left:22px;
}

.privacy-card a{
    color:#0077ff;
    text-decoration:none;
}

.privacy-card a:hover{
    text-decoration:underline;
}

/*==================================================
    BILDER
==================================================*/

img{

    max-width:100%;

    display:block;

}


/*==================================================
    LINKS
==================================================*/

a{

    text-decoration:none;

    color:inherit;

}

/*==================================================
    PREMIUM COOKIE BANNER
==================================================*/

.cookie-banner{

    position: fixed;

    left: 50%;
    bottom: 30px;

    transform: translateX(-50%) translateY(30px);

    width: min(92%, 980px);

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 35px;

    padding: 24px 30px;

    background: rgba(255,255,255,.18);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border: 1px solid rgba(255,255,255,.35);

    border-radius: 22px;

    box-shadow:
        0 15px 40px rgba(0,0,0,.18),
        inset 0 1px rgba(255,255,255,.25);

    z-index: 999999;

    opacity: 0;
    visibility: hidden;

    transition: .45s ease;
}

.cookie-banner.show{

    opacity: 1;
    visibility: visible;

    transform: translateX(-50%) translateY(0);

}

.cookie-text{

    flex: 1;

}

.cookie-text h3{

    color: #0b1d45;

    font-size: 1.35rem;

    margin-bottom: 10px;

}

.cookie-text p{

    color: #34495e;

    line-height: 1.7;

    font-size: .96rem;

}

.cookie-text a{

    color: #0d6efd;

    text-decoration: none;

    font-weight: 600;

}

.cookie-text a:hover{

    text-decoration: underline;

}

.cookie-buttons{

    display: flex;

    gap: 15px;

}

.cookie-btn{

    padding: 14px 28px;

    border-radius: 12px;

    font-size: .95rem;

    font-weight: 600;

    cursor: pointer;

    transition: .3s;

}

/* Nur notwendige */

.cookie-btn.necessary{

    background: rgba(255,255,255,.55);

    color: #0b1d45;

    border: 1px solid rgba(13,110,253,.25);

}

.cookie-btn.necessary:hover{

    background: rgba(255,255,255,.9);

}

/* Alle akzeptieren */

.cookie-btn.accept{

    background: linear-gradient(135deg,#0d6efd,#39a4ff);

    color: #fff;

    border: none;

    box-shadow: 0 8px 25px rgba(13,110,253,.35);

}

.cookie-btn.accept:hover{

    transform: translateY(-2px);

    box-shadow: 0 12px 30px rgba(13,110,253,.45);

}


/*==================================================
    LISTEN
==================================================*/

ul{

    list-style:none;

}


/*==================================================
    CONTAINER
==================================================*/

.container{

    width:min(92%,1300px);

    margin:auto;

}


/*==================================================
    BUTTON
==================================================*/

.btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:15px 35px;

    border-radius:50px;

    text-decoration:none;

    font-size:16px;
    font-weight:600;

    color:#fff;

    background:#0077ff;

    border:2px solid #0077ff;

    transition:all .35s ease;
}

.btn:hover{

    background:#005fd1;

    border-color:#005fd1;

    transform:translateY(-4px);

    box-shadow:0 12px 30px rgba(0,119,255,.35);

}





/*==================================================
    HEADER
==================================================*/

header{

    position:fixed;

    top:20px;

    left:0;

    width:100%;

    z-index:9999;

}


/*==================================================
    NAVIGATION
==================================================*/

.navbar{

    width:min(92%,1300px);

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 35px;

    background:var(--glass);

    backdrop-filter:blur(15px);

    -webkit-backdrop-filter:blur(15px);

    border:1px solid var(--border);

    border-radius:var(--radius);

    box-shadow:var(--shadow);

}


/*==================================================
    LOGO
==================================================*/

.logo{

    font-size:30px;

    font-weight:700;

    color:var(--secondary);

    white-space: nowrap;

}

.logo span{

    color:var(--primary);

}

/*==================================================
    NAVIGATION LINKS
==================================================*/

.nav-links{

    display:flex;

    gap:35px;

}

.nav-links a{

    font-weight:500;

    transition:var(--transition);

    position:relative;

}

.nav-links a:hover{

    color:var(--primary);

}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:var(--transition);

}

.nav-links a:hover::after{

    width:100%;

}

/* ==========================================
   LANGUAGE SWITCHER
========================================== */

.language-switcher {
    position: relative;
    margin-left: 20px;
    z-index: 1000;
}

.language-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 10px 18px;

    background: rgba(0, 123, 255, 0.18);
    backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);

   

   border: 1px solid rgba(255,255,255,0.25);
    border-radius: 12px;

    color: #070707;
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;

    transition: all 0.3s ease;
}

.language-btn:hover {

    background: rgba(0, 123, 255, 0.30);

    border-color: rgba(255,255,255,0.45);

    transform: translateY(-2px);

}

.language-menu{

    position:absolute;
    top:58px;
    right:0;

    width:190px;






     background: rgba(15, 45, 90, 0.82);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border: 1px solid rgba(255,255,255,0.15);

    border-radius: 14px;

    box-shadow: 0 10px 30px rgba(0,0,0,.35);

    overflow:hidden;

    opacity:0;
    visibility:hidden;
    transform:translateY(12px);

    transition:.35s;

    list-style:none;
    padding:8px;
}

.language-menu.show{

    opacity:1;
    visibility:visible;
    transform:translateY(0);

}

.language-menu li{

    padding:14px 16px;
    color:white;
    transition: all .25s ease;

    cursor:pointer;

    border-radius:12px;

    transition:.25s;

    font-size:.95rem;

}

.language-menu li:hover{

     background: rgba(255,255,255,.12);
    border-radius: 8px;

}





/*==================================================
    BURGER MENU
==================================================*/

.burger{

    display:none;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    width:52px;
    height:52px;

    border:none;

    background:#ffffff;

    border-radius:50%;

    cursor:pointer;

    box-shadow:0 8px 20px rgba(0,0,0,.15);

    z-index:10001;

    position:relative;
}

.burger span{

    display:flex;

    width:24px;
    height:3px;

    background:#0077ff;

    margin:5px auto;

    border-radius:5px;

    transition:.35s;
}


/*==================================================
    CIRCLE MENU
==================================================*/

.circle-menu{

    position:fixed;

    inset:0;

    background:#0b1d45;

    clip-path:circle(0 at calc(100% - 45px) 45px);

    transition:clip-path .6s ease-in-out;

    z-index:10000;

    display:flex;

    justify-content:center;

    align-items:center;
    visibility: hidden;
    pointer-events: none;
}

.circle-menu.active{

    clip-path:circle(150% at calc(100% - 45px) 45px);
visibility: visible;
pointer-events: auto;

}

.circle-menu ul{

    list-style:none;

    text-align:center;
}

.circle-menu li{

    margin:30px 0;
}

.circle-menu a{

    color:#ffffff;

    font-size:2rem;

    font-weight:600;

    text-decoration:none;

    transition:.3s;
}

.circle-menu a:hover{

    color:#2da7ff;
}


/*==================================================
    BURGER ANIMATION
==================================================*/

.burger.active span:nth-child(1){

    transform:translateY(8px) rotate(45deg);
}

.burger.active span:nth-child(2){

    opacity:0;
}

.burger.active span:nth-child(3){

    transform:translateY(-8px) rotate(-45deg);
}

/* ==========================================
   HERO
========================================== */

.hero{
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-image{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content{
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    max-width: 600px;
    z-index: 2;
}

.hero-subtitle{
    display: inline-block;
    margin-bottom: 25px;
    font-size: 1rem;
    color: #0077ff;
    font-weight: 600;
}

.hero h1{
    font-size: 3.5rem;
    color: #003366;
    margin-bottom: 15px;
}

.hero p{
    font-size: 1.2rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.hero-buttons{
    display:flex;
    gap:5px;
    flex-wrap:wrap;
    margin-top:15px;
}
.btn-outline{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-top: 10px;

    padding:15px 35px;

    border-radius:50px;
box-shadow:0 4px 12px rgba(0,0,0,.12);


    color:#0c0c0c;

    background:rgba(255,255,255,.12);

    border:2px solid rgba(255,255,255,.45);

    backdrop-filter:blur(15px);
    -webkit-backdrop-filter:blur(15px);

    transition:all .35s ease;
}

.btn-outline:hover{

    background:#ffffff;

    color:#0077ff;

    border-color:#ffffff;

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(255,255,255,.25);

}
/*==================================================
    PAGE HERO
==================================================*/

.page-hero{

    padding:160px 20px 80px;
    text-align:center;
    position:relative;
}

.page-hero::before{

    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:180px;

    background:rgba(0,140,255,0.12);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    border-bottom:1px solid rgba(255,255,255,.2);
}

.page-hero h1{

    font-size:3rem;

    color:var(--secondary);

    margin-bottom:20px;
    margin-top: 20px;

}

.page-hero p{

    max-width:700px;

    margin:auto;

    color:#666;

    font-size:1.1rem;

    line-height:1.8;

}


/*==================================================
    SERVICES
==================================================*/

.services{


    padding:80px 0 120px;
    margin-top: 0;
    background:linear-gradient(
        180deg,
        #e6f1ff 0%,
        #ffffff 100%
    );

}


/*==================================================
    SERVICES GRID
==================================================*/

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}


/*==================================================
    SERVICE CARD
==================================================*/

.service-card{

    background:#ebeef1;

    color:#0c0c0c;

    padding:40px 30px;
    margin-top: -10px;

    border-radius:25px;

    box-shadow:0 15px 35px rgba(13,110,253,.25);

    transition:.35s;

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 45px rgba(13,110,253,.35);

}

.service-card h2{

    font-size:1.5rem;

    margin-bottom:20px;

}

.service-card p{

    line-height:1.8;

    opacity:.95;

}




/*==================================================
    IMPRESSUM / DATENSCHUTZ
==================================================*/

.legal-page{

    min-height:100vh;

    padding:180px 20px 80px;

    background:linear-gradient(
        180deg,
        #f8fbff 0%,
        #ffffff 100%
    );

    display:flex;

    justify-content:center;

}

.legal-card{

    width:100%;

    max-width:900px;

    background:#ffffff;

    border-radius:28px;

    padding:60px;

    box-shadow:0 20px 45px rgba(0,0,0,.10);

    animation:fadeUp .6s ease;

}

.legal-card h1{

    font-size:2.6rem;

    color:#0b1d45;

    margin-bottom:40px;

    text-align:center;

}

.legal-card h2{

    color:#0077ff;

    margin-top:35px;

    margin-bottom:15px;

    font-size:1.35rem;

}

.legal-card p{

    color:#555;

    line-height:1.9;

    margin-bottom:20px;

}

.legal-card a{

    color:#0077ff;

    text-decoration:none;

    transition:.3s;

}

.legal-card a:hover{

    color:#0058c7;

    text-decoration:underline;

}




/*==================================================
    ABOUT
==================================================*/

/* ========================================
   ÜBER MICH - HERO
======================================== */

.about-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.about-hero-image {
    width: 100%;
    height: 650px;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    color: #fff;

    background: rgba(0, 0, 0, 0.35);
    padding: 2rem;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-overlay p {
    font-size: 1.3rem;
    max-width: 700px;
    line-height: 1.7;
}

.hero-fade {
    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;
    height: 180px;

    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0),
        rgba(255,255,255,.75),
        #ffffff
    );
}


/* ========================================
   ÜBER MICH
======================================== */

.about {
    margin-top: -90px;
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
}

.about-card {

    background: #fff;

    border-radius: 20px;

    padding: 100px 60px 60px;

    box-shadow: 0 15px 40px rgba(0,0,0,.10);
}

.about-card h2 {

    font-size: 2rem;

    margin-bottom: 25px;

    color: #0d47a1;
}

.about-card p {

    margin-bottom: 20px;

    line-height: 1.8;

    font-size: 1.05rem;

    color: #555;
}


/* ========================================
   PROFILBILD
======================================== */

.profile-image {

    display: flex;

    justify-content: center;

    margin-top: -120px;

    margin-bottom: 30px;
}

.profile-image img {

    width: 200px;

    height: 200px;

    object-fit: cover;

    border-radius: 50%;

    border: 6px solid #fff;

    box-shadow: 0 15px 35px rgba(0,0,0,.20);

    transition: .3s ease;
}

.profile-image img:hover {

    transform: scale(1.05);
}


/* ========================================
   INFO-KARTEN
======================================== */

.about-features {

    padding-bottom: 80px;
}

.features-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));

    gap: 30px;
}

.feature-card {

    background: #ffffff;

    border-radius: 18px;

    padding: 35px;

    text-align: center;

    transition: .3s;

    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

.feature-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 20px 45px rgba(0,0,0,.15);
}

.feature-card h3 {

    color: #0d47a1;

    margin-bottom: 15px;
}

.feature-card p {

    color: #666;

    line-height: 1.7;
}
/*=========================================
REFERENZEN
=========================================*/

.page-header{

    width:100%;
    padding:180px 10% 80px;
    text-align:center;

}

.page-header h1{

    font-size:3rem;
    color:#0b1d45;
    margin-bottom:20px;

}

.page-header p{

    max-width:700px;
    margin:auto;
    color:#666;
    font-size:1.1rem;
    line-height:1.8;

}

/*=========================================
GRID
=========================================*/

.references{

    width:100%;
    padding:20px 10% 100px;

}

.reference-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(330px,1fr));
    gap:35px;

}

/*=========================================
CARD
=========================================*/

.reference-card{

    background:#ffffff;
    border-radius:22px;
    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.4s;

}

.reference-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(0,0,0,.15);

}

/*=========================================
BILD
=========================================*/

.reference-card img{

    width:100%;
    height:220px;
    object-fit:cover;

    transition:.4s;

}

.reference-card:hover img{

    transform:scale(1.05);

}

/*=========================================
INHALT
=========================================*/

.reference-content{

    padding:30px;

}

.reference-content h3{

    font-size:1.6rem;
    color:#0b1d45;
    margin-bottom:15px;

}

.reference-content p{

    color:#666;
    line-height:1.8;
    margin-bottom:20px;

}

.reference-content span{

    display:inline-block;

    background:#eef5ff;

    color:#0b6cff;

    padding:8px 18px;

    border-radius:30px;

    font-size:.9rem;

    margin-bottom:25px;

}

/*=========================================
BUTTON
=========================================*/

.reference-content .btn{

    display:inline-block;

    padding:14px 28px;

    background:#0b6cff;

    color:#fff;

    border-radius:35px;

    text-decoration:none;

    transition:.3s;

}

.reference-content .btn:hover{

    background:#0054d8;

}

/*=========================================
FOOTER
=========================================*/

footer{

    background:#081a3b;

    color:#fff;

    text-align:center;

    padding:12px 20px;

}


.footer-links{
    display:flex;
    justify-content:center;
    gap:20px;
}

.footer-links a{
    color:white;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#66c7ff;
}

footer a,
footer p{
    font-size: 0.9rem;
    line-height:1.4;
    margin:0 12px
}

/*==================================================
    DANKE SEITE
==================================================*/

.success-page{

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:140px 20px 80px;

    background:linear-gradient(
        180deg,
        #f8fbff 0%,
        #ffffff 100%
    );
}

.success-card{

    width:100%;
    max-width:760px;

    background:#ffffff;

    padding:60px;

    border-radius:28px;

    box-shadow:0 20px 45px rgba(0,0,0,.10);

    animation:fadeUp .6s ease;
}

.success-card h1{

    text-align:center;

    color:#0b1d45;

    font-size:2.4rem;

    margin-bottom:20px;
}

.success-card p{

    text-align:center;

    color:#666;

    line-height:1.8;

    margin-bottom:40px;
}

/*==================================================
    FORMULAR
==================================================*/

form{

    display:flex;

    flex-direction:column;

    gap:22px;
}

form input,
form textarea{

    width:100%;

    padding:18px 22px;

    font-family:'Poppins',sans-serif;

    font-size:1rem;

    border:2px solid #dfe8f5;

    border-radius:18px;

    outline:none;

    transition:.3s;

    background:#fff;
}

form textarea{

    resize:vertical;

    min-height:180px;
}

form input:focus,
form textarea:focus{

    border-color:#0077ff;

    box-shadow:0 0 0 5px rgba(0,119,255,.12);
}

form button{

    align-self:flex-start;

    padding:16px 36px;

    border:none;

    border-radius:40px;

    background:#0077ff;

    color:#fff;

    font-size:1rem;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

    box-shadow:0 12px 25px rgba(0,119,255,.25);
}

form button:hover{

    background:#0058c7;

    transform:translateY(-3px);
}

.contact-page {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #f9f9f9;
}

.contact-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  max-width: 500px;
  width: 100%;
}


/*==================================================
    ANIMATION
==================================================*/

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(35px);
    }

    to{

        opacity:1;

        transform:translateY(0);
    }
}










/*==================================================
    ANIMATIONEN
==================================================*/

/* Werden später ergänzt */
