
/* =====================================================
   LIMARSAT 2026
   Professional CSS v3.1
===================================================== */

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

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
    scroll-padding-top:120px;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f5f7fa;
    color:#222;
    line-height:1.7;
    overflow-x:hidden;
    -webkit-font-smoothing:antialiased;
    text-rendering:optimizeLegibility;
}

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

section{
    scroll-margin-top:120px;
}

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

.container{
    width:min(92%,1400px);
    margin:auto;
}

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

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    background:rgba(20,20,20,.88);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    box-shadow:0 2px 20px rgba(0,0,0,.25);
    transition:all .3s ease;
    padding:12px 0;
}

header .container{
    max-width:1200px;
    margin:0 auto;
    padding:0 30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

header.scrolled{
    background:rgba(13,71,161,.96);
    box-shadow:0 8px 24px rgba(0,0,0,.20);
}

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

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    height:70px;
    width:auto;
    display:block;
}

.logo img:hover{
    transform:scale(1.05);
}

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

nav ul{
    display:flex;
    align-items:center;
    gap:45px;
    list-style:none;
    margin:0;
    padding:0;
}

nav a{
    display:flex;
    align-items:center;
    gap:8px;
    color:#fff;
    text-decoration:none;
    font-size:17px;
    font-weight:600;
    padding:10px 16px;
    border-radius:10px;
    transition:all .3s ease;
}

nav a:hover{
    background:rgba(255,255,255,.12);
    color:#4da3ff;
    transform:translateY(-2px);
}
nav a i{
    font-size:16px;
    width:20px;
    text-align:center;
}

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

.hero{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:calc(100vh - 70px);
    margin-top:70px;
    padding:40px 20px;
    background:
    linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
    url("../images/hero.jpg") center/cover no-repeat;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:900px;
    text-align:center;
    color:#fff;
}

.hero h1{
    font-size:54px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:25px;
}

.hero p{
    font-size:22px;
    margin-bottom:25px;
    color:#f5f5f5;
}

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

.button{
    display:inline-block;
    width:100%;
    padding:16px 30px;
    border-radius:50px;
    background:#1565ff;
    color:#fff;
    text-decoration:none;
    font-weight:700;
    font-size:16px;
    transition:.3s;
    box-shadow:0 10px 25px rgba(21,101,255,.30);
    border:none;
    cursor:pointer;
    text-align:center;
}

.button:hover{
    background:#0b57d0;
    transform:translateY(-3px);
    box-shadow:0 15px 30px rgba(21,101,255,.35);
}

.call-btn{
    color:#fff !important;
    margin-top:auto;
}

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

.services{
    padding:100px 5%;
    background:#fff;
}

.services h2,
.gallery h2,
.about h2,
.contact h2,
.testimonials h2,
.faq h2{
    text-align:center;
    font-size:42px;
    font-weight:700;
    color:#1565ff;
    margin-bottom:60px;
}

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.card{
    background:#fff;
    border-radius:22px;
    padding:40px 30px;
    text-align:center;
    border:1px solid #ececec;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.35s;
    display:flex;
    flex-direction:column;
}

.card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(21,101,255,.18);
}

.card h1{
    font-size:54px;
    margin-bottom:15px;
}

.card h3{
    color:#1565ff;
    font-size:24px;
    margin-bottom:15px;
}

.card p{
    color:#666;
    line-height:1.8;
    margin-bottom:20px;
    flex-grow:1;
}

.card .button{
    margin-top:auto;
}

.card:nth-child(1){border-top:5px solid #1565ff;}
.card:nth-child(2){border-top:5px solid #43a047;}
.card:nth-child(3){border-top:5px solid #fb8c00;}
.card:nth-child(4){border-top:5px solid #8e24aa;}

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

.gallery{
    padding:100px 5%;
    background:#f7f8fc;
    scroll-margin-top:120px;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.gallery-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    border:1px solid #ececec;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.35s;
}

.gallery-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(21,101,255,.18);
}

.gallery-card a{
    text-decoration:none;
    color:inherit;
}

.gallery-card img{
    width:100%;
    height:230px;
    object-fit:cover;
    transition:.4s;
}

.gallery-card:hover img{
    transform:scale(1.05);
}

.gallery-card h3{
    padding:20px 20px 10px;
    text-align:center;
    color:#1565ff;
    font-size:22px;
}

.gallery-card p{
    padding:0 20px 25px;
    text-align:center;
    color:#666;
    font-size:15px;
}

/* =====================================================
   STATISTICS
===================================================== */

.stats{
    padding:90px 5%;
    background:#1565ff;
    color:#fff;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
    text-align:center;
    scroll-margin-top:120px;
}

.stat h2{
    font-size:52px;
    margin-bottom:10px;
}

.stat p{
    font-size:18px;
}

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

.about{
    padding:100px 5%;
    background:#eef5ff;
    scroll-margin-top:120px;
}

.about-box{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.about-box div{
    background:#fff;
    border-radius:18px;
    padding:35px 25px;
    text-align:center;
    font-weight:600;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.about-box div:hover{
    background:#1565ff;
    color:#fff;
    transform:translateY(-8px);
}

/* =====================================================
   TESTIMONIALS
===================================================== */

.testimonials{
    padding:100px 5%;
    background:#fff;
    scroll-margin-top:120px;
}

/* =====================================================
   FAQ
===================================================== */

.faq{
    padding:100px 5%;
    background:#f7f8fc;
    scroll-margin-top:120px;
}

.faq-item{
    background:#fff;
    padding:30px;
    margin-bottom:20px;
    border-radius:12px;
    box-shadow:0 4px 15px rgba(0,0,0,.08);
    transition:.3s;
}

.faq-item:hover{
    box-shadow:0 8px 25px rgba(0,0,0,.12);
}

.faq-item h3{
    color:#1565ff;
    font-size:20px;
    margin-bottom:15px;
}

.faq-item p{
    color:#666;
    line-height:1.8;
}

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

.contact{
    padding:100px 5%;
    background:#f7f9fc;
    scroll-margin-top:120px;
}

.contact h2{
    text-align:center;
    font-size:42px;
    color:#1565ff;
    margin-bottom:15px;
}

.contact-subtitle{
    text-align:center;
    color:#666;
    font-size:20px;
    margin-bottom:50px;
    max-width:700px;
    margin-left:auto;
    margin-right:auto;
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:30px;
    align-items:stretch;
}

.contact-card,
.contact-form,
.map-card{
    background:#fff;
    border-radius:20px;
    border:1px solid #ececec;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    overflow:hidden;
}

.contact-card{
    padding:30px;
    display:flex;
    flex-direction:column;
}

.contact-card h3{
    color:#1565ff;
    margin-top:18px;
    margin-bottom:8px;
    font-size:22px;
}

.contact-card p{
    color:#555;
    margin-bottom:18px;
}

.contact-card a{
    color:#1565ff;
    text-decoration:none;
}

.contact-card .button{
    margin-top:auto;
    width:100%;
    text-align:center;
    padding:16px 30px;
}

.contact-form{
    padding:30px;
    display:flex;
    flex-direction:column;
}

.contact-form h3{
    color:#1565ff;
    font-size:22px;
    margin-bottom:20px;
}

.contact-form form{
    display:flex;
    flex-direction:column;
    gap:18px;
    flex:1;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:16px 18px;
    border:2px solid #ddd;
    border-radius:12px;
    font-size:16px;
    font-family:'Poppins',sans-serif;
    transition:.3s;
}

.contact-form input:focus,
.contact-form textarea:focus{
    outline:none;
    border-color:#1565ff;
    box-shadow:0 0 0 4px rgba(21,101,255,.12);
}

.contact-form textarea{
    min-height:190px;
    resize:vertical;
}

.contact-form .button{
    width:100%;
    margin-top:auto;
    padding:16px 30px;
}

.map-card iframe{
    width:100%;
    height:100%;
    min-height:580px;
    border:0;
}

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

footer{
    background:#0d47a1;
    color:#fff;
    text-align:center;
    padding:35px 20px;
    margin-top:80px;
    border-top:4px solid #1565ff;
}

footer p{
    font-size:17px;
    opacity:.95;
    margin-bottom:10px;
}

footer a,
footer a:visited{
    color:#ffffff !important;
    text-decoration:none;
    font-weight:600;
    transition:all .3s ease;
}

footer a:hover,
footer a:focus{
    color:#ffd54f !important;
    text-decoration:underline;
}

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

.whatsapp{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    border-radius:50%;
    background:#25D366;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 10px 25px rgba(0,0,0,.30);
    z-index:9999;
    transition:all .3s ease;
}

.whatsapp:hover{
    transform:scale(1.08);
    box-shadow:0 15px 35px rgba(0,0,0,.35);
}

.whatsapp img{
    width:36px;
    height:36px;
}

/* =====================================================
   ANIMATION
===================================================== */

.fade{
    opacity:0;
    transform:translateY(35px);
    transition:opacity .8s ease, transform .8s ease;
}

.fade.show{
    opacity:1;
    transform:translateY(0);
}

/* =====================================================
   SERVICE LIST
===================================================== */

.service-list{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:20px;
    list-style:none;
    padding:0;
    margin:30px 0;
}

.service-list li{
    background:#fff;
    padding:18px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    font-weight:600;
    transition:.3s;
}

.service-list li:hover{
    transform:translateY(-5px);
}
/* ==========================
   Urlaub Popup
========================== */

.urlaub-popup{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.75);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
    padding:20px;
}

.urlaub-box{
    position:relative;
    max-width:900px;
    width:100%;
    animation:popup .3s ease;
}

.urlaub-box img{
    width:100%;
    display:block;
    border-radius:18px;
    box-shadow:0 20px 50px rgba(0,0,0,.4);
}

.popup-close{
    position:absolute;
    top:-15px;
    right:-15px;
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:#1565ff;
    color:#fff;
    font-size:28px;
    cursor:pointer;
    font-weight:bold;
}

.popup-close:hover{
    background:#0d47a1;
}

@keyframes popup{
    from{
        opacity:0;
        transform:scale(.9);
    }
    to{
        opacity:1;
        transform:scale(1);
    }
}
