/*
Theme Name: Kraus Larsen
Description: Custom Senior Consultant Theme
Version: 1.6
Author: Martin Kraus Larsen
*/

:root {
    --navy: #0a192f;
    --teal: #008080;
    --white: #ffffff;
    --light-grey: #f4f7f9;
    --text-main: #334155;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Header */
.site-header {
    padding: 25px 0;
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 55px;
    width: auto;
}

.btn-outline {
    text-decoration: none;
    color: var(--navy);
    border: 2px solid var(--teal);
    padding: 10px 25px;
    font-weight: 700;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-outline:hover {
    background: var(--teal);
    color: #fff;
}

/* Hero */
.hero-section {
    padding: 120px 0 100px;
    text-align: center;
}

.hero-section h1 {
    font-size: 4rem;
    color: var(--navy);
    line-height: 1.1;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.8rem;
    color: var(--teal);
    font-weight: 300;
    margin-bottom: 30px;
}

.hero-description {
    max-width: 750px;
    margin: 0 auto;
    font-size: 1.3rem;
    color: #666;
}

/* Services */
.services-section {
    background: var(--light-grey);
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 5px;
    border-top: 5px solid var(--teal);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.step {
    display: block;
    color: var(--teal);
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 15px;
}

/* Contact */
.contact-section {
    padding: 120px 0;
    background: var(--navy);
    color: #fff;
    text-align: center;
}

.contact-box h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--teal);
}

.contact-box p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    opacity: 0.8;
}

.btn-solid {
    display: inline-block;
    background: var(--teal);
    color: #fff;
    text-decoration: none;
    padding: 20px 50px;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 4px;
}

/* Footer */
.site-footer {
    padding: 50px 0;
    text-align: center;
    font-size: 0.9rem;
    color: #999;
}

.site-footer span {
    color: var(--teal);
    font-weight: bold;
}

/* Mobil */
@media (max-width: 768px) {
    .hero-section h1 { font-size: 2.5rem; }
    .hero-section { padding: 60px 0; }
}