/* Generelle stilarter */
body {
    font-family: 'Baloo 2', sans-serif; /* Ny font til brødtekst */
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    padding: 20px 0;
}

/* Header */
header {
    background: #003B74; /* Mørkeblå, som din H1-farve */
    color: #fff;
    padding-top: 10px;
    min-height: 70px;
    border-bottom: 3px solid #B5CCE7; /* Lysere blå kant, som din hover-farve */
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

header .logo {
    display: flex;
    align-items: center;
    margin-bottom: 10px; /* Plads under logo på små skærme */
}

header .logo img {
    height: 50px; /* Juster logo størrelse */
    margin-right: 10px;
}

header .logo h1 {
    margin: 0;
    font-family: 'Cambay Devanagari', sans-serif; /* Ny font til H1 */
    font-size: 24px;
    color: #FFFFFF; /* Sikrer at logo-teksten er hvid */
}

header nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap; /* Gør den responsiv */
    justify-content: center; /* Centrer links på små skærme */
}

header nav ul li {
    padding: 0 15px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #B5CCE7; /* Lysere blå ved hover, som din knap hover-farve */
}

/* Aktiv navigationslink (farve opdateret til nye farvepalet) */
header nav ul li a.active {
    font-weight: bold;
    color: #B5CCE7; /* Lysere blå for den aktive side */
}

/* Hero Sektion (Home page banner) */
.hero {
    background: #003B74; /* Mørkeblå */
    color: #fff;
    text-align: center;
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 59, 116, 0.7), rgba(0, 59, 116, 0.7)), url('path/to/your/hero-background.jpg') no-repeat center center/cover; /* Justeret rgba farver til #003B74 */
    z-index: -1;
}

.hero .hero-content {
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-family: 'Cambay Devanagari', sans-serif; /* Ny font til H2 */
    font-size: 3.5em; /* Større H2 */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    color: #FFFFFF; /* Hvid til hero h2 */
}

.hero .tagline {
    font-family: 'Baloo 2', sans-serif; /* Ny font til tagline */
    font-size: 1.5em;
    margin-bottom: 40px;
    font-weight: 300;
    color: #FFFFFF; /* Hvid til tagline */
}

.button {
    display: inline-block;
    color: #FFFFFF; /* Altid hvid tekst */
    background: #003B74; /* Mørkeblå knap */
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
    font-weight: bold;
}

.button:hover {
    background: #B5CCE7; /* Lysere blå ved hover */
}

/* Introduktionssektion */
.introduction {
    padding: 60px 0;
    background: #fff;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.intro-grid .intro-image img {
    max-width: 100%;
    height: auto;
    display: block;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.introduction h3 {
    font-family: 'Cambay Devanagari', sans-serif; /* Ny font til H3 */
    color: #598F53; /* Grønlig, som dine H2/H3 farver */
    font-size: 2em;
    margin-bottom: 15px;
}

.introduction .highlight {
    font-family: 'Baloo 2', sans-serif; /* Ny font til highlight */
    font-size: 1.2em;
    color: #007bb5; /* Behold den eksisterende blå farve her */
    font-style: italic;
    margin-top: 20px;
}

/* Tore Intro Sektion (on Home) */
.tore-intro {
    padding: 60px 0;
    background: #eaf6fd;
}

.tore-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.tore-grid .tore-image img {
    width: 150px; /* Fast bredde for forsiden */
    height: 150px; /* Fast højde for forsiden (samme som bredden for at gøre det rundt) */
    object-fit: cover; /* Sikrer, at billedet fylder pladsen uden at forvrænge */
    border-radius: 50%; /* Gør billedet rundt */
    /* border: 0px solid #007bb5; */ /* Fjernede border */
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    display: block;
    margin: 0 auto;
}

.tore-intro h3 {
    font-family: 'Cambay Devanagari', sans-serif; /* Ny font til H3 */
    color: #598F53; /* Grønlig */
    font-size: 2em;
    margin-bottom: 15px;
    text-align: center;
}

.tore-intro .tore-text {
    text-align: center;
}

.tore-intro .button {
    margin-top: 20px;
}

/* Footer */
footer {
    background: #003B74; /* Mørkeblå */
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}

footer a {
    color: #B5CCE7; /* Lysere blå til footer links */
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* --- Sektioner til undersider (f.eks. Ydelser, Om os, Kontakt, Why Sevilito?) --- */

.page-hero {
    background: #003B74; /* Mørkeblå */
    color: #fff;
    text-align: center;
    padding: 60px 0;
    margin-bottom: 30px;
}

.page-hero h2 {
    font-family: 'Cambay Devanagari', sans-serif; /* Ny font til H2 */
    font-size: 3em;
    margin: 0;
    color: #FFFFFF; /* Hvid til page-hero h2 */
}

.content-section {
    padding: 40px 0;
    background: #fff;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.content-section h3 {
    font-family: 'Cambay Devanagari', sans-serif; /* Ny font til H3 */
    color: #598F53; /* Grønlig */
    font-size: 2.2em;
    margin-top: 0;
    margin-bottom: 25px;
    text-align: center;
}

/* Service List specifikt (for services.html) */
.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    background: #f9f9f9;
    border: 1px solid #ddd;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 5px;
    font-size: 1.2em; /* Din ønskede større tekst */
    line-height: 1.8;
    position: relative;
    padding-left: 20px; /* Justeret padding-left for Font Awesome */
    transition: all 0.3s ease;
}

.service-list li:hover {
    background-color: #eaf6fd;
    border-color: #B5CCE7; /* Brug lysere blå hover-farve */
}

/* --- Stilarter for "Om os" sektion --- */

.about-section {
    padding: 60px 0;
}

.tore-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    background: #eaf6fd;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Specifikke stilarter for Tore-billedet på "Om os" siden */
.about-section .tore-image img {
    width: 250px; /* Din valgte størrelse */
    height: 250px; /* Din valgte størrelse */
    object-fit: cover;
    border-radius: 4px; /* Eller 0%, som du valgte for firkantet */
    /* border: 0px solid #007bb5; */ /* Som du valgte */
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    display: block;
    margin: 0 auto;
}

.tore-info {
    text-align: center; /* Standard tekstjustering for mobil */
}

.tore-info h3 {
    font-family: 'Cambay Devanagari', sans-serif; /* Ny font til H3 */
    color: #598F53; /* Grønlig */
    font-size: 1.8em;
    margin-bottom: 10px;
}

.tore-info .role {
    font-family: 'Baloo 2', sans-serif; /* Ny font til rolle */
    font-size: 1.3em;
    color: #598F53; /* Grønlig farve */
    margin-bottom: 25px;
}

.tore-info h4 {
    font-family: 'Cambay Devanagari', sans-serif; /* Ny font til H4 */
    color: #003B74; /* Mørkeblå */
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 15px;
}

.tore-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tore-info ul li {
    background: #ffffff;
    border: 1px solid #ddd;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 5px;
    font-size: 1em;
    line-height: 1.6;
    position: relative;
    padding-left: 35px; /* Holdes for at give plads til ikon, selvom det er en HTML-tag */
    transition: all 0.2s ease;
}

.tore-info ul li:hover {
    background-color: #f0f8ff;
    border-color: #B5CCE7; /* Lysere blå hover-farve */
}

/* --- Stilarter for "Kontakt" sektion --- */

.contact-info-section {
    text-align: center;
}

.contact-info-section h3 {
    font-family: 'Cambay Devanagari', sans-serif; /* Ny font til H3 */
    color: #598F53; /* Grønlig */
    margin-bottom: 30px;
}

.contact-details {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.contact-details p {
    font-family: 'Baloo 2', sans-serif; /* Ny font til brødtekst */
    font-size: 1.1em;
    margin-bottom: 10px;
}

.contact-details a {
    color: #003B74; /* Mørkeblå til links */
    text-decoration: none;
    font-weight: bold;
}

.contact-details a:hover {
    text-decoration: underline;
}

.address-details {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.address-details h4 {
    font-family: 'Cambay Devanagari', sans-serif; /* Ny font til H4 */
    color: #003B74; /* Mørkeblå */
    font-size: 1.6em;
    margin-bottom: 10px;
}

/* --- Stilarter for Tore's billede på "Kontakt" sektion --- */
.tore-contact-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.tore-contact-profile .tore-image img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%; /* Runde billeder på kontaktsiden */
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.tore-contact-profile .tore-contact-info {
    text-align: center;
}

.tore-contact-profile h4 {
    font-family: 'Cambay Devanagari', sans-serif; /* Ny font til H4 */
    font-size: 1.8em;
    color: #598F53; /* Grønlig */
    margin-bottom: 5px;
    margin-top: 0;
}

.tore-contact-profile .role {
    font-family: 'Baloo 2', sans-serif; /* Ny font til rolle */
    font-size: 1em;
    color: #598F53; /* Grønlig */
    margin: 0;
}

/* --- Stilarter for "Why Sevilito?" sektion --- */

.value-proposition-list,
.our-approach-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 40px; /* Afstand mellem listerne */
}

.value-proposition-list li,
.our-approach-list li {
    background: #f9f9f9;
    border: 1px solid #eee;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 5px;
    font-size: 1.1em;
    line-height: 1.6;
    position: relative;
    padding-left: 20px; /* Justeret padding-left for Font Awesome */
    transition: all 0.2s ease;
}

.value-proposition-list li:hover,
.our-approach-list li:hover {
    background-color: #eaf6fd;
    border-color: #B5CCE7;
}

/* Styling for Font Awesome icons in lists (tilføjet/rettet) */
.service-list li i.service-icon,
.value-proposition-list li i.value-icon,
.our-approach-list li i.approach-icon,
.tore-info ul li i { /* Inkluderer ikoner i about-siden */
    margin-right: 15px; /* Afstand mellem ikon og tekst */
    font-size: 1.1em; /* Størrelse i forhold til teksten */
}

/* Tilpas farver for specifikke lister/ikoner */
.service-list li i.service-icon {
    color: #598F53; /* Grønlig farve til services */
}

.value-proposition-list li i.value-icon {
    color: #FF6F00; /* Orange farve til value prop */
}

.our-approach-list li i.approach-icon {
    color: #003B74; /* Mørkeblå farve til approach */
}

.tore-info ul li i { /* Ikoner på about-siden */
    color: #FF6F00; /* Orange farve til stjernerne */
}

/* Responsivitet */
@media (min-width: 768px) {
    header .container {
        flex-wrap: nowrap;
    }

    header .logo {
        margin-bottom: 0;
    }

    header nav ul {
        justify-content: flex-end;
    }

    .intro-grid {
        grid-template-columns: 2fr 1fr;
    }

    .tore-grid {
        grid-template-columns: 1fr 2fr;
    }

    .tore-intro h3,
    .tore-intro .tore-text {
        text-align: left;
    }
}

/* Responsivitet for "Om os" sektion */
@media (min-width: 768px) {
    .tore-profile {
        flex-direction: row;
        text-align: left;
    }

    .tore-image {
        margin-right: 40px;
    }

    .tore-info {
        text-align: left;
    }

    .tore-info ul {
        margin-left: 0;
        margin-right: 0;
    }
}

/* Responsivitet for Tore's kontaktprofil */
@media (min-width: 500px) {
    .tore-contact-profile {
        flex-direction: row;
        justify-content: center;
        text-align: left;
    }

    .tore-contact-profile .tore-image {
        margin-right: 20px;
    }

    .tore-contact-profile .tore-contact-info {
        text-align: left;
    }
}