/* Grundläggande styling */

html {

scroll-behavior: smooth;

}



body {
    margin: 0;
    /* font-family: sans-serif; */

    font-family: "Inter", sans-serif;
    /* font-family: "EB Garamond", serif; */
    background-color: rgb(255, 255, 255);
    /* background-color: rgb(213, 228, 242); */

    
    margin: 0;
    /* overflow: hidden; */
}

  main {
    padding-top: 80px; /* Justera beroende på navbarens höjd */
  }


  



  .h1_container {


    display: flex;
    justify-content: center;
    padding-top: 30px;
    padding-bottom: 30px;


    
    /* background-color:#fc7fc2; */

  }

  @media only screen and (max-width: 1100px) {
    
    .h1_container {


      display: flex;
      justify-content: center;
      padding-top: 20px;
      padding-bottom: 25px;
  
  
      
      /* background-color:#fc7fc2; */
  
    }
  }

  @media only screen and (max-width: 640px) {
    
    .h1_container {


      display: flex;
      justify-content: center;
      padding-top: 20px;
      padding-bottom: 20px;
  
  
      
      /* background-color:#fc7fc2; */
  
    }
  }

  .headline_background {
    /* background-color: #addbd7; */
  }

  .h1_style {
    font-size: 70px;
    font-weight: 500;
    margin: 0;
    text-decoration: underline;
    text-decoration-color: #addbd7;
    text-decoration-thickness: 10px;
    text-underline-offset: 17px; /* ökar avståndet */
  
  }

  @media only screen and (max-width: 640px) {
    
    .h1_style {
      font-size: 50px;
      font-weight: 500;
      margin: 0;
      text-decoration: underline;
      text-decoration-color: #addbd7;
      text-decoration-thickness: 10px;
      text-underline-offset: 17px; /* ökar avståndet */
    
    }
  }

  .h2_style {
    font-size: 40px;
    font-weight: 500;
    margin-top: 0px;
    margin-bottom: 0px;

    /* text-decoration-line: underline;
    text-decoration-style: dotted;
    text-decoration-color: #fc7fc2;
    text-decoration-thickness: 10px;

    text-underline-offset: 10px;  */

    border-bottom: 5px dotted #fc7fc2;
    padding-bottom: 2px;
  }


  @media only screen and (max-width: 1100px) {
    
    .h2_style {
      font-size: 30px;
      font-weight: 500;
      margin-top: 0px;
      margin-bottom: 0px;
  
      /* text-decoration-line: underline;
      text-decoration-style: dotted;
      text-decoration-color: #fc7fc2;
      text-decoration-thickness: 10px;
  
      text-underline-offset: 10px;  */
  
      border-bottom: 5px dotted #fc7fc2;
      padding-bottom: 2px;
    }
  }

  @media only screen and (max-width: 640px) {
    
    .h2_style {
      font-size: 30px;
      font-weight: 500;
      margin-top: 0px;
      margin-bottom: 0px;
  
      /* text-decoration-line: underline;
      text-decoration-style: dotted;
      text-decoration-color: #fc7fc2;
      text-decoration-thickness: 10px;
  
      text-underline-offset: 10px;  */
  
      border-bottom: 5px dotted #fc7fc2;
      padding-bottom: 2px;
    }
  }


  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* background-color: #222; */
    /* padding: 1rem; */
    color: black;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* background-color: rgb(176, 231, 255); */
    padding: 20px;
    z-index: 1000;
    box-sizing: border-box; /* så att padding räknas in i bredden */
    
  }

  @media only screen and (max-width: 1100px) {
    
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: rgba(255, 255, 255, 1);
      /* padding: 1rem; */
      color: black;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      /* background-color: rgb(176, 231, 255); */
      padding: 20px;
      z-index: 1000;
      box-sizing: border-box; /* så att padding räknas in i bredden */
      transition: top 0.3s; /* mjuk rörelse */
      
    }

    .navbar.hidden {
      top: -100px; /* skjut upp navbaren ur synfältet */
    }

  }

  @media only screen and (max-width: 640px) {
    
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: rgba(255, 255, 255, 1);
      /* padding: 1rem; */
      color: black;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      /* background-color: rgb(176, 231, 255); */
      padding: 10px;

      z-index: 1000;
      box-sizing: border-box; /* så att padding räknas in i bredden */
      transition: top 0.3s; /* mjuk rörelse */
      
    }

    .navbar.hidden {
      top: -100px; /* skjut upp navbaren ur synfältet */
    }

  }



  
  
  .logo {
    font-size: 1.5rem;
    font-weight: 500;
    color: black;
    /* color:rgb(255, 68, 0); */
    border-bottom: 5px dotted #fc7fc2;
    padding-bottom: 2px;
    text-decoration: none; /* 👈 Tar bort den svarta linjen */

    transition: 0.2s ease;
  }

  .logo:hover {
    opacity: 0.6;
  }

  
  
  .nav-links {
    list-style: none;
    display: flex; /* alltid flex */
    flex-direction: column;
    background-color: white;
    position: absolute;
    top: 60px;
    right: 1rem;
    width: 200px;
    padding: 1.5rem;
    gap: 1rem;
    border: 2px solid #444;
    border-radius: 5px;
    z-index: 10;
  
    opacity: 0;                /* startläge */
    transform: translateY(-10px);
    pointer-events: none;       /* går ej klicka när stängd */
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  
  .nav-links li a {
    color: black;
    text-decoration: none;
    font-weight: 500;
  
    /* Startläge för animation av länkar */
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  
  .nav-links.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  
  /* När menyn är aktiv – länkarna fade + slide in */
  .nav-links.active li a {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Sekvens: varje länk får en liten delay för rytmisk effekt */
  .nav-links.active li:nth-child(1) a { transition-delay: 0.05s; }
  .nav-links.active li:nth-child(2) a { transition-delay: 0.10s; }
  .nav-links.active li:nth-child(3) a { transition-delay: 0.15s; }
  .nav-links.active li:nth-child(4) a { transition-delay: 0.20s; }
  .nav-links.active li:nth-child(5) a { transition-delay: 0.25s; }
  /* Lägg till fler om du har fler länkar */
  

  .nav_link_individual {
   transition: 0.2s ease;
  }

  .nav_link_individual:hover {
    opacity: 0.6;
  }


  
  /* Hamburger meny - visas alltid */
  .hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
  }
  
  .hamburger span {
    width: 25px;
    height: 3px;
    background: black;
    display: block;
    transition: all 0.3s ease;
  }

/* Hamburger till "X" */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

  .image_container_1 {
    display: flex;
    justify-content: center;
    gap: 15px;
    
    margin-top: 50px;
    margin-bottom: 50px;
  }

  @media only screen and (max-width: 1100px) {
    .image_container_1 {
      display: flex;
      justify-content: center;
      
      margin-top: 30px;
      margin-bottom: 35px;

      padding-left: 20px;
      padding-right: 20px;
    }
  }

  @media only screen and (max-width: 640px) {
    .image_container_1 {
      display: flex;
      justify-content: center;
      
      margin-top: 20px;
      margin-bottom: 30px;

      padding-left: 10px;
      padding-right: 10px;
      
    }
  }



  .songkick_container_1 {
    display: flex;
    justify-content: center;
    gap: 15px;
    
    margin-top: 50px;
    margin-bottom: 50px;
    
  }

  @media only screen and (max-width: 1100px) {
    .songkick_container_1 {
      display: flex;
      justify-content: center;
      
      margin-top: 30px;
      margin-bottom: 35px;
      margin-left: 20px;
      margin-right: 20px;
    }
  }

  @media only screen and (max-width: 640px) {
    .songkick_container_1 {
      display: flex;
      justify-content: center;
      
      margin-top: 20px;
      margin-bottom: 30px;
      margin-left: 10px;
      margin-right: 10px;
      
    }
  }

  .image_container_2 {
    display: flex;
    justify-content: center;
    gap: 15px;
    
    margin-top: 50px;
    margin-bottom: 50px;
  }

  @media only screen and (max-width: 1100px) {
    .image_container_2 {
      display: flex;
      justify-content: center;
      
      margin-top: 30px;
      margin-bottom: 25px;
      margin-left: 20px;
      margin-right: 20px;
    }
  }

  @media only screen and (max-width: 640px) {
    .image_container_2 {
      display: flex;
      justify-content: center;
      
      margin-top: 10px;
      margin-bottom: 15px;
      margin-left: 10px;
      margin-right: 10px;
      
    }
  }

  .image_container_3 {
    display: flex;
    justify-content: center;
    gap: 15px;
    
    margin-top: 50px;
    margin-bottom: 40px;
  }

  @media only screen and (max-width: 1100px) {
    .image_container_3 {
      display: flex;
      justify-content: center;
      
      margin-top: 30px;
      margin-bottom: 15px;

      padding-left: 20px;
      padding-right: 20px;
    }
  }

  @media only screen and (max-width: 640px) {
    .image_container_3 {
      display: flex;
      justify-content: center;
      
      margin-top: 20px;
      margin-bottom: 12px;

      padding-left: 10px;
      padding-right: 10px;
      
    }
  }

  



  .top_padding_1 {
    padding-top: 110px;
  }

  @media only screen and (max-width: 1100px) {
    .top_padding_1 {
      padding-top: 80px;
    }
  }

  @media only screen and (max-width: 640px) {
    .top_padding_1 {
      padding-top: 80px;
    }
  }

  .bottom_padding_1 {
    padding-bottom: 10px;
  }

  @media only screen and (max-width: 1100px) {
    .bottom_padding_1 {
      padding-bottom: 20px;
    }
  }

  @media only screen and (max-width: 640px) {
    .bottom_padding_1 {
      padding-bottom: 15px;
    }
  }

  .image_style_1 {
    width: 100%;
    max-width: 1000px;

    height: auto; /* Viktigt så bilden håller proportionerna */
    display: block; /* Tar bort små mellanrum som inline-element kan orsaka */

    /* border: 5px solid rgb(84, 204, 220); */
    /* border-radius: 3px; */
  }

  
  /* @media only screen and (max-width: 1100px) {
    .image_style_1 {
    padding-left: 20px;
    padding-right: 20px;
    }
  }

  @media only screen and (max-width: 640px) {
    .image_style_1 {
    padding-left: 10px;
    padding-right: 10px;
    }
  } */





  .image_style_2 {
    width: 100%;
    max-width: 520px;

    /* width: 520px; */
    transition: 0.3s ease;
  }

  .image_style_2:hover {
    opacity: 0.7;
  }

  .placeholder_space_1 {
    width: 520px;
  }

  .image_border {
    border: 0.5px solid;
  }

  .video_style_1 {
    width: 100%;
    max-width: 1000px;
    height: 500px;
  }

  @media only screen and (max-width: 1100px) {
    .video_style_1 {

      height: 400px;
      /* padding-left: 20px;
      padding-right: 20px; */
    }
  }

  @media only screen and (max-width: 640px) {
    .video_style_1 {

      height: 250px;
      /* padding-left: 10px;
      padding-right: 10px; */
    }
  }



  .paragraph_container {
    /* background-color: #fc7fc2; */

    display: flex;
    justify-content: center;
    text-align: left;

    /* margin-left: 335px;
    margin-right: 335px; */




  }

  .paragraphs_1 {
    /* background-color: aqua; */
    font-size: 25px;
    width: 100%;
    max-width: 1000px;



  }

  @media only screen and (max-width: 1100px) {
    
    .paragraphs_1 {
      /* background-color: aqua; */
      font-size: 25px;
      width: 100%;
      max-width: 1000px;

      padding-left: 20px;
      padding-right: 20px;
  
  
  
    }
  }

  @media only screen and (max-width: 640px) {
    
    .paragraphs_1 {
      /* background-color: aqua; */
      font-size: 25px;
      width: 100%;
      max-width: 1000px;

      padding-left: 10px;
      padding-right: 10px;

  

  
  
  
    }
  }

  .paragraphs_2 {
    /* background-color:aqua; */
    font-size: 20px;
    margin-bottom: 15px;
    margin-top: 0px;

    width: 100%;
    max-width: 1000px;
  }

  @media only screen and (max-width: 1100px) {
    
    .paragraphs_2 {
      /* background-color:aqua; */
      font-size: 20px;
      margin-bottom: 15px;
      margin-top: 0px;
      padding-left: 20px;
      padding-right: 20px;
  
      width: 100%;
      max-width: 1000px;
    }
  }

  @media only screen and (max-width: 640px) {
    
    .paragraphs_2 {
      /* background-color:aqua; */
      font-size: 20px;
      margin-bottom: 15px;
      margin-top: 0px;
      padding-left: 10px;
      padding-right: 10px;
  
      width: 100%;
      max-width: 1000px;
    }
  }

  .button_container {
    /* margin-left: 300px;
    margin-right: 300px; */

    margin-top: 40px;
    margin-bottom: 40px;

    display: flex;
    justify-content: center;
    gap: 15px;

  }

  .button_style {
    
 
    font-weight: 500;
    font-size: 15pt;
    text-decoration: none;
    color:black;
  
    background-color: #fc7fc2;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 30px;

    transition: 0.3s ease;

  }

  .button_style:hover {
    background-color: #addbd7;
  }

  .songkick_temporary_style {
    width: 100px;
  }

  .songkick_container_temporary {
    display: flex;
    justify-content: center;
    gap: 15px;
    
    margin-top: 50px;
    margin-bottom: 50px;

    margin-left: 500px;
    margin-right: 500px;
  }

  figure {
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
    margin: 0; /* ta bort defaultmarginal på figure */
  }

  .footer {
    display: flex;
    flex-direction: column;   /* alltid kolumn */
    align-items: center;      /* centrera horisontellt */
    text-align: center;       /* centrera texten */
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    /* margin-top: 20px; */
    border: 5px dotted #fc7fc2;
    /* background-color: #d9d9d9; */
    font-weight: 500;
  }
  
  .footer-left {
    display: flex;
    flex-direction: column;   /* länkarna staplas alltid */
  }
  
  .footer-left a {
    margin: 5px 0;            /* lite luft mellan länkarna */
    text-decoration: none;
    color: #000;
  }
  

  
 

  .external-link {
    color: black;
    text-decoration: none;

  }
  
  .external-link:hover {
    color: #666;  /* gråare ton vid hover */
  }
  
  .external-icon {
    margin-left: 0.3em;
    vertical-align: middle;
  }

  .small_caption {
    font-size: 12px;

    display: block;
    max-width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;

    
  }

  @media only screen and (max-width: 1100px) {
    
    .small_caption {


      padding-left: 20px;
      padding-right: 20px;
  
  
  
    }
  }

  @media only screen and (max-width: 640px) {
    
    .small_caption {


      padding-left: 10px;
      padding-right: 10px;

  

  
  
  
    }
  }




  