

/* =========================
   VARIABLES
========================= */
:root{
    --dark:#2f2f2f;
    --header:#404040;

    --accent:#4df88e;

    --blue:#3a6ea5;

    --bg:#eef2f6;
    --card:#f9fbfd;
}

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

html{
    scroll-behavior:smooth;
}

/* =========================
   BASE
========================= */
body{
    font-family:"Libre Baskerville", serif;
    color:var(--dark);
    background:var(--bg);
    line-height:1.6;
}

.container{
    width:min(1200px,90%);
    margin:auto;
}

/* =========================
   HEADER
========================= */
header{
    position:sticky;
    top:0;
    background:var(--header);
    z-index:1000;
    box-shadow:0 2px 10px rgba(0,0,0,.2);
}

.header-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 0;
}

.logo-container{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo-container img{
    height:60px;
}

.company-name{
    font-size:1.2rem;
    font-weight:bold;
    color:#fff;
}

/* =========================
   NAVIGATION (DESKTOP)
========================= */
.nav-links{
    display:flex;
    gap:25px;
    list-style:none;
}

.nav-links a{
    text-decoration:none;
    color:#fff;
    transition:.3s;
}

.nav-links a:hover{
    color:var(--accent);
    transform:translateY(-2px);
}

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

.burger span{
    width:30px;
    height:3px;
    background:#fff;
    display:block;
}

/* =========================
   HERO
========================= */
.hero{
    height:45vh;
    min-height:320px;

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

    color:#fff;

    padding:20px 0;

    background:
        linear-gradient(
            rgba(64,64,64,.80),
            rgba(64,64,64,.80)
        ),
        url("../images/hero.jpg");

    background-size:cover;
    background-position:center;

    position:relative;
    overflow:hidden;
}

.hero::before{
    content:"";
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);

    width:350px;
    height:350px;

    background:url("../images/logo.png") no-repeat center;
    background-size:contain;

    opacity:0.10;
    pointer-events:none;
    z-index:1;
}

.hero > *{
    position:relative;
    z-index:2;
}

.hero h1{
    font-size:3rem;
    margin-bottom:10px;
}

/* =========================
   BUTTON
========================= */
.btn{
    display:inline-block;
    margin-top:20px;
    padding:12px 30px;
    border:none;
    cursor:pointer;

    background:var(--accent);
    color:#000;

    font-weight:bold;
    text-decoration:none;

    transition:.3s;
}

.btn:hover{
    transform:translateY(-4px);
}

/* =========================
   SECTIONS
========================= */
.section{
    padding:100px 0;
}

.section:nth-of-type(even){
    background:#f7f7f7;
}

.section:nth-of-type(odd){
    background:#ffffff;
}

.section h2{
    text-align:center;
    margin-bottom:50px;
    position:relative;
}

.section h2::after{
    content:"";
    display:block;
    width:80px;
    height:3px;
    background:var(--accent);
    margin:15px auto 0;
    border-radius:2px;
}

/* =========================
   CARDS
========================= */
.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.card{
    background:var(--card);
    padding:25px;
    border-radius:15px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s;
    border:1px solid transparent;
}

.card:hover{
    transform:translateY(-10px);
    border-color:var(--accent);
    box-shadow:0 12px 35px rgba(0,0,0,.12);
}

.card img{
    width:100%;
    border-radius:10px;
}

/* =========================
   PRICE LIST
========================= */
.price-table{
    max-width:700px;
    margin:auto;
}

.price-item{
    display:flex;
    justify-content:space-between;
    padding:15px;
    border-bottom:1px solid #ddd;
}

/* =========================
   FAQ
========================= */
details{
    max-width:800px;
    margin:15px auto;
    padding:15px;
    background:#fff;
}

/* =========================
   CONTACT
========================= */
.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}

input,
textarea{
    width:100%;
    padding:12px;
    margin-bottom:15px;
}

/* =========================
   FOOTER
========================= */
footer{
    background:var(--dark);
    color:#fff;
    text-align:center;
    padding:30px;
}

.footer-links{
    margin-top:10px;
}

.footer-links a{
    color:#fff;
    text-decoration:none;
    margin:0 10px;
}

.footer-links a:hover{
    color:var(--accent);
}

/* =========================
   REVEAL ANIMATION
========================= */
.reveal{
    opacity:0;
    transform:translateY(40px);
    transition:all .8s ease;
}

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

/* =========================
   COOKIE
========================= */
#cookie-banner{
    position:fixed;
    bottom:20px;
    left:20px;
    right:20px;

    background:#fff;
    padding:20px;

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

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

    z-index:2000;
}

/* =========================
   MOBILE
========================= */
@media(max-width:768px){

    .nav-links{
        position:absolute;
        top:70px;
        right:0;
        width:100%;

        background:var(--header);

        flex-direction:column;
        text-align:center;

        padding:20px;

        display:none;
    }

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

    .nav-links a{
        color:#fff;
        padding:10px 0;
    }

    .burger{
        display:flex;
    }

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

    .hero h1{
        font-size:2rem;
    }
}