/*
Theme Name: Nordic DogFocus Tema
Theme URI: https://dogfocus.dk/
Author: Jan Gislev Pedersen
Author URI: Din Hjemmeside
Description: Et simpelt tema til Nordic DogFocus med booking af hundemark og sansehave.
Version: 1.0
Requires at least: 5.0
Tested up to: 6.5
Requires PHP: 7.4

Text Domain: nordic-dogfocus-tema
*/

/* Generel styling */
body {
    font-family: sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f5f5dc; /* Lys beige/jordfarve */
    color: #3d403d; /* Mørk, neutral jordfarve */
}

.wrap {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: #f0ead6; /* Lysere beige/jordfarve */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1, h2, h3 {
    color: #558b2f; /* Mørk jordgrøn */
}

a {
    color: #558b2f; /* Mørk jordgrøn */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header */
header {
    background-color: #435a34; /* Mørkere, dæmpet grøn */
    padding: 20px 0;
    text-align: center;
    margin-bottom: 20px;
    color: #f0ead6; /* Lysere beige/jordfarve tekst */
}

header h1 {
    margin: 0;
    font-size: 2.5em;
    color: #f0ead6; /* Lysere beige/jordfarve */
}

header p {
    margin-top: 5px;
    color: #c8e6c9; /* Lysere grøn tekst */
}

/* Indhold */
#content {
    padding: 20px 0;
}

article {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #d4d4aa; /* Lys, jordfarvet grå */
}

article:last-child {
    border-bottom: none;
}

.entry-header .entry-title {
    font-size: 2em;
    margin-bottom: 10px;
    color: #558b2f; /* Mørk jordgrøn */
}

.entry-content {
    margin-top: 15px;
}

/* Footer */
footer {
    background-color: #3d403d; /* Mørk, neutral jordfarve */
    color: #f0ead6; /* Lysere beige/jordfarve tekst */
    text-align: center;
    padding: 10px 0;
    margin-top: 30px;
}

/* Styling for forsiden */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: rgba(85, 139, 47, 0.8); /* Mørk jordgrøn med let transparens */
    color: #f0ead6; /* Lysere beige/jordfarve */
}

.hero-section .wrap {
    max-width: 800px;
}

.hero-title {
    font-size: 3em;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 30px;
    color: #dcedc8; /* Lysere, grønlig farve for bedre kontrast */
}

.hero-buttons a {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    margin: 0 10px;
    font-size: 1.1em;
    text-decoration: none;
    background-color: #558b2f; /* Ens mørk jordgrøn farve for begge knapper */
    color: #f0ead6; /* Lysere beige/jordfarve tekst på knapperne */
}

.hero-buttons .primary-button {
    /* Ingen specifik styling længere, bruger standard .hero-buttons a */
}

.hero-buttons .secondary-button {
    /* Ingen specifik styling længere, bruger standard .hero-buttons a */
}

.section-title {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #558b2f; /* Mørk jordgrøn */
}

.facility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.facility-card {
    background-color: #f0ead6; /* Lysere beige/jordfarve */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.facility-card img {
    width: 100%;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.facility-content {
    padding: 20px;
}

.facility-content h3 {
    margin-top: 0;
    color: #388e3c; /* Mørkere grøn */
}

.facility-content p {
    color: #4d533c; /* Mørk grønlig jordfarve */
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more-button {
    display: inline-block;
    background-color: #558b2f; /* Mørk jordgrøn */
    color: #f0ead6; /* Lysere beige/jordfarve */
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 15px;
}

.about-section {
    text-align: center;
    padding: 60px 0;
    background-color: #e0eab6; /* Lysere, grønlig jordfarve */
}

.about-section p {
    color: #4d533c; /* Mørk grønlig jordfarve */
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    margin-bottom: 30px;
}