:root {
    --primary-color: #4CAF50;    /* Frisk grøn */
    --secondary-color: #81C784;  /* Lysere grøn */
    --accent-color: #FDD835;     /* Varm gul som accent */
    --background-color: #F1F8E9; /* Let grøn baggrund */
    --text-color: #2C3E50;      /* Mørk blå-grå */
    --footer-color: #388E3C;    /* Mørkere grøn */
    --light-green: #C8E6C9;     /* Meget lys grøn til hover effekter */
}

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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

/* Header og Navigation */
header {
    background-color: white;
    box-shadow: 0 2px 15px rgba(255, 107, 107, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    margin-left: 2rem;
    transition: color 0.3s ease;
    font-weight: 600;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    padding: 6rem 1rem;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: var(--background-color);
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

/* About Section */
.about {
    background-color: white;
    border-radius: 15px;
    margin: 2rem auto;
    padding: 3rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Activities Section */
.activities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.activity {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.1);
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.activity:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    background-color: var(--light-green);
}

.activity h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.1);
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--secondary-color);
}

/* Social Links og Maps */
.social-links {
    margin: 2rem 0;
}

.social-link {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    background-color: #1877f2; /* Facebook blå */
    color: white !important; /* Sikrer hvid tekst */
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(24, 119, 242, 0.2);
    font-weight: 500;
}

.social-link:hover {
    background-color: #166fe5; /* Mørkere Facebook blå */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.3);
    color: white !important; /* Sikrer hvid tekst ved hover */
}

.social-link i {
    margin-right: 0.8rem;
    font-size: 1.2rem;
    color: white; /* Sikrer hvidt ikon */
}

.map-container {
    margin-top: 2rem;
}

.map-container h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.map-container iframe {
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Footer */
footer {
    background-color: var(--footer-color);
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 2rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.social-footer a {
    color: #1877f2; /* Facebook blå */
    font-size: 1.8rem;
    transition: all 0.3s ease;
    background-color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-footer a:hover {
    color: #166fe5; /* Mørkere Facebook blå */
    transform: scale(1.1);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    animation: fadeIn 1s ease-out;
}

/* Accessibility */
:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 3px;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        padding: 1rem;
    }

    .nav-links {
        margin-top: 1rem;
    }

    .nav-links a {
        margin: 0 0.5rem;
        font-size: 0.9rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    section {
        padding: 2rem 1rem;
    }

    .map-container iframe {
        height: 300px;
    }
}
