
/* =========================
   FULLSCREEN HERO
   ========================= */
.hero {
    height: 100vh;
    background: url("billeder/Front-page-picture.png") center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

.hero-content {
    position: relative;
    text-align: center;
    color: white;
    max-width: 700px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 40px;
}

.hero-btn {
    display: inline-block;
    padding: 14px 36px;
    background: var(--blue-dark);
    color: white;
    font-size: 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.2s;
}

.hero-btn:hover {
    background: var(--blue);
}

/* =========================
   SERVICES
   ========================= */
.services {
    padding: 80px 0;
    text-align: center;
}

.services h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.services-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.service-item {
    width: 220px;
    text-align: center;
}

.service-item img {
    height: 80px;
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 22px;
    font-weight: 600;
}

/* =========================
   ABOUT SECTION
   ========================= */
.about {
    background: var(--blue-light);
    padding: 80px 20px;
    text-align: center;
}

.about h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* =========================
   CUSTOMERS
   ========================= */
.customers {
    padding: 80px 0;
    text-align: center;
}

.customers h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.customer-logos {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.customer-logos img {
    height: 80px;
    object-fit: contain;
}
