/* Royal Time - Om Oss Side Stilark */
/* Unikt design for å fortelle vår historie */

/* ===== HERO SECTION ===== */
.hero-omoss {
    position: relative;
    padding: 140px 0 80px; /* Økt topp-padding for å gi plass til navbar */
    background-color: var(--royal-navy); /* Solid navy background */
    color: var(--pure-white);
    text-align: center;
    overflow: hidden;
}

.hero-omoss .hero-content {
    position: relative;
    z-index: 2;
}

.hero-omoss .hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: var(--space-md);
    text-shadow: none; /* Fjerner skyggeeffekten */
}

.hero-omoss .hero-subtitle {
    font-size: var(--font-size-lg);
    max-width: 700px; /* Økt bredde for bedre tekstflyt */
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.85);
}

.hero-omoss .hero-background,
.hero-omoss::after {
    display: none;
}

/* ===== STORY SECTION ===== */
.story-section {
    padding: var(--space-3xl) 0;
    background-color: var(--pure-white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.story-content .section-title-left {
    text-align: left;
    margin-bottom: var(--space-lg);
}

.story-content .lead {
    font-size: var(--font-size-xl);
    font-weight: 500;
    color: var(--royal-navy);
    margin-bottom: var(--space-md);
}

.story-content p {
    color: #555;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ===== VALUES SECTION ===== */
.values-section {
    padding: var(--space-3xl) 0;
    background-color: #f8f9fa; /* Liten gråtone for variasjon */
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.value-card {
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
    background-color: var(--pure-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--royal-blue);
    margin-bottom: var(--space-md);
}

.value-card h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-sm);
}

.value-card p {
    color: #555;
}

/* ===== TEAM SECTION ===== */
.team-section {
    padding: var(--space-3xl) 0;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.team-member-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: var(--space-lg);
    box-shadow: var(--shadow-xl);
}

.team-member-info h3 {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-xs);
}

.team-member-info h4 {
    font-size: var(--font-size-base);
    color: var(--royal-blue);
    font-weight: 500;
    margin-bottom: var(--space-md);
}

.team-member-info p {
    max-width: 450px;
    margin: 0 auto;
    color: #555;
}

/* ===== PROMISE (CTA) SECTION ===== */
.promise-section {
    padding: var(--space-3xl) 0;
    background: var(--royal-gradient);
    color: var(--pure-white);
    text-align: center;
}

.promise-content {
    max-width: 700px;
    margin: 0 auto;
}

.promise-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--pure-white);
    margin-bottom: var(--space-md);
}

.promise-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-xl);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 991px) {
    .story-grid, .team-grid {
        grid-template-columns: 1fr;
    }

    .story-content {
        order: 2;
    }

    .story-image {
        order: 1;
        margin-bottom: var(--space-xl);
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
} 