/* ==========================================================
   Website 2.0 - Mobile Fußpflege Emina
   Design System v2
========================================================== */

/* Google Fonts
---------------------------------------------------------- */
/*
Cormorant Garamond
Poppins
*/

/* ==========================================================
   CSS VARIABLES
========================================================== */

:root{

    /* Colors */

    --green:#18392B;
    --green-light:#255240;

    --cream:#F8F5EF;

    --rose:#B67C63;
    --rose-hover:#a96f56;

    --white:#ffffff;

    --text:#353535;
    --text-light:#666666;

    --border:#E8E3DA;

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

    --radius-sm:10px;
    --radius:18px;
    --radius-lg:28px;

    --container:1280px;

    --transition:.35s ease;

}


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

*,
*::before,
*::after{

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

}

html{

    scroll-behavior:smooth;

}

body{

    background:var(--cream);

    color:var(--text);

    font-family:'Poppins',sans-serif;

    font-size:16px;

    line-height:1.8;

    overflow-x:hidden;

}

img{

    display:block;

    width:100%;

}

a{

    color:inherit;

    text-decoration:none;

}

ul{

    list-style:none;

}

button{

    font-family:inherit;

    cursor:pointer;

    border:none;

    background:none;

}

input,
textarea,
select{

    font-family:inherit;

}


/* ==========================================================
   TYPOGRAPHY
========================================================== */

h1,
h2,
h3,
h4,
h5,
h6{

    font-family:'Cormorant Garamond',serif;

    color:var(--green);

    line-height:1.15;

    font-weight:600;

}

h1{

    font-size:clamp(52px,7vw,88px);

    margin-bottom:25px;

}

h2{

    font-size:clamp(40px,5vw,64px);

    margin-bottom:20px;

}

h3{

    font-size:34px;

    margin-bottom:15px;

}

p{

    color:var(--text-light);

    margin-bottom:20px;

}


/* ==========================================================
   LAYOUT
========================================================== */

.container{

    width:min(92%, var(--container));

    margin:auto;

}

section{

    padding:70px 0;

}

.section-small{

    padding:55px 0;

}

.section-title{

    text-align:center;

    margin-bottom:40px;

}

.section-title p{

    max-width:700px;

    margin:15px auto 0;

}


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

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 34px;
    border-radius:999px;
    text-decoration:none;
    transition:var(--transition);
    font-weight:500;
}

.btn-primary{

    background:var(--green);

    color:white;

}

.btn-primary:hover{

    background:var(--rose);

}

.btn-outline{

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

    color:var(--green);

}

.btn-outline:hover{

    background:var(--green);

    color:white;

}




/* ==========================================================
   IMAGE
========================================================== */

.image-rounded{

    border-radius:var(--radius-lg);

    overflow:hidden;

}


/* ==========================================================
   UTILITIES
========================================================== */

.text-center{

    text-align:center;

}

.mb-1{

    margin-bottom:15px;

}

.mb-2{

    margin-bottom:30px;

}

.mb-3{

    margin-bottom:60px;

}

.mt-3{

    margin-top:60px;

}

.hidden{

    display:none;

}


/* ==========================================================
   2 DIO
========================================================== */

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

.site-header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:9999;

    transition:all .35s ease;

    background:transparent;

}

.site-header.scrolled{

    background:transparent;
    backdrop-filter:none;
    -webkit-backdrop-filter:none;
    box-shadow:none;

}

.site-header .container{

    min-height:100px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:16px 0;

}

@media (min-width:1100px){

.site-header.scrolled .container{

    justify-content:center;

    gap:18px;

}

.site-header.scrolled .main-nav{

    background:rgba(255,255,255,.94);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    padding:12px 28px;

    border-radius:999px;

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

}

.site-header.scrolled .header-actions{

    background:rgba(255,255,255,.94);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    padding:6px;

    border-radius:999px;

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

}

}

/* ==========================================================
   LOGO
========================================================== */

.logo{

    display:flex;
    align-items:center;
    justify-content:center;
    margin-top:8px;
    

    border-radius:18px;

    

}

.logo img{

    width:220px;
	height:auto;

    display:block;
    transition:.35s;

}

@media(min-width:1101px){

.site-header.scrolled .logo{

    opacity:0;
    transform:translateX(-50px);
    pointer-events:none;

}

}

/* ==========================================================
   NAVIGATION
========================================================== */

.main-nav{

    display:flex;

    align-items:center;

}

.main-nav ul{

    display:flex;

    align-items:center;

    gap:45px;

}

.main-nav li{

    position:relative;

}

.main-nav a{

    position:relative;

    color:white;

    font-size:15px;

    font-weight:500;

    transition:.3s;

}

.site-header.scrolled .main-nav a{

    color:var(--green);

}

/* underline */

.main-nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-10px;

    width:0;

    height:2px;

    background:var(--rose);

    transition:.35s;

}

.main-nav a:hover::after{

    width:100%;

}

.main-nav a:hover{

    color:var(--rose);

}

/* active */

.main-nav li.active a::after{

    width:100%;

}

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

.header-actions{

    display:flex;

    align-items:center;

    gap:20px;

}

.btn-book{

    background:var(--green);

    color:white;

    padding:16px 28px;

    border-radius:999px;

    transition:.35s;

    font-weight:500;

}

.btn-book:hover{

    background:var(--rose);

}



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

.header-space{

    height:95px;

}

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



/* ==========================================================
   3 DIO
========================================================== */

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

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:#000;

}

.hero-image{

    position:absolute;

    inset:0;

    z-index:1;

}

.hero-image img{

    width:100%;
    height:100%;

    object-fit:cover;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        90deg,
        rgba(24,57,43,.72) 0%,
        rgba(24,57,43,.48) 45%,
        rgba(24,57,43,.22) 100%
    );

    z-index:2;

}

.hero-content{
	padding-top:80px;

    position:relative;

    z-index:5;

    width:min(92%,1280px);

    margin:auto;

    color:#fff;

}

.hero-subtitle{

    display:inline-block;

    padding:10px 18px;

    border:1px solid rgba(255,255,255,.3);

    border-radius:999px;

    backdrop-filter:blur(12px);

    margin-bottom:30px;

    letter-spacing:2px;

    text-transform:uppercase;

    font-size:13px;

}

.hero h1{

    color:#fff;

    max-width:700px;

    margin-bottom:25px;

}

.hero p{

    color:rgba(255,255,255,.88);

    font-size:19px;

    max-width:620px;

    margin-bottom:45px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

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

.hero-card{

    position:absolute;

    right:8%;

    bottom:80px;

    z-index:10;

    width:320px;

    padding:35px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(22px);

    border:1px solid rgba(255,255,255,.25);

    border-radius:24px;

    color:white;

}

.hero-card h3{

    color:white;

    margin-bottom:10px;

}

.hero-card p{

    color:rgba(255,255,255,.85);

    margin-bottom:15px;

}

.hero-card strong{

    font-size:22px;

}

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

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    min-height:56px;

    padding:0 34px;

    border-radius:999px;

    transition:.35s;

    font-weight:500;

}

.btn-primary{

    background:var(--green);

    color:#fff;

}

.btn-primary:hover{

    background:var(--rose);

    transform:translateY(-2px);

}

.btn-secondary{

    color:#fff;

    border:1px solid rgba(255,255,255,.4);

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

}

.btn-secondary:hover{

    background:white;

    color:var(--green);

}

.btn-light{

    background:white;

    color:var(--green);

}

.btn-light:hover{

    background:var(--cream);

}

.btn-outline{

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

    color:var(--green);

}

.btn-outline:hover{

    background:var(--green);

    color:white;

}

/* ==========================================================
   SECTION INTRO
========================================================== */

.section-intro{

    max-width:760px;

    margin:0 auto 80px;

    text-align:center;

}

.section-intro span{

    color:var(--rose);

    letter-spacing:2px;

    text-transform:uppercase;

    font-size:13px;

    display:block;

    margin-bottom:12px;

}

.section-intro h2{

    margin-bottom:25px;

}

.section-intro p{

    font-size:18px;

}

/* ==========================================================
   FEATURE GRID
========================================================== */

.features{

    display:grid;

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

    gap:35px;

}

.feature{

    background:white;

    border-radius:22px;

    padding:45px;

    transition:.35s;

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

}

.feature:hover{

    transform:translateY(-8px);

}

.feature-icon{

    width:70px;

    height:70px;

    border-radius:50%;

    background:var(--cream);

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:30px;

}

.feature h3{

    margin-bottom:15px;

}

.feature p{

    margin:0;

}

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

.card{

    background:white;

    border-radius:24px;

    overflow:hidden;

    transition:.35s;

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

}

.card:hover{

    transform:translateY(-10px);

}

.card-image{

    height:280px;

    overflow:hidden;

}

.card-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}

.card:hover img{

    transform:scale(1.08);

}

.card-content{

    padding:40px;

}

.card-content h3{

    margin-bottom:15px;

}

.card-content p{

    margin-bottom:20px;

}

/* ==========================================================
   SERVICE GRID
========================================================== */

.services-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    align-items:stretch;

}

.services-grid .card{

    height:100%;

}

.services-grid .card-content{

    display:flex;
    flex-direction:column;
    height:100%;

}

.services-grid .btn{

    margin-top:auto;

}

.price{

    display:inline-block;

    margin:15px 0 8px;

    font-size:34px;

    font-weight:700;

    color:var(--green);

    font-family:'Cormorant Garamond',serif;

}

.duration{

    display:flex;
    align-items:center;
    gap:8px;

    font-size:14px;
    color:#777;

    margin-bottom:22px;

}

.about-list{

    margin-bottom:30px;

}

.about-list li{

    display:flex;
    align-items:center;
    gap:10px;

    padding:8px 0;

}

.about-list li i{

    color:var(--green);

}

@media(max-width:1100px){

.services-grid{

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

}

}

@media(max-width:768px){

.services-grid{

    grid-template-columns:1fr;

}

}

/* ==========================================================
   IMAGE BLOCK
========================================================== */

.image-block{

    overflow:hidden;

    border-radius:28px;

}

.image-block img{

    width:100%;

    transition:.6s;

}

.image-block:hover img{

    transform:scale(1.06);

}

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

.cta-box{

    background:linear-gradient(135deg,#173d2f,#214a39);

    color:#fff;

    border-radius:32px;

    max-width:900px;

    margin:0 auto;

    padding:50px 60px;

    text-align:center;

    box-shadow:0 25px 60px rgba(0,0,0,.12);

    position:relative;

    overflow:hidden;

}

.cta-box::before{

    content:"";

    position:absolute;

    top:-120px;

    right:-120px;

    width:260px;

    height:260px;

    border-radius:50%;

    background:rgba(255,255,255,.04);

}

.cta-box h2{

    color:#fff;

    margin-bottom:18px;

    font-size:50px;

    line-height:1.15;

}

.cta-box p{

    color:rgba(255,255,255,.88);

    max-width:560px;

    margin:0 auto 35px;

    font-size:18px;

    line-height:1.8;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:16px;

    flex-wrap:wrap;

}

.cta-buttons .btn{

    min-width:210px;

}

/* ==========================================================
   4 DIO
========================================================== */

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

.about{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.about-image{

    position:relative;

}

.about-image img{

    border-radius:30px;

    width:100%;

    display:block;
    transition:0.3s ease;
}

.about-badge{

    position:absolute;

    bottom:35px;

    right:-30px;

    background:white;

    padding:28px;

    border-radius:22px;

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

    min-width:220px;

}

.about-badge strong{

    display:block;

    font-size:42px;

    color:var(--green);

    font-family:'Cormorant Garamond',serif;

}

.about-content h2{

    margin-bottom:25px;

}

.about-content p{

    margin-bottom:22px;

}

.about-list{

    margin-top:35px;

    display:grid;

    gap:18px;

}

.about-list li{

    display:flex;

    align-items:center;

    gap:15px;

}

.about-image img:hover{
    transform:scale(1.02);
    opacity:0.95;
    cursor:pointer;
}
.about-image a{
    display:block;
}

/* ==========================================================
   GALLERY
========================================================== */

.gallery{

    display:grid;

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

    gap:20px;

}

.gallery-item{

    overflow:hidden;

    border-radius:24px;

}

.gallery-item img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.gallery-item:hover img{

    transform:scale(1.08);

}

.gallery-item.large{

    grid-column:span 6;

    height:420px;

}

.gallery-item.medium{

    grid-column:span 3;

    height:420px;

}

.gallery-item.small{

    grid-column:span 4;

    height:260px;

}

/* ==========================================================
   GOOGLE REVIEWS
========================================================== */

.reviews{

    display:grid;

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

    gap:30px;

}

.review{

    background:white;

    border-radius:24px;

    padding:40px;

    box-shadow:0 18px 40px rgba(0,0,0,.05);

}

.review-stars{

    color:#D7A441;

    font-size:20px;

    margin-bottom:20px;

}

.review p{

    margin-bottom:25px;

}

.review-author{

    display:flex;

    align-items:center;

    gap:15px;

}

.review-avatar{

    width:58px;

    height:58px;

    border-radius:50%;

    background:var(--cream);

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:600;

    color:var(--green);

}

.review-author strong{

    display:block;

    color:var(--green);

}

.review-author span{

    color:var(--text-light);

    font-size:14px;

}

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

.contact{

    display:grid;
    grid-template-columns:420px 1fr;
    gap:60px;

}

.contact-info{

    background:var(--green);
    color:white;
    border-radius:30px;
    padding:50px;

}

.contact-info h3{

    color:white;
    margin-bottom:25px;

}

.contact-info ul{

    display:grid;
    gap:25px;

}

.contact-info li{

    display:flex;
    gap:18px;

}

.contact-info p{

    color:rgba(255,255,255,.82);
    margin:0;

}

.contact-form{

    background:white;
    padding:50px;
    border-radius:30px;
    box-shadow:0 20px 45px rgba(0,0,0,.05);

    max-width:900px;
    margin:0 auto;

}

.contact-form h2{

    margin-bottom:12px;

}

.cta-sub{

    margin-bottom:36px;
    color:#666;

}

/* --------------------------
   Termin Auswahl
-------------------------- */

/* ==========================================
   TERMIN AUSWAHL
========================================== */

.termin-choice{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin:35px 0;

}

.termin-card{

    position:relative;

    display:block;

    padding:28px;

    border:2px solid #e8e2da;
    border-radius:20px;

    background:#fff;

    cursor:pointer;

    transition:.25s;

}

.termin-card:hover{

    transform:translateY(-3px);

    border-color:var(--rose);

    box-shadow:0 12px 28px rgba(0,0,0,.06);

}

/* sakrij radio */

.termin-card input[type="radio"]{

    position:absolute;

    opacity:0;

    pointer-events:none;

}

.termin-card:has(input:checked){

    border-color:var(--green);

    background:#f7faf8;

    box-shadow:0 12px 28px rgba(24,57,43,.10);

}

.termin-title{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:12px;

    font-size:22px;

    font-weight:600;

    color:var(--green);

}

.termin-title i{

    color:var(--rose);

    font-size:22px;

}

.termin-info p{

    margin:0;

    color:#666;

    line-height:1.6;

}

.contact-form .btn{

    min-width:220px;
    height:54px;

}

.contact-form h2{

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

}

.contact-form .cta-sub{

    text-align:center;
    max-width:600px;
    margin:0 auto 36px;

}

.contact-form{

    text-align:center;

}

.termin-choice,
.form-row,
.form-group,
button,
.form-note{

    text-align:left;

}



/* ==========================================================
   FORMS
========================================================== */

.form-group{

    margin-bottom:24px;

}

.form-row{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:24px;

}

label{

    display:block;

    margin-bottom:10px;

    font-weight:500;

    color:var(--green);

}

input,
textarea,
select{

    width:100%;

    padding:16px 20px;

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

    border-radius:16px;

    background:white;

    transition:.3s;

    font-size:15px;

}

textarea{

    min-height:180px;

    resize:vertical;

}

input:focus,
textarea:focus,
select:focus{

    outline:none;

    border-color:var(--rose);

    box-shadow:0 0 0 4px rgba(182,124,99,.15);

}

/* ==========================================================
   MAP
========================================================== */

.map{

    border-radius:30px;

    overflow:hidden;

    height:520px;

}

.map iframe{

    width:100%;

    height:100%;

    border:0;

}

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

.site-footer{

    background:var(--green);
    color:#fff;
    margin-top:90px;

}

.footer-grid{

    display:grid;
    grid-template-columns:1.5fr 1fr;
    gap:60px;
    align-items:start;
    padding:55px 0;

}

.footer-logo{

    width:145px;
    margin-bottom:18px;

}

.site-footer p{

    color:rgba(255,255,255,.82);

}

.footer-title{

    color:#fff;
    font-size:28px;
    margin-bottom:25px;

}

.footer-contact{

    display:flex;
    flex-direction:column;
    gap:14px;

}

.footer-contact div{

    display:flex;
    align-items:center;
    gap:10px;

}

.footer-contact i{

    width:20px;
    color:var(--rose);

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.12);
    padding:18px 0;

}

.footer-bottom .container{

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

}

.footer-links-bottom{

    display:flex;
    align-items:center;
    gap:14px;

}

.footer-links-bottom a{

    color:rgba(255,255,255,.82);
    transition:.3s;

}

.footer-links-bottom a:hover{

    color:#fff;

}

.footer-social{

    display:flex;
    gap:14px;

}

.footer-social a{

    width:38px;
    height:38px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;

}

.footer-social a:hover{

    background:var(--rose);

}

/* ==========================================================
   5 dio
========================================================== */

/* ==========================================================
   ANIMATIONS
========================================================== */

.fade-up{

    opacity:0;

    transform:translateY(40px);

    transition:all .8s ease;

}

.fade-up.show{

    opacity:1;

    transform:translateY(0);

}

.fade{

    opacity:0;

    transition:opacity .8s ease;

}

.fade.show{

    opacity:1;

}

.zoom{

    overflow:hidden;

}

.zoom img{

    transition:.6s ease;

}

.zoom:hover img{

    transform:scale(1.08);

}

/* ==========================================================
   SPACING
========================================================== */

.pt-0{padding-top:0;}
.pb-0{padding-bottom:0;}

.pt-60{padding-top:60px;}
.pb-60{padding-bottom:60px;}

.pt-80{padding-top:80px;}
.pb-80{padding-bottom:80px;}

.pt-120{padding-top:120px;}
.pb-120{padding-bottom:120px;}

.mt-30{margin-top:30px;}
.mt-60{margin-top:60px;}
.mt-120{margin-top:120px;}

.mb-20{margin-bottom:20px;}
.mb-40{margin-bottom:40px;}
.mb-60{margin-bottom:60px;}
.mb-80{margin-bottom:80px;}

.text-center{

    text-align:center;

}

.text-right{

    text-align:right;

}

.w-100{

    width:100%;

}

/* ==========================================================
   BACK TO TOP
========================================================== */

.back-top{

    position:fixed;

    right:35px;

    bottom:35px;

    width:52px;

    height:52px;

    border-radius:50%;

    background:var(--green);

    color:white;

    display:flex;

    align-items:center;

    justify-content:center;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:999;

}

.back-top.show{

    opacity:1;

    visibility:visible;

}

.back-top:hover{

    background:var(--rose);

}

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

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:var(--cream);

}

::-webkit-scrollbar-thumb{

    background:var(--green);

    border-radius:10px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--rose);

}

/* ==========================================================
   SELECTION
========================================================== */

::selection{

    background:var(--green);

    color:white;

}

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

@media(max-width:1400px){

.hero-card{

display:none;

}

.container{

width:min(94%,1280px);

}

}

@media(max-width:1200px){

.about{

grid-template-columns:1fr;

}

.contact{

grid-template-columns:1fr;

}

.footer-grid{

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

}

.features{

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

}

.services-grid{

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

}

.reviews{

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

}

.gallery-item.large{

grid-column:span 12;

}

.gallery-item.medium{

grid-column:span 6;

}

.gallery-item.small{

grid-column:span 6;

}

}

@media(max-width:992px){

.hero{

min-height:90vh;

}

.hero h1{

font-size:58px;

}

.hero p{

font-size:18px;

}

.hero-buttons{

flex-direction:column;

align-items:flex-start;

}

.section{

padding:90px 0;

}

.form-row{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

section{

padding:80px 0;

}

h1{

font-size:46px;

}

h2{

font-size:38px;

}

.features{

grid-template-columns:1fr;

}

.services-grid{

grid-template-columns:1fr;

}

.reviews{

grid-template-columns:1fr;

}

.footer-grid{

grid-template-columns:1fr;

}

.footer-bottom .container{

flex-direction:column;

gap:20px;

text-align:center;

}

.gallery{

display:block;

}

.gallery-item{

margin-bottom:20px;

height:280px !important;

}

.contact-form{

padding:35px;

}

.contact-info{

padding:35px;

}

.cta-box{

padding:40px 25px;

}

.cta-box h2{

    font-size:36px;

}

.about-badge{

position:static;

margin-top:25px;

}



}

@media(max-width:576px){

.hero{

min-height:85vh;

}

.hero h1{

font-size:38px;

}

.hero p{

font-size:16px;

}

.btn{

width:100%;

}

.btn-primary,
.btn-secondary,
.btn-outline{

width:100%;

}

.card-content{

padding:30px;

}

.feature{

padding:35px;

}

.about{

gap:45px;

}

.footer-top{

padding:70px 0 40px;

}

}

/* ==========================================================
   END
========================================================== */


.whatsapp-float{

    position:fixed;

    left:25px;

    bottom:25px;

    top:auto;

    z-index:9999;

}

body.menu-open{

    overflow:hidden;

}



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

@media (max-width:768px){

.site-header{

    position:absolute;

    top:0;
    left:0;

    width:100%;

    background:transparent;

    box-shadow:none;

    z-index:9999;

}

.site-header .container{

    height:auto;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    padding:12px 18px 0;

}

.logo{

    margin-bottom:10px;

}

.logo img{

    width:105px;

}

.main-nav{

    width:100%;

    display:block;

    margin-bottom:10px;

}

.main-nav ul{

    display:grid;

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

    gap:8px;

    width:100%;

    max-width:340px;

    margin:auto;

}

.main-nav a{

    display:flex;

    justify-content:center;

    align-items:center;

    height:46px;

    border-radius:14px;

    background:rgba(255,255,255,.20);

    backdrop-filter:blur(12px);

    -webkit-backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.35);

    color:#fff;

    font-size:15px;

    font-weight:600;

    box-shadow:none;

    text-decoration:none;

}

.main-nav li.active a{

    background:var(--green);

    color:#fff;

    border:none;

}

.main-nav a::after{

    display:none;

}

.header-actions,

.btn-book{

    display:none !important;

}

.hero{

    padding-top:245px;

}

.cta-box{

    padding:40px 28px;

    border-radius:24px;

}

.cta-box h2{

    font-size:36px;

}

.cta-box p{

    font-size:16px;

}

.cta-buttons{

    flex-direction:column;

}

.cta-buttons .btn{

    width:100%;

}

}

/* ==========================================
   EINSATZGEBIET
========================================== */

.area-grid{

    display:grid;
    grid-template-columns:320px minmax(500px,700px);
    justify-content:center;
    gap:30px;
    margin-top:50px;

}

.area-card{

    background:#fff;
    border-radius:24px;
    padding:35px;
    box-shadow:0 15px 40px rgba(0,0,0,.06);

}

.area-free{

    background:var(--green);
    color:#fff;

    display:flex;
    flex-direction:column;
    justify-content:center;

}

.area-free h3{

    color:#fff;
    margin-bottom:25px;

}

.area-free li{

    display:flex;
    align-items:center;
    gap:10px;

    padding:12px 0;

    border:none;

    color:#fff;

}

.area-free li i{

    color:#d7c28a;

}

.area-icon{

    width:58px;
    height:58px;

    border-radius:18px;

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

    font-size:22px;

    margin-bottom:22px;

    background:rgba(255,255,255,.12);

}

.area-card:not(.area-free) .area-icon{

    background:#edf6f1;
    color:var(--green);

}


/* ---------- DESNA KARTICA ---------- */

.area-head{

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

    margin-bottom:30px;

}

.area-head h3{

    margin:0;

}

.area-fee{

    display:flex;
    align-items:center;
    gap:8px;

    padding:10px 18px;

    border-radius:999px;

    background:var(--green);

    color:#fff;

    font-weight:600;

    font-size:15px;

}

.area-fee i{

    font-size:14px;

}

.city-tags{

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

    gap:14px;

}

.city-tags span{

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

    padding:12px 18px;

    background:#f4f4f4;

    border-radius:14px;

    font-weight:500;

    transition:.3s;

}

.city-tags span:hover{

    background:var(--green);
    color:#fff;
    transform:translateY(-2px);

}


/* ---------- MOBILNI ---------- */

@media(max-width:900px){

.area-grid{

    grid-template-columns:1fr;

}

.area-head{

    flex-direction:column;
    align-items:flex-start;
    gap:18px;

}

.city-tags{

    grid-template-columns:1fr;

}

}


.service-top{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:20px;

    margin-bottom:25px;

}

.price-badge{

    width:90px;
    height:90px;

    border-radius:50%;
	transform:translate(10px,-10px);

    background:linear-gradient(135deg,#D9C7A2,#C9B184);

    border:3px solid rgba(255,255,255,.9);

    color:var(--green);

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    flex-shrink:0;

    box-shadow:
        0 12px 30px rgba(0,0,0,.15),
        inset 0 2px 6px rgba(255,255,255,.45);

}

.price-badge small{

    font-size:11px;

    text-transform:uppercase;

    letter-spacing:1px;

    font-weight:600;

    opacity:.8;

    line-height:1;

}
.price-badge:hover{

    transform:translate(10px,-12px) scale(1.05);

    transition:.3s;

}

.price-badge strong{

    font-size:32px;

    font-family:'Cormorant Garamond',serif;

    font-weight:700;

    line-height:1;

}

.service-card .about-list{

    margin:30px 0;

}

.service-card .about-list li{

    display:flex;

    align-items:center;

    gap:12px;

    padding:10px 0;

    border-bottom:1px solid rgba(0,0,0,.06);

}

.service-card .about-list li:last-child{

    border-bottom:none;

}

.service-card .about-list i{

    color:var(--green);

    width:18px;

}



.extras-card{

    max-width:560px;

    margin:45px auto 0;

    background:#fff;

    border-radius:24px;

    padding:35px;

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

}

.extras-card h3{

    text-align:center;

    margin-bottom:30px;

}

.extra-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:14px 0;

    border-bottom:1px solid #ececec;

}

.extra-row:last-child{

    border-bottom:none;

}

.extra-row strong{

    color:var(--green);

    font-size:18px;

}

.extra-row span{

    display:flex;
    align-items:center;
    gap:10px;

}

.extra-row i{

    width:18px;

    color:var(--green);

}

.hp-field{
    display:none;
}



.contact-info{

    display:grid;

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

    gap:22px;

    max-width:1200px;

    margin:60px auto 80px;

}

.contact-item{

    display:flex;

    align-items:center;

    gap:18px;

    padding:24px 28px;

    background:#fff;

    border:1px solid rgba(24,57,43,.08);

    border-radius:18px;

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

    transition:.3s;

}

.contact-item:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 35px rgba(0,0,0,.07);

}

.contact-item i{

    width:52px;

    height:52px;

    border-radius:50%;

    background:var(--cream);

    color:var(--green);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:20px;

    flex-shrink:0;

}

.contact-item strong{

    display:block;

    margin-bottom:4px;

    font-family:'Cormorant Garamond',serif;

    font-size:28px;

    color:var(--green);

}

.contact-item span{

    display:block;

    color:#666;

    font-size:15px;

    line-height:1.5;

}

@media (max-width:992px){

    .contact-info{

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

    }

}

@media (max-width:640px){

    .contact-info{

        grid-template-columns:1fr;

    }

}


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

.contact-bar{

    max-width:1200px;

    margin:70px auto;

    background:#fff;

    border-radius:28px;

    display:grid;

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

    align-items:center;

    padding:22px 10px;

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

    border:1px solid rgba(24,57,43,.08);

}

.contact-box{

    display:flex;

    align-items:center;

    gap:18px;

    padding:18px 28px;

}

.contact-box i{

    width:62px;

    height:62px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:var(--cream);

    color:var(--green);

    font-size:22px;

    flex-shrink:0;

}

.contact-box span{

    display:block;

    font-size:14px;

    color:#777;

    margin-bottom:4px;

    text-transform:uppercase;

    letter-spacing:.08em;

}

.contact-box strong{

    display:block;

    font-size:20px;

    font-family:'Cormorant Garamond',serif;

    color:var(--green);

    font-weight:600;

    line-height:1.3;

}
.contact-box:hover i{

    background:var(--green);

    color:#fff;

    transform:rotate(-8deg);

    transition:.3s;

}

.divider{

    width:1px;

    height:70px;

    background:rgba(24,57,43,.12);

}

@media(max-width:992px){

    .contact-bar{

        grid-template-columns:1fr;

        gap:0;

        padding:15px;

    }

    .divider{

        width:100%;

        height:1px;

        margin:8px 0;

    }

}

/* ==========================================
   MOBILE - TERMIN ANFRAGE
========================================== */

@media (max-width:768px){

    .termin-choice{

        display:flex !important;

        flex-direction:column !important;

        gap:18px;

    }

    .termin-card{

        width:100% !important;

        max-width:none !important;

        flex:none !important;

    }

}

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


.home-card{

    background:#fff;

    border-radius:24px;

    overflow:hidden;

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

    transition:.35s;

    display:flex;

    flex-direction:column;

    height:100%;

}

.home-card:hover{

    transform:translateY(-10px);

}

.home-card-image{

    height:280px;

    overflow:hidden;

}

.home-card-image img{

    display:block;

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}

.home-card:hover .home-card-image img{

    transform:scale(1.08);

}

.home-card-content{

    padding:40px;

    display:flex;

    flex-direction:column;

    flex:1;

}

.home-card-content h3{

    margin-bottom:15px;

}

.home-card-content p{

    margin-bottom:25px;

    flex:1;

}

.home-card-content .btn{

    align-self:flex-start;

    margin-top:auto;

}


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

.legal-hero{

    position:relative;

    padding:180px 0 110px;

    background:url("img/legal-hero.jpg") center center/cover no-repeat;

    overflow:hidden;

}

.legal-hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(18,40,30,.72),
        rgba(18,40,30,.62)
    );

}

.legal-hero .container{

    position:relative;

    z-index:2;

    text-align:center;

}

.legal-hero span{

    display:inline-block;

    margin-bottom:15px;

    color:#E8D9C5;

    letter-spacing:3px;

    text-transform:uppercase;

    font-size:13px;

    font-weight:600;

}

.legal-hero h1{

    color:#fff;

    margin-bottom:20px;

}

.legal-hero p{

    color:rgba(255,255,255,.92);

    max-width:700px;

    margin:0 auto;

}

@media(max-width:768px){

    .legal-hero{

        padding:230px 20px 80px;

        background-position:center;

    }

}