/* ===================================================
   L&B ENTREPRENAD AB
   STYLE.CSS - DEL 1
=================================================== */

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

:root{

    --yellow:#F4B400;
    --dark:#1F2937;
    --dark2:#111827;
    --white:#ffffff;
    --gray:#6B7280;
    --light:#F8F9FA;

    --shadow:0 12px 35px rgba(0,0,0,.08);
    --radius:18px;

}

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:"Poppins",sans-serif;
    background:var(--light);
    color:#222;
    line-height:1.7;
    overflow-x:hidden;

}

img{

    width:100%;
    display:block;

}

a{

    color:inherit;
    text-decoration:none;

}

ul{

    list-style:none;

}

.container{

    width:min(92%,1300px);
    margin:auto;

}

section{

    padding:110px 0;

}

/* ===================================================
   NAVBAR
=================================================== */

header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:999;

    background:rgba(15,23,42,.90);

    backdrop-filter:blur(16px);

    border-bottom:1px solid rgba(255,255,255,.08);

}

.navbar{

    width:min(92%,1400px);

    margin:auto;

    height:88px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

.logo img{

    width:100px;
    border-radius:12px;

}

.nav-links{

    display:flex;
    gap:40px;

}

.nav-links a{

    color:white;
    font-weight:500;
    transition:.3s;

}

.nav-links a:hover{

    color:var(--yellow);

}

.call-btn{

    background:var(--yellow);

    color:#111;

    padding:14px 26px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.call-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 15px 30px rgba(244,180,0,.25);

}

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

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

}

.hero-image{

    position:absolute;

    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;

    filter: brightness(50%);

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:

    linear-gradient(

        rgba(0,0,0,.72),

        rgba(0,0,0,.55)

    );

}

.hero-content{

    position:relative;

    width:min(92%,1300px);

    margin:auto;

    color:white;

}

.hero-tag{

    display:inline-flex;

    padding:9px 18px;

    background:var(--yellow);

    color:#111;

    font-size:14px;

    font-weight:700;

    border-radius:50px;

    margin-bottom:25px;

}

.hero h1{

    font-size:72px;

    line-height:1.05;

    font-weight:800;

    max-width:650px;

    margin-bottom:25px;

}

.hero p{

    max-width:720px;

    font-size:19px;

    color:#f2f2f2;

    margin-bottom:45px;

}

.hero-buttons{

    display:flex;

    gap:20px;

}

.btn-primary{

    background:var(--yellow);

    color:#111;

    padding:17px 34px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.btn-primary:hover{

    transform:translateY(-5px);

}

.btn-secondary{

    border:2px solid rgba(255,255,255,.7);

    padding:17px 34px;

    border-radius:50px;

    color:white;

    transition:.3s;

}

.btn-secondary:hover{

    background:white;

    color:#111;

}

/* ===================================================
   SECTION TITLE
=================================================== */

.section-title{

    text-align:center;

    max-width:760px;

    margin:0 auto 70px;

}

.section-title span{

    color:var(--yellow);

    font-weight:700;

    letter-spacing:2px;

    font-size:14px;

}

.section-title h2{

    margin-top:12px;

    font-size:48px;

    line-height:1.2;

    color:var(--dark);

}

.section-title p{

    margin-top:18px;

    color:var(--gray);

}

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

.about{

    background:white;

}

.about .container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:90px;

    align-items:center;

}

.about-image{

    overflow:hidden;

    border-radius:22px;

    box-shadow:var(--shadow);

}

.about-image img{

    height:620px;

    object-fit:cover;

    transition:.5s;

}

.about-image:hover img{

    transform:scale(1.05);

}

.about-text span{

    color:var(--yellow);

    font-weight:700;

    letter-spacing:2px;

}

.about-text h2{

    font-size:48px;

    line-height:1.2;

    margin:20px 0 30px;

}

.about-text p{

    color:var(--gray);

    margin-bottom:22px;

}

.about-features{

    display:grid;

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

    gap:22px;

    margin-top:35px;

}

.about-features div{

    display:flex;

    align-items:center;

    gap:12px;

    font-weight:600;

}

.about-features i{

    color:var(--yellow);

    font-size:22px;

}

/* ===================================================
   L&B ENTREPRENAD AB
   STYLE.CSS - DEL 2
=================================================== */

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

.services{
    background:var(--light);
}

.services-grid{

    width:min(92%,1300px);
    margin:auto;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
    gap:35px;

}

.service-card{

    background:white;

    border-radius:22px;

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:.35s ease;

}

.service-card:hover{

    transform:translateY(-10px);

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

}

.service-card img{

    width:100%;
    height:260px;
    object-fit:cover;

}

.service-content{

    padding:30px;

}

.service-content h3{

    font-size:28px;

    margin-bottom:15px;

    color:var(--dark);

}

.service-content p{

    color:var(--gray);

}

/* ==============================
   WHY US
================================ */

.why-us{

    background:var(--dark);

    color:white;

}

.why-us .section-title h2{

    color:white;

}

.why-grid{

    width:min(92%,1300px);

    margin:auto;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:30px;

}

.why-card{

    background:var(--dark2);

    padding:45px 30px;

    border-radius:20px;

    text-align:center;

    transition:.35s;

}

.why-card:hover{

    transform:translateY(-8px);

}

.why-card i{

    font-size:52px;

    color:var(--yellow);

    margin-bottom:22px;

}

.why-card h3{

    margin-bottom:15px;

    font-size:24px;

}

.why-card p{

    color:#d5d5d5;

}

/* ==============================
   PROJECTS
================================ */

.projects{

    background:white;

}

.project-grid{

    width:min(92%,1300px);

    margin:auto;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));

    gap:25px;

}

.project-grid img{

    width:100%;

    height:300px;

    object-fit:cover;

    border-radius:18px;

    transition:.4s;

    cursor:pointer;

}

.project-grid img:hover{

    transform:scale(1.04);

}

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

.contact{

    background:var(--light);

}

.contact-wrapper{

    width:min(92%,1200px);

    margin:auto;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}

.contact-card{

    background:white;

    padding:45px 35px;

    border-radius:22px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.35s;

}

.contact-card:hover{

    transform:translateY(-8px);

}

.contact-card i{

    font-size:42px;

    color:var(--yellow);

    margin-bottom:20px;

}

.contact-card h3{

    margin-bottom:15px;

    color:var(--dark);

}

.contact-card p,
.contact-card a{

    color:var(--gray);

}

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

footer{

    background:#101010;

    color:white;

    padding-top:80px;

}

.footer-container{

    width:min(92%,1300px);

    margin:auto;

    display:grid;

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

    gap:60px;

}

.footer-logo img{

    width:120px;

    margin-bottom:25px;

    border-radius:15px;

}

.footer-logo p{

    color:#bcbcbc;

}

.footer-links{

    display:flex;

    flex-direction:column;

}

.footer-links h3,
.footer-contact h3{

    margin-bottom:20px;

}

.footer-links a{

    margin-bottom:12px;

    color:#bcbcbc;

    transition:.3s;

}

.footer-links a:hover{

    color:var(--yellow);

}

.footer-contact p{

    color:#bcbcbc;

    margin-bottom:10px;

}

.footer-bottom{

    margin-top:70px;

    border-top:1px solid rgba(255,255,255,.08);

    padding:25px;

    text-align:center;

    color:#999;

}

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

.service-card,
.why-card,
.project-grid img,
.contact-card{

    animation:fadeUp .8s ease both;

}

@keyframes fadeUp{

    from{

        opacity:0;
        transform:translateY(40px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

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

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#ececec;

}

::-webkit-scrollbar-thumb{

    background:var(--yellow);

    border-radius:20px;

}

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

@media (max-width:1100px){

    .about .container{

        grid-template-columns:1fr;

    }

    .about-image img{

        height:450px;

    }

    .footer-container{

        grid-template-columns:1fr;

        text-align:center;

    }

    .footer-logo img{

        margin:auto auto 25px;

    }

}

@media (max-width:900px){

    .navbar{

        flex-direction:column;

        height:auto;

        padding:20px 0;

    }

    .nav-links{

        margin:25px 0;

        flex-wrap:wrap;

        justify-content:center;

        gap:20px;

    }

    .hero{

        min-height:auto;

        padding:180px 0 120px;

    }

    .hero h1{

        font-size:56px;

    }

    .hero-buttons{

        flex-direction:column;

        align-items:flex-start;

    }

}

@media (max-width:700px){

    section{

        padding:70px 0;

    }

    .hero h1{

        font-size:42px;

    }

    .hero p{

        font-size:16px;

    }

    .section-title h2{

        font-size:34px;

    }

    .about-text h2{

        font-size:36px;

    }

    .about-features{

        grid-template-columns:1fr;

    }

    .services-grid,
    .project-grid,
    .why-grid,
    .contact-wrapper{

        grid-template-columns:1fr;

    }

    .service-card img,
    .project-grid img{

        height:230px;

    }

}