.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  height: 54px;
}

header {
  background: #000;
  color: white;
  padding-bottom: 1rem;
  top: 0;
  position: fixed;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid #EDF000; /* or any color you want */
}

nav {
  text-align: center;
 
}

nav a {
  color: #fff;
  margin: 0 1rem;
  text-decoration: none;
}

nav .current {
  color: #2EA3F2;
  font-weight: bold;
}

nav :hover {
  color: #EDF000;
  transition: color 0.3s ease;
}

a {
  color: #EDF000;
  text-decoration: none;
  color:#EDF000
}

.classic-link {
  color: #2EA3F2;
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  color: #2EA3F2;
  transition: color 0.3s ease;
}

body {
  margin: 0;
  padding: 0;
  background-color: #000;
  font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif;
  color: #EDF000!important;
}

.footer-content {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-direction: row; /* stack on narrow screens */
  justify-content: space-between;
  gap: 1rem; /* optional spacing between columns */  
  background-color: #1E1E20;
}

@media (max-width: 1024px) {
  .footer-content {
    flex-direction: column; /* stack on narrow screens */
  }
}


.footer-content > div {
  padding: 4rem;
  flex: 1 1 33%;
  color: #fff;
}

footer {
  background-color: #000;
  color: #fff;
  padding: 2rem 0;
  background-color: #1E1E20;
}


.parallax1 {
  /* The image used */
  background-image: url("/images/parallax1.jpg");
  background-color: rgba(0, 0, 0, 0.6); /* dark layer */
  background-blend-mode: darken; /* or multiply, overlay, etc. */
  /* Full height */
  height: 598px;
  display: flex;
  justify-content: space-between;
  gap: 1rem; /* optional spacing between columns */  

  justify-content: center;
  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif !important;
  color: #FFFFFF !important;
  position:relative;
}

.parallax1 div {
  padding: 4rem;
  color: #EDF000!important;
  max-width: 1024px;
}

.parallax1 > div > h2 {
  font-size: 76px;
  font-weight: 700 !important;
  text-shadow: 1px 1px 3px rgba(0, 0, 0);
  text-align: center;
  z-index:2;
  position:relative
}

.parallax1 > div > h3 {
  position: relative;
  z-index:2;
  font-size: 36px;
  font-weight: 700 !important;
  text-shadow: 1px 1px 3px rgba(0, 0, 0);
  text-align: center;
}

.parallax1 > div > p {
  font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif !important;
  color:white;
  position: relative;
  z-index:2;
  font-size: 16px;
}

.parallax1 > div > a {
  background-color: #EDF000;
  text-align: center;
  color: white;
  border: none;
  padding: 4px 5px;
  font-size: 16px;
  width: 50%;
  display: block;
  margin: 0 auto;
  cursor: pointer;
  position: relative;
  z-index: 2;
  font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif !important;
  text-shadow: 1px 1px 3px rgba(0, 0, 0);
  font-size: 36px;
  border-radius: 4px;
}

@media (max-width: 800px) {
  .logo {
    height: 20px;
  }

  .parallax1 {
    background-attachment: scroll;
    height: auto;
    padding: 2rem 1rem;
    flex-direction: column;
  }

  .parallax1 div {
    width: 100%;
    padding: 2rem 1rem;
  }

  .parallax1 div h2 {
    font-size: 42px;
  }

  .parallax1 h3 {
    font-size: 24px;
  }

  .parallax1 a {
    font-size: 24px;
    width: 100%;
  }
}


.facebook-icon {
  color: white;                  /* the "f" */
  background-color: #1877F2;     /* Facebook blue */
  padding: 10px;                 /* spacing inside the circle */
  border-radius: 50%;            /* makes it circular */
  font-size: 24px;
  width: 15px;
  height: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.facebook-icon:hover {
  background-color: #145dbf;
}

.instagram-icon {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: color 0.3s ease;
}

.instagram-icon:hover {
  text-shadow: 0 0 8px #E1306C, 0 0 16px #E1306C, 0 0 24px #E1306C;
}



.breaker {
  /* The image used */
  background-color: black;

  /* Full height */
  height: 298px;
  display: flex;
  justify-content: space-between;
  gap: 1rem; /* optional spacing between columns */  

  justify-content: center;
  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif !important;
  color: #FFFFFF !important;
  position:relative;
}

.breaker div {
  padding: 4rem;
  color: #EDF000!important;
  max-width: 1024px;
}

.breaker > div > h2 {
  font-size: 76px;
  font-weight: 700 !important;
  text-shadow: 1px 1px 3px rgba(0, 0, 0);
  text-align: center;
  z-index:2;
  position:relative
}

.breaker > div > h3 {
  position: relative;
  z-index:2;
  font-size: 36px;
  font-weight: 700 !important;
  text-shadow: 1px 1px 3px rgba(0, 0, 0);
  text-align: center;
}

.breaker > div > p {
  font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif !important;
  color:white;
  position: relative;
  z-index:2;
  font-size: 16px;
  text-align: center;
}

.breaker > div > a {
  background-color: #EDF000;
  text-align: center;
  color: white;
  border: none;
  padding: 4px 5px;
  font-size: 16px;
  width: 50%;
  display: block;
  margin: 0 auto;
  cursor: pointer;
  position: relative;
  z-index: 2;
  font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif !important;
  text-shadow: 1px 1px 3px rgba(0, 0, 0);
  font-size: 36px;
  border-radius: 4px;
}

.wrapper {
  margin: 0 auto;
  max-width: 800px;
  display: flex;
  flex-direction: row; /* default: side-by-side */
  flex-wrap: wrap;  
}

.left {
  width: 50%;
  height: auto; /* adjust as needed */
}

.left > p {
    font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif !important;
    color:white;
    font-size: 16px;
    display:block;
}

.right {
  background-image: url('/images/girls.png');
  background-size: cover;
  background-position: center;
  width: 50%;
  height: 450px; /* adjust as needed */
}

@media (max-width: 800px) {
  .wrapper {
    flex-direction: column; /* stack on narrow screens */
  }

  .left,
  .right {
    width: 100%; /* full width when stacked */
    height: 450px; /* optional: let height adjust naturally */
  }
}

#omoss {
  scroll-margin-top: 110px;
}

#kosthold {
  scroll-margin-top: 110px;
}

/*.desktop-only {
  display: none;
}

@media screen and (min-width: 1024px) {
  .desktop-only {
    display: block; 
  }
}*/