* {
    box-sizing: border-box;
  }  
body {
    font-family: 'Alegreya Sans Black', sans-serif;
    margin: 0;
    padding: 0;
    background-color: white;
    color: #333;
    scroll-behavior: smooth;
}


/* ========== HEADER(All pages) ========== */
header {
    background: rgba(255, 255, 255, 0.9);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 15px 50px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 768px) {
    header {
        padding: 10px 20px;
    }
    nav ul {
        flex-direction: column;
        gap: 15px;
    }
    nav ul li a {
        font-size: 1rem;
    }
}
.menu-icon {
    display: none; /* Skjult på store skærme */
    font-size: 2rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }
    #nav-list {
        overflow: hidden;
        max-height: 0; /* Skjuler menuen */
        transition: max-height 0.5s ease-out;
        flex-direction: column;
        position: absolute;
        top: 60px;  /* Juster afstand fra headeren */
        right: 20px; /* Juster placeringen */
        background-color: white;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        padding: 0 10px;
        width: 200px; /* Fast bredde */
    }
    #nav-list.active {
        max-height: 500px; /* Højde nok til alle menupunkter */
    }
    #nav-list li {
        margin: 10px 0;
    }
}


nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 40px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 10px;
    font-size: 1.2rem;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #007bff;
}

/* ========== Global SECTION DEFAULT STYLING ========== */
section {
    min-height: 100vh;
    padding: 100px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    position: relative;
}
/* ========== INDEX SIDE ========== */

/* HERO SECTION*/
/* HERO SECTION */
#hero {
    width: 100%;
    background: linear-gradient(to bottom, #6ec6ff, #ffffff);
    text-align: center;
    overflow: hidden;
  }
  
  
  /* Hero-indholdet – placeret under videoen */
  .hero-content {
    padding: 20px;
  }
  
  .hero-content h1 {
    font-weight: normal;
    font-size: 3rem;
    margin-bottom: 10px;
    color: black;
  }
  
  .hero-content p {
    font-size: 1.5rem;
    margin: 5px 0;
    color: black;
  }
  .hero-image {
    width: 100vw;  /* Fuldbredde */
    height: 50vh; /* Fuldhøjde */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .hero-image img {
    width: 20%;       /* Juster bredden efter behov */
    height: auto;
  }
  
  .btn {
    background: #000000;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    border-radius: 5px;
    margin-top: 20px;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
  }
  
/* WHAT SECTION STYLING */
#what {
    text-align: center;
    padding: 50px 20px;
    background-color: #ffffff;
}

#what .container {
    max-width: 900px;
    margin: 0 auto;
}

#what h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

#what .description {
    font-size: 16px;
    color: #333;
    margin-bottom: 30px;
}

.features {
    display: flex;
    justify-content: center; /* Centrerer hele rækken */
    gap: 40px; /* Giver luft mellem elementerne */
    flex-wrap: wrap; /* Sørger for, at de går ned på næste linje på små skærme */
    text-align: center;
    margin: 0 auto; /* Centrerer sektionen */
    max-width: 1200px; /* Begrænser bredden for at sikre en pæn layout */
}

.feature-item {
    flex: 1; /* Sørger for, at alle får lige meget plads */
    min-width: 250px; /* Undgår, at de bliver for små */
    max-width: 300px; /* Holder en ensartet bredde */
    display: flex;
    flex-direction: column; /* Stabler billedet over teksten */
    align-items: center;
}

.feature-item img {
    width: 100%; /* Gør billedet større */
    height: auto;
    margin-bottom: 10px;
}


.feature-item h3 {
    font-size: 16px;
    font-weight: bold;
}

.cta-text {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #2b6cb0;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.btn:hover {
    background-color: #1a4d80;
}


/*ACCESS SECTION*/
#access {
    background: url('access-background.png') no-repeat center center/cover; /* Baggrundsbillede */
    background-size: cover; /* Sørger for, at billedet dækker hele sektionen */
    background-position: center;
    background-attachment: fixed; /* Holder baggrunden på plads ved scroll */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Sikrer, at sektionen fylder hele viewport-højden */
    width: 100%;
    position: relative;
}

.access-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.access-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 450px;
    width: 90%;
}

.access-box h2 {
    font-size: 24px;
    font-weight: bold;
}

.access-benefits {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
    font-size: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    text-align: left;
}

.form-group label {
    font-size: 14px;
    margin-bottom: 5px;
}

.form-group input {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
}

.btn {
    background-color: #0d6efd;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.btn:hover {
    background-color: #0b5ed7;
}


.btn {
    background-color: #0d6efd;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.btn:hover {
    background-color: #0b5ed7;
}


/* ART SECTION */
#art {
    padding: 60px 10%;
    background-color: #f8f8f8;
}

.article-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.article-box {
    flex: 1;
    max-width: 300px;
    background: white;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: black;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.article-box img {
    width: 100%; /* Sørger for at billedet fylder bredden */
    height: 250px; /* Fast højde, så alle billeder har samme størrelse */
    object-fit: cover; /* Sørger for at billedet dækker hele området uden at blive strukket */
    border-radius: 6px 6px 0 0; /* Beholder afrunding kun på toppen */
}

.article-box h3 {
    font-size: 18px;
    margin: 15px 0 10px;
}

.article-box p {
    font-size: 14px;
    color: #666;
}

.read-more {
    display: inline-block;
    margin-top: 10px;
    font-size: 14px;
    color: #007bff;
    font-weight: bold;
    cursor: pointer;
}

@media (max-width: 768px) {
    .article-container {
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }
    .article-box {
      max-width: 90%;
      margin: 0 auto;
    }
  }


/* FAQ SECTION*/
#faq {
    background-color: #eff7fa; /* Lys blå baggrund */
    padding: 60px 20px;
    text-align: center;
}

#faq h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    width: 100%;
    border-bottom: 1px solid #000; /* Sort linje mellem spørgsmål */
    padding: 10px 0;
}

.faq-question {
    width: 100%;
    text-align: left;
    font-size: 18px;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.faq-answer {
    width: 100%;
    display: none;
    padding: 10px 0;
    font-size: 16px;
    color: #333;
}

.faq-item,
.faq-question,
.faq-answer {
  width: 100%;
  transition: all 0.3s ease;
}

.faq-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* ========== ABOUT SIDE ========== */
/* ABOUT HERO SECTION*/
#aboutHero {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    background: white;
    color: black;
}

.about-hero-container {
    display: flex;
    flex-direction: column;
    max-width: 1100px;
    width: 100%;
}

/* Tekstsektion opdelt i to kolonner */
.about-hero-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px; /* Luft mellem overskrift og beskrivelse */
}

.about-hero-heading {
    flex: 40%;
}

.about-hero-description {
    flex: 60%;
    max-width: 600px;
}

.about-hero-heading h1 {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.subheading {
    font-size: 1.5rem;
    font-weight: normal;
    color: #333;
    margin-bottom: 20px;
}

/* Billederne placeret i en række */
.about-hero-images {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.about-hero-images img {
    width: 70%;
    max-width: 1000px;
    border-radius: 5px;
    object-fit: cover;
}
/* Responsiv justering */
@media (max-width: 900px) {
    .about-hero-header {
        flex-direction: column;
        text-align: center;
    }

    .about-hero-heading, .about-hero-description {
        flex: 100%;
        text-align: center;
    }

    .about-hero-images {
        flex-direction: column;
        align-items: center;
    }

    .about-hero-images img {
        width: 80%;
        margin-bottom: 10px;
    }
}

/* VISION SECTION */
#vision {
    display: block !important;             /* Fjern den globale flex */
    overflow-x: hidden;
    background: white;
    color: black;
    margin: 0 auto;             /* Centrer sektionen */
    padding: 20px 10px;         /* Ny padding */
    max-width: 1100px;          /* Samme max-width som de andre sektioner */
}

  
  /* Container for Vision-sektionen med grid-layout */
  .vision-container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); /* To kolonner, der kan krympe */
    grid-template-rows: auto auto; 
    column-gap: 40px;   /* Vandret afstand mellem kolonnerne */
    row-gap: 20px;      /* Lodret afstand */
    width: 100%;       /* Fylder den tilgængelige plads inden for max-width */
    margin: 0 auto;    /* Centrer containeren */
    padding: 0 10px;   /* Intern padding, så indholdet ikke klæber til kanten */
  }
  
  /* H1 fylder hele toppen (går over begge kolonner) */
  .vision-text h1 {
    grid-column: 1 / span 2; 
    font-size: 3rem;
    margin-bottom: 10px;
    text-align: left;
  }
  
  /* Subheading i venstre kolonne */
  .vision-text .subheading {
    grid-column: 1;
    font-size: 1.7rem;
    font-weight: normal;
    color: #333;
    margin: 0; 
    text-align: left;
  }
  
  /* Beskrivelse i højre kolonne */
  .vision-description {
    grid-column: 2;
    margin-top: 0; 
    text-align: left;
    max-width: none; /* Gør hele kolonnen tilgængelig */
  }
  
  /* Responsivt layout for vision-sektionen */
  @media (max-width: 900px) {
    .vision-container {
      grid-template-columns: 1fr;      /* Én kolonne */
      grid-template-rows: auto auto;
      text-align: center;
      column-gap: 20px; /* Mindre gap på mindre skærme */
    }
    .vision-text h1 {
      grid-column: 1;
      text-align: center;
    }
    .vision-text .subheading {
      grid-column: 1;
      text-align: center;
      margin-bottom: 20px;
    }
    .vision-description {
      grid-column: 1;
      text-align: center;
      margin-top: 0;
    }
  }
  

/* WHO SECTION*/
#who {
    background: #87CEEB; /* Lys baggrund */
    padding: 50px 10px;
    text-align: center;
}

.who-container {
    max-width: 1100px;
    margin: 0 auto;
}

.who-container h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: left;
}

/* Layout for billeder og tekst */
.who-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.person {
    flex: 1;
    background: white;
    padding-bottom: 20px;
}

.person img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

/* Styling af teksten under billeder */
.person-info {
    padding: 15px;
    text-align: left;
}

.person-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.person-info .title {
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.person-info .description {
    font-size: 1rem;
    margin-bottom: 15px;
}

.person-info .contact {
    font-size: 1.1rem;
    font-weight: bold;
}

/* Responsiv design */
@media (max-width: 900px) {
    .who-content {
        flex-direction: column;
        gap: 20px;
    }

    .person img {
        height: auto;
    }
}




/* COUNTDOWN SECTION*/
#countdown {
    background-color: white;
    text-align: center;
    padding: 50px 10px;
}

.countdown-container {
    max-width: 800px;
    margin: 0 auto;
}

.countdown-container h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.countdown-container p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Countdown-styling */
.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.time-box {
    background: black;
    color: white;
    font-size: 3rem;
    font-weight: bold;
    padding: 20px;
    border-radius: 5px;
    min-width: 90px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.time-box p {
    font-size: 1rem;
    margin-top: 5px;
    font-weight: normal;
}

.separator {
    font-size: 3rem;
    font-weight: bold;
}




/* ========== VIDEN SIDE ========== */
#viden {
    padding: 50px 20px;
    text-align: center;
    background-color: #ffffff;
    color: #333;
  }




/* ========== FOOTER SECTION ========== */
footer {
    background: linear-gradient(to bottom, #87CEEB, #67B0D1);
    padding: 20px 10%;
    color: black;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: bold;
}

.footer-section p {
    font-size: 14px;
    margin: 5px 0;
}

.footer-section a {
    text-decoration: none;
    color: black;
}

.footer-section a:hover {
    text-decoration: underline;
}

hr {
    border: 0;
    height: 1px;
    background: black;
    margin: 10px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: black;
}

@media (max-width: 768px) {
    section {
        min-height: auto;  /* Fjern minimumshøjden */
        padding: 50px 10px; /* Reducér padding for en mere kompakt visning */
    }
}
@media (max-width: 768px) {
    .countdown-container {
      max-width: 100%;
      width: 100%;
      padding: 0 10px;
    }
    .countdown-container h2 {
      font-size: 2rem;
    }
    .countdown-container p {
      font-size: 1rem;
    }
    .countdown-timer {
      gap: 10px;
      flex-wrap: wrap; /* Tillader elementer at bryde linjen, hvis nødvendigt */
    }
    .time-box {
      font-size: 2rem;
      padding: 10px;
      min-width: 60px; /* Reduceret minimumsbredde */
    }
    .time-box p {
      font-size: 0.8rem;
    }
    .separator {
      font-size: 2rem;
    }
  }
  
