/* ==========================================================================
   GRUNDINSTÄLLNINGAR & FÄRGER
   ========================================================================== */
:root {
    --primary-orange: #FF8000;
    --hover-orange: #e67300;
    --bg-light: #f4f4f4;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ==========================================================================
   TYPOGRAFI & TEXTFORMATERING
   ========================================================================== */
h1, h2, h3 { text-align: center; }
.site-title { font-size: 1.8rem; margin: 0; text-align: center; flex-grow: 1; font-weight: normal; }
.highlight-orange, .orange-text { color: var(--primary-orange); font-weight: bold; }
::selection { background-color: #ffcc99; color: #000; }

/* ==========================================================================
   HEADER / SIDHUVUD
   ========================================================================== */
.main-header {
    background-color: var(--bg-light);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
}

.header-logo { height: 60px; width: auto; }

.language-flags img {
    width: 30px;
    height: auto;
    margin-left: 5px;
    cursor: pointer;
    transition: transform 0.2s;
}
.language-flags img:hover { transform: scale(1.1); }

/* ==========================================================================
   HUVUDINNEHÅLL & KORT-LAYOUT
   ========================================================================== */
.main-content {
    flex: 1;
    max-width: 900px;
    margin: 30px auto;
    padding: 0 20px;
}

.service-card {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    padding: 30px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    border-top: 4px solid var(--primary-orange);
}

.service-card h2 { margin-top: 0; }
.service-image { 
    width: 100%; 
    max-height: 350px; 
    object-fit: cover; 
    border-radius: 5px; 
    margin-bottom: 20px; 
}

/* ==========================================================================
   KNAPPAR
   ========================================================================== */
.btn {
    display: inline-block;
    background-color: var(--primary-orange);
    color: var(--white);
    padding: 12px 25px;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
    text-align: center;
}

.btn:hover {
    background-color: var(--hover-orange);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-orange-long {
    padding: 12px 60px; 
    font-size: 18px;
    border-radius: 30px; 
}

/* ==========================================================================
   FOOTER / SIDFOT
   ========================================================================== */
.main-footer {
    text-align: center;
    background-color: var(--bg-light);
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
    padding: 20px;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.sponsor-section-footer h2 {
    font-size: 1em;
    color: var(--text-dark);
    font-weight: normal;
    margin-bottom: 15px;
}

.sponsor-logos img {
    max-height: 80px;
    margin: 0 15px;
    vertical-align: middle;
}

/* ==========================================================================
   MOBILANPASSNING
   ========================================================================== */
@media (max-width: 768px) {
    .header-container { flex-direction: column; gap: 15px; text-align: center; }
    .site-title { font-size: 1.4rem; }
    .header-logo { height: 45px; }
    .footer-nav { flex-direction: column; gap: 20px; }
    .service-card { padding: 20px; }
}