/*
Theme Name: BHP PPOŻ Professional
Theme URI: https://jacekczajkowski.pl
Author: Jacek & Bogdan
Version: 1.0
Text Domain: bhp-ppoz
*/

/* ==========================================
   GLOBAL
========================================== */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, sans-serif;
    color: #0f172a;
    background: #fff;
    overflow-x: hidden;
}

.container {
    width: 1280px;
    max-width: 92%;
    margin: auto;
}

a {
    text-decoration: none;
}

/* ==========================================
   HEADER
========================================== */

.site-header {

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;

    z-index: 1000;

    background: #fff;
}

.header-wrapper {

    min-height: 100px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


.main-nav ul {

    display: flex;
    align-items: center;
    gap: 35px;

    list-style: none;
}

.main-nav a {

    color: #ffffff;
    font-weight: 600;
    font-size: 17px;

    transition: .3s;
}

.main-nav a:hover {
    color: #ef4444;
}

.header-contact {

    display: flex;
    align-items: center;
    gap: 15px;
}

.header-phone {

    color: #ffffff;
    font-weight: 700;
}

.header-phone:hover {
    color: #ef4444;
}

.header-cta {

    background: #dc2626;

    color: #fff;

    padding: 16px 28px;

    border-radius: 10px;

    font-weight: 700;

    transition: .3s;
}

.header-cta:hover {
    background: #b91c1c;
}


.logo img {
    height: 150px;
    width: auto;
}

/* ==========================================
   HERO FULL SCREEN
========================================== */

.hero-full {
    position: relative;

    min-height: 100vh;
    width: 100%;

    display: flex;
    align-items: center;

    background: url('../images/hero-bhp-ppoz2.jpg') center center/cover no-repeat;

    overflow: hidden;
    margin-top: 0;
    padding-top: 120px;

}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(1, 12, 35, .92) 0%,
            rgba(1, 12, 35, .88) 30%,
            rgba(1, 12, 35, .65) 50%,
            rgba(1, 12, 35, .20) 80%,
            rgba(1, 12, 35, .05) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;

    width: 100%;
}

.hero-text {
    max-width: 760px;
    padding-top: 100px;
}

.hero-tag {
    display: inline-block;

    color: #ef4444;

    font-size: 15px;
    font-weight: 700;

    letter-spacing: 3px;
    text-transform: uppercase;

    margin-bottom: 25px;
}

.hero-text h1 {
    color: #fff;

    font-size: 82px;
    line-height: 1.05;
    font-weight: 800;

    margin-bottom: 30px;
}

.hero-text p {
    color: #dbe3f0;

    font-size: 24px;
    line-height: 1.7;

    max-width: 700px;

    margin-bottom: 40px;
}

.hero-checks {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 16px;

    margin-bottom: 45px;
}

.hero-checks div {
    color: #fff;
    font-size: 20px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-outline {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 16px 28px;

    border-radius: 10px;

    border: 1px solid rgba(255, 255, 255, .4);

    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #081225;
}


.hero-stats{
    display:flex;
    gap:60px;
    margin-top:50px;
}

.hero-stats strong{
    display:block;
    color:#fff;
    font-size:42px;
    font-weight:800;
}

.hero-stats span{
    color:#cbd5e1;
    font-size:15px;
}

@media(max-width:768px){

    .hero-stats{
        flex-direction:column;
        gap:20px;
    }

}

/* ==========================================
   SERVICES SECTION
========================================== */

.services-home {

    padding: 120px 0;
    background: #ffffff;
}

.section-heading {

    text-align: center;

    max-width: 800px;

    margin: 0 auto 70px;
}

.section-heading span {

    color: #dc2626;

    font-weight: 700;

    letter-spacing: 2px;
}

.section-heading h2 {

    font-size: 52px;

    margin-top: 15px;
    margin-bottom: 20px;
}

.section-heading p {

    color: #64748b;

    font-size: 18px;
}

.services-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;
}

.service-card {

    padding: 40px;

    border-radius: 18px;

    border: 1px solid #e5e7eb;

    transition: .3s;
}

.service-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}

.service-card h3 {

    font-size: 26px;

    margin-bottom: 15px;
}

.service-card p {

    color: #64748b;

    margin-bottom: 20px;
}


.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;

    background: transparent;
    border: none;
}

.header-wrapper {
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}



.main-nav ul {
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
}

.main-nav a {
    color: #fff;
    font-weight: 600;
    font-size: 17px;
    transition: .3s;
}

.main-nav a:hover {
    color: #ef4444;
}

.header-phone {
    color: #fff;
    font-weight: 700;
}

.header-cta {
    background: #dc2626;
    color: #fff;
    padding: 16px 28px;
    border-radius: 10px;
    font-weight: 700;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:1200px) {

    .hero-text h1 {
        font-size: 68px;
    }

}

@media(max-width:992px) {

    .main-nav {
        display: none;
    }

    .hero-text {

        text-align: center;

        margin: auto;
    }

    .hero-text h1 {
        font-size: 56px;
    }

    .hero-checks {

        grid-template-columns: 1fr;

        max-width: 450px;

        margin: 0 auto 40px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

}

@media(max-width:768px) {

    .header-contact {
        display: none;
    }

    .hero-full {
        min-height: 900px;
    }

    .hero-text h1 {
        font-size: 42px;
    }

    .hero-text p {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .section-heading h2 {
        font-size: 36px;
    }

}