/* =======================================================
   VA Jacqueline
   Website Version 2.0
   ======================================================= */


/* ==========================
   Farben
========================== */

:root{

    --background:#FAF6F0;
    --white:#FFFFFF;

    --text:#3E3E3E;
    --text-light:#6D6D6D;

    --accent:#D8C9C1;
    --accent-dark:#C9B7AD;

    --line:#E7DDD6;

    --shadow:0 15px 40px rgba(0,0,0,.06);

}


/* ==========================
   Grundeinstellungen
========================== */

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}


html{

    scroll-behavior:smooth;

}


body{

background:

radial-gradient(
circle at top right,
rgba(216,201,193,.25),
transparent 35%
),

radial-gradient(
circle at bottom left,
rgba(255,255,255,.6),
transparent 45%
),

linear-gradient(
180deg,
#FFFDFB,
#FAF6F0,
#F7F1EA
);

}

/* ==========================
   Bilder
========================== */

img{

    max-width:100%;
    display:block;

}



/* ==========================
   Links
========================== */

a{

    text-decoration:none;

}



/* ==========================
   Bereiche
========================== */

.section{

    padding:120px 10%;

}


.light{

    background:#FCFAF7;

}



/* ==========================
   Überschriften
========================== */

.section-title{

    text-align:center;
    margin-bottom:70px;

}


.section-title span{

    color:var(--accent-dark);

    letter-spacing:4px;

    font-size:.85rem;

    font-weight:600;

}


.section-title h2{

    font-size:2.6rem;

    font-weight:600;

    margin-top:12px;

    position:relative;

}



/* goldene Linie */

.section-title h2::after{

    content:"";

    width:90px;

    height:3px;

    background:var(--accent);

    display:block;

    margin:18px auto 0;

    border-radius:20px;

}



/* ==========================
   Header
========================== */

header{

    position:sticky;

    top:0;

    z-index:999;

    background:rgba(248,245,240,.92);

    backdrop-filter:blur(12px);

    border-bottom:1px solid var(--line);

}



/* ==========================
   Navigation
========================== */

.navbar{

    max-width:1300px;

    margin:auto;

    padding:18px 40px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}


.logo img{

    height:130px;

    transition:.35s;

}


.logo img:hover{

    transform:scale(1.04);

}



/* Menü */

.nav-links{

    display:flex;

    list-style:none;

    gap:40px;

}


.nav-links a{

    color:var(--text);

    font-weight:500;

    position:relative;

    transition:.3s;

}



/* Unterstrich */

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--accent);

    transition:.35s;

}


.nav-links a:hover{

    color:#000;

}


.nav-links a:hover::after{

    width:100%;

}

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

.hero{

    min-height:90vh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:80px 10%;

    background:linear-gradient(
        180deg,
        #F8F5F0 0%,
        #FCFAF7 100%
    );

}


.hero-text{

    max-width:850px;

}


.subtitle{

    display:inline-block;

    color:var(--accent-dark);

    font-size:.95rem;

    letter-spacing:3px;

    font-weight:600;

    margin-bottom:25px;

}


.hero h1{

    font-size:4rem;

    line-height:1.2;

    font-weight:700;

    margin-bottom:30px;

}


.hero p{

    font-size:1.15rem;

    color:var(--text-light);

    max-width:700px;

    margin:0 auto 40px;

}



/* =======================================================
   BUTTONS
======================================================= */

.button{

    display:inline-block;

    padding:16px 38px;

    background:var(--accent);

    color:var(--text);

    border-radius:40px;

    font-weight:600;

    transition:.35s;

    border:2px solid transparent;

    box-shadow:var(--shadow);

}


.button:hover{

    background:white;

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

    transform:translateY(-4px);

}



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

.cards{

    display:grid;

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

    gap:35px;

}


.card{

    background:var(--white);

    padding:45px 35px;

    border-radius:20px;

    border:1px solid var(--line);

    box-shadow:var(--shadow);

    transition:.35s;

}


.card:hover{

    transform:translateY(-10px);

    border-color:var(--accent);

}


.card h3{

    font-size:1.4rem;

    margin-bottom:18px;

}


.card p{

    color:var(--text-light);

}



/* =======================================================
   ICONEN
======================================================= */

.icon{

    width:70px;

    height:70px;

    border-radius:50%;

    background:#F8F5F0;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:2rem;

    margin-bottom:25px;

    border:1px solid var(--line);

}



/* =======================================================
   HINWEIS
======================================================= */

.hinweis{

    text-align:center;

    margin-top:45px;

    color:var(--text-light);

    font-size:.95rem;

}



/* =======================================================
   SANFTE EINBLENDUNG
======================================================= */

.card{

    animation:fadeUp .8s ease both;

}


@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(25px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.about-photo{

    width:100%;

    max-width:420px;

    display:block;

    margin:auto;

    border-radius:25px;

    border:3px solid var(--accent);

    box-shadow:0 20px 45px rgba(0,0,0,.10);

    transition:all .35s ease;

}

.about-photo:hover{

    transform:translateY(-6px);

    box-shadow:0 30px 55px rgba(0,0,0,.15);

}

/* =======================================================
   ÜBER MICH
======================================================= */

.about{

    display:grid;

    grid-template-columns:1fr 1.3fr;

    gap:70px;

    align-items:center;

}


.photo-placeholder{

    width:100%;

    aspect-ratio:1/1;

    background:#F5EFE9;

    border:2px dashed var(--accent);

    border-radius:25px;

    display:flex;

    justify-content:center;

    align-items:center;

    color:var(--text-light);

    font-size:1.2rem;

}


.about-text{

    font-size:1.08rem;

}


.about-text p{

    margin-bottom:22px;

    color:var(--text-light);

}


.about-text strong{

    color:var(--text);

}



/* =======================================================
   KONTAKT
======================================================= */

.contact-box{

    max-width:800px;

    margin:auto;

    background:var(--white);

    padding:60px;

    border-radius:25px;

    border:1px solid var(--line);

    box-shadow:var(--shadow);

    text-align:center;

}


.contact-box p{

    font-size:1.1rem;

    margin-bottom:35px;

    color:var(--text-light);

}



/* =======================================================
   CALL TO ACTION
======================================================= */

.cta{

    padding:120px 10%;

    text-align:center;

    background:linear-gradient(
        180deg,
        #FAF6F0,
        #F5EEE8
    );

}


.cta-content{

    max-width:850px;

    margin:auto;

}


.cta h2{

    font-size:2.8rem;

    margin-bottom:25px;

}


.cta p{

    max-width:700px;

    margin:0 auto 40px;

    color:var(--text-light);

    font-size:1.1rem;

}



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

footer{

    background:#F3ECE5;

    border-top:1px solid var(--line);

    padding:70px 10% 30px;

}


.footer-content{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:60px;

}


.footer-column h3{

    margin-bottom:18px;

    color:var(--text);

}


.footer-column p{

    color:var(--text-light);

    line-height:2;

}


.footer-bottom{

    margin-top:60px;

    padding-top:25px;

    border-top:1px solid var(--line);

    text-align:center;

    font-size:.85rem;

    color:var(--text-light);

}


.footer-bottom a{

    color:var(--text-light);

    transition:.3s;

}


.footer-bottom a:hover{

    color:var(--accent-dark);

}



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

.whatsapp{

    position:fixed;

    bottom:30px;

    right:30px;

    width:65px;

    height:65px;

    border-radius:50%;

    background:#25D366;

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    box-shadow:0 15px 30px rgba(0,0,0,.18);

    transition:.35s;

    z-index:999;

}


.whatsapp:hover{

    transform:scale(1.1);

}



/* =======================================================
   NACH OBEN BUTTON
======================================================= */

.top-button{

    position:fixed;

    bottom:110px;

    right:38px;

    width:48px;

    height:48px;

    border-radius:50%;

    background:var(--accent);

    color:var(--text);

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:20px;

    box-shadow:var(--shadow);

    transition:.35s;

}


.top-button:hover{

    transform:translateY(-5px);

}

/* =======================================================
   HOVER-EFFEKTE
======================================================= */

.card,
.button,
.logo img,
.footer-column,
.contact-box{

    transition:all .35s ease;

}

.card:hover{

    box-shadow:0 20px 45px rgba(0,0,0,.10);

}

.button:hover{

    box-shadow:0 18px 35px rgba(201,183,173,.35);

}

.contact-box:hover{

    transform:translateY(-5px);

}



/* =======================================================
   SANFTE EINBLENDUNG
======================================================= */

.section{

    animation:fadeSection .8s ease;

}

@keyframes fadeSection{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}



/* =======================================================
   TEXTAUSWAHL
======================================================= */

::selection{

    background:var(--accent);

    color:#333;

}



/* =======================================================
   SCROLLBAR
======================================================= */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#F6F2EE;

}

::-webkit-scrollbar-thumb{

    background:var(--accent);

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--accent-dark);

}



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

@media (max-width:1000px){

.about{

    grid-template-columns:1fr;

    text-align:center;

}

.photo-placeholder{

    max-width:350px;

    margin:auto;

}

.footer-content{

    grid-template-columns:1fr;

    text-align:center;

}

}



@media (max-width:850px){

.navbar{

    flex-direction:column;

    padding:25px;

}

.nav-links{

    margin-top:25px;

    gap:20px;

    flex-wrap:wrap;

    justify-content:center;

}

.hero{

    min-height:70vh;

}

.hero h1{

    font-size:2.8rem;

}

.hero p{

    font-size:1rem;

}

.section{

    padding:90px 8%;

}

.contact-box{

    padding:40px 25px;

}

}



@media (max-width:600px){

.hero h1{

    font-size:2.2rem;

}

.section-title h2{

    font-size:2rem;

}

.cards{

    grid-template-columns:1fr;

}

.button{

    width:100%;

    text-align:center;

}

.whatsapp{

    width:58px;

    height:58px;

    font-size:28px;

    right:20px;

    bottom:20px;

}

.top-button{

    right:25px;

    bottom:90px;

}

.footer-bottom{

    line-height:1.8;

}

/* ==========================
   Goldene Partikel
========================== */

.sparkle{

    position:fixed;

    color:#D8C9C1;

    font-size:12px;

    opacity:.18;

    pointer-events:none;

    animation:twinkle 9s ease-in-out infinite;

    z-index:0;

}

.sparkle1{

    top:10%;

    left:8%;

    animation-delay:0s;

}

.sparkle2{

    top:22%;

    right:12%;

    animation-delay:2s;

}

.sparkle3{

    top:48%;

    left:15%;

    animation-delay:4s;

}

.sparkle4{

    top:65%;

    right:8%;

    animation-delay:6s;

}

.sparkle5{

    bottom:18%;

    left:30%;

    animation-delay:8s;

}

.sparkle6{

    bottom:8%;

    right:25%;

    animation-delay:5s;

}

@keyframes twinkle{

    0%,100%{

        opacity:.10;
        transform:scale(1);

    }

    50%{

        opacity:.35;
        transform:scale(1.25);

    }

}


/* =======================================================
   ENDE
======================================================= */