/* =====================
   BASE (PAGE ONLY)
===================== */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

section {
    padding: 20px;
}

/* =====================
   GLOBAL ANIMATIONS
===================== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
}

.fade-in.delay-1 { animation-delay: 0.3s; }
.fade-in.delay-2 { animation-delay: 0.6s; }
.fade-in.delay-3 { animation-delay: 0.9s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.zoom {
    transition: transform 0.3s ease;
}

.zoom:hover {
    transform: scale(1.05);
}

/* =====================
   ABOUT SECTION
===================== */
.about-section {
    padding: 60px 20px;
    background: linear-gradient(to bottom, #f5f5f5, #e9e9e9);
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.about-illustration {
    width: 100%;
    max-width: 500px;
    height: 350px;
    background-image: url('../image/fotto.png');
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.om {
    max-width: 600px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.om h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #333;
}

.om p {
    line-height: 1.6;
    color: #444;
}

/* =====================
   SERVICES
===================== */
#services {
    background-color: #eaeaea;
    padding: 50px 20px;
    text-align: center;
}

.hva {
    display: flex;
    justify-content: center;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.service-item {
    width: 300px;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

.service-item h3 {
    margin-top: 10px;
}

/* =====================
   WHY US
===================== */
#why-us {
    background-color: #f9f9f9;
    padding: 50px 20px;
    text-align: center;
}

.hvorfor {
    font-size: 2em;
    margin-bottom: 30px;
    color: #222;
}

.reasons-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.reason-item {
    background-color: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-size: 1.1em;
    line-height: 1.5;
}

/* ⭐ behaves like emoji */
.star {
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-right: 10px;
    vertical-align: -0.15em;
}

.star svg {
    width: 100%;
    height: 100%;
    fill: #f4c542;
}

/* =====================
   PARTNERS
===================== */
.partners-section {
    background-color: #eaeaea;
    padding: 60px 20px;
    text-align: center;
}

.partners-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.partner-logo {
    max-width: 150px;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.partner-logo img {
    width: 100%;
    object-fit: contain;
}

/* =====================
   RESPONSIVE (PAGE)
===================== */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-illustration {
        height: 250px;
        max-width: 90%;
    }
}
