/* styles.css */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
  }
  
  /* Tilføj andre stilarter efter behov */
  /* Tilføj denne CSS til din stilark (style.css) eller i en <style> tag i head-sektionen af din HTML */
#hero {
    width: 100%;
    overflow: hidden;
  }
  
  .hero-content {
    max-width: 800px; /* Juster denne værdi efter behov */
    margin: 0 auto;
    text-align: center;
  }
  
  img {
    width: 100%;
    height: auto;
  }

  /* NAVIGATION BAR styles.css */
nav {
    background-color: #333; /* Baggrundsfarve for navigationen, tilpas efter behov */
  }
  
  ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }
  
  li {
    float: center;
  }
  
  a {
    display: block;
    color: white; /* Tekstfarve, tilpas efter behov */
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }
  
  a:hover {
    background-color: white; /* Baggrundsfarve ved hover, tilpas efter behov */
    color: black; /* Tekstfarve ved hover, tilpas efter behov */
  }
  
/*  HERO SECTION hero 2.0 kun bund 40% Tilføj disse stilarter for at positionere overlay og formatere overskriften */
#hero {
    position: relative;
}

.hero-content {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    text-align: center;
    color: white;
}

h1 {
    font-family: 'Futura', sans-serif;
    font-size: 4em; /* Juster fontstørrelsen efter behov */
    margin: 0;
}

/* NAVIGATION BAR 4.0 med centreret knapper til at matche hero sectionen */

nav {
    background-color: #333;
    text-align: center; /* Centrer teksten */
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

li {
    display: inline; /* Vis listeelementer som inline for at opnå centreret placering */
}

a {
    display: inline-block; /* Gør ankeret til et blokelement for at anvende padding */
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

/* MENTALT HELBREDS COACHING */
/* Tilføj disse stilarter for at style første sektion af tekst */
#coaching {
    text-align: center;
    padding: 50px 0; /* Juster padding efter behov */
}

h2, h3.subheading {
    font-family: 'Futura', sans-serif;
    display: inline-block;
    padding: 10px 20px;
    background-color: #333; /* Juster baggrundsfarven efter behov */
    color: white;
}

h2 {
    font-size: 36px; /* Juster fontstørrelse efter behov */
}

h3.subheading {
    font-size: 24px; /* Juster fontstørrelse efter behov */
}

p {
    font-family: 'Futura', sans-serif;
    font-size: 18px; /* Juster fontstørrelse efter behov */
    line-height: 1.6; /* Juster linjehøjde efter behov */
}

/* Tilføj disse stilarter for at øge fontstørrelsen for de første 5 linjer */
p:nth-child(-n+11) {
    font-size: 24px; /* Juster fontstørrelse efter behov */
}

/* MØD DIN COACH Second Section */
#about {
    text-align: center;
    /* Andre stilarter efter behov */
}

#about h2 {
    /* Andre stilarter for din h2 efter behov */
}

/* BETAL HVAD DU HAR RÅD TIL Third Section */
#payment {
    text-align: center;
    /* Andre stilarter efter behov */
}

#payment h2 {
    /* Andre stilarter for din h2 efter behov */
}

/* CONNECT MED MIG OG TAG DET NÆSTE SKRIDT TIL Fourth Section */
#connect {
    text-align: center;
    /* Andre stilarter efter behov */
}

#connect h2 {
    /* Andre stilarter for din h2 efter behov */
}

#connect p:nth-last-child(-n+6) {
    font-size: 42px; /* Juster fontstørrelse efter behov */
}

/* FOOTER */
footer {
    text-align: center;
}
