:root{
    --bg:#000000;
    --panel:#0f0a14;
    --panel-2:#17101f;
    --text:#ffffff;
    --text-soft:#e9dfff;
    --primary:#8a2be2;
    --primary-light:#c77dff;
    --rose:#c9a3b0;
    --border:rgba(199,125,255,0.18);
    --shadow:0 0 25px rgba(138,43,226,0.16);
}

*{
    box-sizing:border-box;
}

body{
    margin:0;
    font-family:'Poppins', Arial, Helvetica, sans-serif;
    color:var(--text);
    background:#000;
}

img{
    max-width:100%;
    display:block;
}

.container{
    width:min(1200px, calc(100% - 40px));
    margin:0 auto;
}

.section{
    padding:90px 0;
}

.section-title{
    text-align:center;
    font-size:42px;
    margin-bottom:40px;
}

/* HEADER */

.header{
    background:#000;
    padding:26px 0;
    position:sticky;
    top:0;
    z-index:1000;
}

.header-inner{
    width:min(1400px, calc(100% - 40px));
    margin:0 auto;

    display:grid;
    grid-template-columns:1fr auto 1fr;

    align-items:center;
}

/* linke Schrift */

.brand-script{
    font-family:'Great Vibes', cursive;
    font-size:62px;
    color:#c7a5a5;
    justify-self:start;
}

/* Logo */

.logo-wrap{
    justify-self:center;
}

.logo-wrap img{
    width:180px;
    height:180px;
    object-fit:cover;

    border-radius:50%;

    border:3px solid #7b5a68;

    box-shadow:
            0 0 18px rgba(255,255,255,0.08),
            0 0 30px rgba(199,125,255,0.15),
            0 0 60px rgba(199,125,255,0.08);
}

/* rechter Bereich */

.nav-area{
    justify-self:end;
    position:relative;
}

/* BURGER */

.menu-toggle{
    display:block;

    width:46px;
    height:46px;

    border:none;
    background:transparent;

    cursor:pointer;
}

.menu-toggle span{
    display:block;

    width:30px;
    height:3px;

    background:#ffffff;

    margin:6px auto;

    border-radius:4px;

    transition:0.3s;
}

/* Animation */

.menu-toggle.active span:nth-child(1){
    transform:translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2){
    opacity:0;
}

.menu-toggle.active span:nth-child(3){
    transform:translateY(-9px) rotate(-45deg);
}

/* DROPDOWN */

.nav-right{
    display:none;

    position:absolute;

    top:70px;
    right:0;

    width:240px;

    background:#120814;

    border-radius:14px;

    padding:20px;

    flex-direction:column;

    gap:15px;

    box-shadow:0 0 25px rgba(138,43,226,0.2);
}

.nav-right.active{
    display:flex;
}

.nav-right a{
    text-decoration:none;

    color:white;

    font-size:18px;
}

.nav-right a:hover{
    color:var(--primary-light);
}

/* HERO */

.hero{
    background:linear-gradient(90deg,#241b22,#3b2d38,#241b22);

    text-align:center;

    padding:120px 20px;
}

.hero h1{
    font-size:72px;

    margin-bottom:20px;
}

.hero p{
    font-size:22px;

    margin-bottom:30px;
}

.button{
    padding:15px 35px;

    border-radius:40px;

    border:none;

    background:var(--rose);

    color:white;

    text-decoration:none;

    font-size:18px;

    cursor:pointer;
}

.button:hover{
    background:linear-gradient(45deg,var(--primary),var(--primary-light));

    box-shadow:0 0 20px rgba(199,125,255,0.4);
}

/* SERVICES */

.service-cards{
    display:grid;

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

    gap:30px;
}

.card{
    background:linear-gradient(180deg,var(--panel),var(--panel-2));

    border-radius:20px;

    overflow:hidden;

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

    transition:0.3s;
}

.card:hover{
    transform:translateY(-6px);
}

.card img{
    height:260px;

    width:100%;

    object-fit:cover;
}

.card h3{
    margin:20px;
}

.card p{
    margin:0 20px 25px;

    color:var(--text-soft);
}

/* BUTTONS */

.services-buttons-row{
    display:flex;

    justify-content:center;

    gap:20px;

    margin-top:40px;
}

.price-btn{
    padding:14px 28px;

    border-radius:40px;

    text-decoration:none;

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

    background:#17101f;
}

.price-btn:hover{
    background:linear-gradient(45deg,var(--primary),var(--primary-light));
}

/* ABOUT */

.about p{
    max-width:800px;

    margin:auto;

    text-align:center;

    color:var(--text-soft);
}

/* CONTACT */

.contact-form{
    max-width:800px;

    margin:auto;

    background:var(--panel);

    border-radius:20px;

    padding:30px;

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

.form-row{
    display:flex;

    flex-direction:column;

    margin-bottom:18px;
}

.form-row input,
.form-row textarea,
.form-row select{
    padding:14px;

    border-radius:10px;

    border:1px solid #333;

    background:#111;

    color:white;
}

/* INFO */

.info-grid{
    display:grid;

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

    gap:20px;
}

.info-box{
    background:var(--panel);

    padding:20px;

    border-radius:16px;

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

/* MAP */

.map-wrapper iframe{
    width:100%;

    height:450px;

    border:0;
}

/* FOOTER */

.footer{
    background:#070707;

    padding:25px 0;
}

.footer-container{
    display:flex;

    justify-content:space-between;

    align-items:center;

    width:min(1200px, calc(100% - 40px));

    margin:auto;
}

/* FLOATING WHATSAPP */

.floating-whatsapp{
    position:fixed;

    right:20px;

    bottom:20px;

    background:#25D366;

    color:white;

    padding:14px 18px;

    border-radius:40px;

    text-decoration:none;

    box-shadow:0 0 20px rgba(37,211,102,0.5);
}

/* MOBILE */

@media (max-width:1000px){

    .logo-wrap img{
        width:170px;
        height:170px;
    }

    .brand-script{
        font-size:40px;
    }

    .hero h1{
        font-size:44px;
    }

    .service-cards{
        grid-template-columns:1fr;
    }

    .info-grid{
        grid-template-columns:1fr 1fr;
    }

}

@media (max-width:600px){

    .logo-wrap img{
        width:120px;
        height:120px;
    }

    .brand-script{
        font-size:28px;
    }

    .hero h1{
        font-size:32px;
    }

    .info-grid{
        grid-template-columns:1fr;
    }

    .footer-container{
        flex-direction:column;
        gap:10px;
    }

}