/* ===========================
   LUUNJA KÖÖGIVILI OÜ
   Premium Style v2
=========================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#0b120d;
    color:#fff;
    overflow-x:hidden;
}

/* ---------------- HEADER ---------------- */

.site-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 7%;
    background:rgba(10,20,10,.45);
    backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(255,255,255,.08);
    z-index:999;
    transition:.35s;
}

.brand{
    display:flex;
    align-items:center;
    gap:14px;
    color:white;
    text-decoration:none;
    font-weight:700;
    font-size:22px;
}

.brand-mark{
    width:46px;
    height:46px;
    border-radius:50%;
    background:#4CAF50;
    display:flex;
    justify-content:center;
    align-items:center;
    font-weight:700;
}

.nav{
    display:flex;
    gap:30px;
}

.nav a{
    color:white;
    text-decoration:none;
    transition:.3s;
    position:relative;
}

.nav a:hover{
    color:#6CFF7A;
}

.nav a::after{
    content:"";
    position:absolute;
    bottom:-6px;
    left:0;
    width:0%;
    height:2px;
    background:#6CFF7A;
    transition:.3s;
}

.nav a:hover::after{
    width:100%;
}

.menu-btn{
    display:none;
}

/* ---------------- HERO ---------------- */

.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    overflow:hidden;
}

.hero-bg{
    position:absolute;
    inset:0;
    background:url("images/hero.png") center/cover no-repeat;
    transform:scale(1.05);
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        rgba(0,0,0,.35),
        rgba(0,0,0,.60)
    );
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:900px;
    padding:20px;
}

.eyebrow{
    color:#83ff91;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:20px;
}

.hero h1{
    font-size:72px;
    line-height:1.05;
    margin-bottom:25px;
}

.hero-text{
    font-size:22px;
    opacity:.9;
    line-height:1.8;
}

.hero-actions{
    margin-top:40px;
    display:flex;
    justify-content:center;
    gap:18px;
}

.btn{
    padding:16px 36px;
    border-radius:40px;
    text-decoration:none;
    transition:.35s;
    font-weight:600;
}

.primary{
    background:#58B947;
    color:white;
}

.primary:hover{
    transform:translateY(-5px);
}

.secondary{
    border:2px solid white;
    color:white;
}

.secondary:hover{
    background:white;
    color:black;
}
/* ---------------- SECTIONS ---------------- */

.section-padding{
    padding:110px 8%;
}

.section-label{
    color:#83ff91;
    letter-spacing:4px;
    text-transform:uppercase;
    font-size:14px;
    font-weight:700;
    margin-bottom:25px;
}

.split{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.split-text h2,
.center-title,
.contact-panel h2{
    font-size:54px;
    line-height:1.1;
    margin-bottom:25px;
}

.split-text p,
.contact-panel p{
    font-size:18px;
    line-height:1.8;
    color:rgba(255,255,255,.75);
    margin-bottom:18px;
}

.image-card{
    border-radius:32px;
    overflow:hidden;
    box-shadow:0 40px 90px rgba(0,0,0,.45);
}

.image-card img{
    width:100%;
    height:520px;
    object-fit:cover;
}

/* ---------------- VALUES ---------------- */

.values{
    background:linear-gradient(180deg,#0b120d,#112516);
}

.center-title{
    text-align:center;
    max-width:850px;
    margin:0 auto 60px;
}

.value-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.value-card{
    background:rgba(255,255,255,.07);
    border:1px solid rgba(255,255,255,.10);
    backdrop-filter:blur(18px);
    border-radius:28px;
    padding:34px;
    transition:.35s;
}

.value-card:hover{
    transform:translateY(-10px);
    background:rgba(255,255,255,.10);
}

.value-card span{
    color:#83ff91;
    font-weight:800;
}

.value-card h3{
    font-size:26px;
    margin:18px 0 12px;
}

.value-card p{
    color:rgba(255,255,255,.72);
    line-height:1.7;
}

/* ---------------- PRODUCTS ---------------- */

.product-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.product-card{
    background:rgba(255,255,255,.07);
    border:1px solid rgba(255,255,255,.10);
    border-radius:30px;
    overflow:hidden;
    transition:.35s;
}

.product-card:hover{
    transform:translateY(-12px);
    box-shadow:0 30px 80px rgba(0,0,0,.35);
}

.product-card img{
    width:100%;
    height:330px;
    object-fit:cover;
}

.product-card div{
    padding:28px;
}

.product-card h3{
    font-size:28px;
    margin-bottom:12px;
}

.product-card p{
    color:rgba(255,255,255,.72);
    line-height:1.7;
}

/* ---------------- SHOWCASE ---------------- */

.showcase{
    position:relative;
    height:80vh;
    overflow:hidden;
}

.showcase img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.showcase::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.42);
}

.showcase-text{
    position:absolute;
    inset:0;
    z-index:2;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.showcase-text p{
    font-size:76px;
    font-weight:800;
}

/* ---------------- GALLERY ---------------- */

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.gallery-grid img{
    width:100%;
    height:350px;
    object-fit:cover;
    border-radius:24px;
    transition:.35s;
}

.gallery-grid img:hover{
    transform:scale(.96);
    filter:brightness(1.15);
}

/* ---------------- CONTACT ---------------- */

.contact-panel{
    background:rgba(255,255,255,.07);
    border:1px solid rgba(255,255,255,.10);
    backdrop-filter:blur(18px);
    border-radius:34px;
    padding:55px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
}

.contact-info{
    background:rgba(0,0,0,.25);
    border-radius:24px;
    padding:30px;
}

/* ---------------- FOOTER / BUTTONS ---------------- */

.back-top{
    position:fixed;
    right:24px;
    bottom:24px;
    width:52px;
    height:52px;
    border:none;
    border-radius:50%;
    background:#83ff91;
    color:#061108;
    font-size:24px;
    font-weight:800;
    display:none;
    z-index:500;
}

footer{
    padding:45px 7%;
    text-align:center;
    background:#050b07;
    color:rgba(255,255,255,.6);
}
/* ---------------- LOADER ---------------- */

.page-loader{
    position:fixed;
    inset:0;
    background:#050b07;
    z-index:9999;
    display:flex;
    justify-content:center;
    align-items:center;
    transition:.7s;
}

.page-loader span{
    color:#83ff91;
    font-size:28px;
    font-weight:800;
    letter-spacing:2px;
}

body.loaded .page-loader{
    opacity:0;
    pointer-events:none;
}

/* ---------------- REVEAL ANIMATIONS ---------------- */

.reveal{
    opacity:0;
    transform:translateY(50px);
    transition:.9s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

/* ---------------- SCROLLED HEADER ---------------- */

.site-header.scrolled{
    padding:12px 7%;
    background:rgba(5,14,7,.88);
}

/* ---------------- MOBILE ---------------- */

@media(max-width:1000px){

    .site-header{
        padding:16px 20px;
    }

    .brand{
        font-size:16px;
    }

    .brand-mark{
        width:38px;
        height:38px;
        font-size:14px;
    }

    .menu-btn{
        display:flex;
        flex-direction:column;
        gap:7px;
        background:none;
        border:none;
        cursor:pointer;
    }

    .menu-btn span{
        width:30px;
        height:2px;
        background:white;
        display:block;
    }

    .nav{
        position:absolute;
        top:75px;
        left:20px;
        right:20px;
        background:rgba(5,14,7,.96);
        backdrop-filter:blur(20px);
        border:1px solid rgba(255,255,255,.1);
        border-radius:22px;
        padding:25px;
        display:none;
        flex-direction:column;
        gap:20px;
    }

    .nav.open{
        display:flex;
    }

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

    .hero-text{
        font-size:17px;
    }

    .hero-actions{
        flex-direction:column;
    }

    .btn{
        width:100%;
        text-align:center;
    }

    .section-padding{
        padding:80px 22px;
    }

    .split{
        grid-template-columns:1fr;
        gap:40px;
    }

    .split-text h2,
    .center-title,
    .contact-panel h2{
        font-size:38px;
    }

    .image-card img{
        height:340px;
    }

    .value-grid,
    .product-grid,
    .gallery-grid,
    .contact-panel{
        grid-template-columns:1fr;
    }

    .product-card img,
    .gallery-grid img{
        height:280px;
    }

    .showcase{
        height:55vh;
    }

    .showcase-text p{
        font-size:42px;
        padding:0 20px;
    }

    .contact-panel{
        padding:32px;
    }
}

@media(max-width:500px){

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

    .hero{
        padding:120px 20px 70px;
    }

    .eyebrow{
        font-size:12px;
        letter-spacing:2px;
    }

    .section-label{
        font-size:12px;
        letter-spacing:2px;
    }
}
.brand-logo{
    width:62px;
    height:62px;
    object-fit:contain;
    background:rgba(255,255,255,.08);
    padding:8px;
    border-radius:14px;
}

.hero-logo{
    width:170px;
    margin:0 auto 25px;
    filter:brightness(0) invert(1);
    opacity:.95;
}