/* =========================
   ROOT
========================= */

:root{

    --bg:#0f0f0f;

    --card:rgba(255,255,255,0.08);

    --border:rgba(255,255,255,0.15);

    --rosegold:#d8a7a7;

    --rosegold-light:#f0c9c9;

    --text:#ffffff;

    --shadow:
    0 10px 35px rgba(0,0,0,0.35);
}


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

*{

    margin:0;

    padding:0;

    box-sizing:border-box;
}html,
body{
    overflow-x:hidden;
    background:var(--bg);

    color:var(--text);

    font-family:Arial,sans-serif;

    line-height:1.6;
}


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

.container{

    width:90%;

    max-width:1200px;

    margin:auto;
}


/* =========================
   NAVIGATION
========================= */
header{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:1000;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:1rem 5%;
}

.nav-links{
    display:flex;
    gap:2rem;
    list-style:none;
}

.nav-links li{
    list-style:none;
}

.nav-links a{
    text-decoration:none;
    color:white;
}

.burger{
    display:none;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
}

.burger span{
    width:28px;
    height:3px;
    background:#fff;
    border-radius:5px;
}



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

.hero{
    min-height:100vh;
    background-image: url(bilder/beautybar.jpeg);
    background-size: cover;
    background-repeat: no-repeat;

 background-position: center;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:50px 20px;
}


.hero-content{

    max-width:800px;
}


.hero-title{

    font-size:64px;

    color:var(--rosegold);

    margin-bottom:20px;

    letter-spacing:3px;
}


.hero-subtitle{

    font-size:22px;

    color:#ddd;
}


/* =========================
   GLASS CARD
========================= */

.glass-card{

    background:var(--card);

    backdrop-filter:blur(12px);

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

    border-radius:24px;

    box-shadow:var(--shadow);

    padding:30px;
}


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

.services{

    padding:80px 0;
}


.services-grid{

    display:grid;

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

    gap:25px;
}


.service-card{

    background:var(--card);

    backdrop-filter:blur(12px);

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

    border-radius:24px;

    padding:30px;

    transition:.3s;
}


.service-card:hover{

    transform:translateY(-8px);
}


.service-title{

    color:var(--rosegold);

    margin-bottom:15px;

    font-size:24px;
}


/* =========================
   PREISE
========================= */

.pricing{

    padding:80px 0;
}


.price-card{

    text-align:center;
}


.price-title{

    color:var(--rosegold);

    font-size:24px;

    margin-bottom:10px;
}


.price-value{

    font-size:40px;

    font-weight:bold;
}


/* =========================
   GALERIE
========================= */

.gallery{

    padding:80px 0;
}


.gallery-grid{

    display:grid;

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

    gap:20px;
}


.gallery-item{

    overflow:hidden;

    border-radius:20px;
}


.gallery-item img{

    width:100%;

    display:block;

    transition:.4s;
}


.gallery-item:hover img{

    transform:scale(1.08);
}


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

.about{

    padding:80px 0;
}


.about-content{

    max-width:800px;

    margin:auto;

    text-align:center;
}


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

.btn{

    display:inline-block;

    padding:14px 30px;

    border-radius:40px;

    text-decoration:none;

    transition:.3s;
}


.btn-primary{

    background:var(--rosegold);

    color:#111;
}


.btn-primary:hover{

    transform:translateY(-3px);
}


/* =========================
   CONTACT
========================= */

.contact{

    padding:80px 0;
}


.contact-grid{

    display:grid;

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

    gap:25px;
}

.back-arrow{
    position: fixed;
    bottom: 20px;
    right: 20px;

    width: 50px;
    height: 50px;

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

    background: rgba(216,167,167,0.9);
    color: #red;

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

    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);

    z-index: 1000;

    transition: transform 0.3s ease;
}

.back-arrow:hover{
    transform: translateY(-3px);
}

















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

.footer{

    padding:40px 20px;

    text-align:center;

    border-top:1px solid rgba(255,255,255,0.1);
}


.footer p{

    color:#bbb;
}


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

@media (max-width: 768px) {

    /* Navbar */

    .navbar{
      display:flex;
      position:fixed;
        flex-direction:row;
        justify-content:space-between;
        align-items:center;
      z-index: 1000;
    }

  
 
    /* Burger sichtbar */

    .burger{
        display:flex;
        flex-direction:column;
        gap:5px;
        cursor:pointer;
        z-index:1001;
    }

    /* Mobile Menü */

    .nav-links{
        position:fixed;
        top:0;
        right:0;

        width:280px;
        height:100vh;

        display:flex;
        flex-direction:column;
        justify-content:center;
        align-items:center;
        gap:2rem;

        background:rgba(15,15,15,0.98);
        backdrop-filter:blur(10px);

        transform:translateX(100%);
        transition:transform 0.5s ease;

        z-index:1000;
    }

    .nav-links.active{
        transform:translateX(0);
    }

    .nav-links a{
        font-size:1.1rem;
        transition:all 0.3s ease;
    }

    .nav-links a:hover{
        color:var(--rosegold);
        transform:translateX(5px);
    }

    /* Hero */

    .hero{
        min-height:70vh;
        padding:40px 20px;
        background-position:center;
    }

    .hero-title{
        font-size:38px;
        line-height:1.2;
    }

    .hero-subtitle{
        font-size:18px;
        padding:0 10px;
}
}