@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}


h1 {
  font-size: 2rem;
  margin-bottom: 0.5em;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5em;
  font-weight: 600;
  line-height: 1.3;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5em;
  font-weight: 600;
  line-height: 1.3;
}

h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5em;
  font-weight: 500;
  line-height: 1.4;
}

h5 {
  font-size: 1rem;
  margin-bottom: 0.5em;
  font-weight: 500;
  line-height: 1.4;
}

h6 {
  font-size: 0.875rem;
  margin-bottom: 0.5em;
  font-weight: 500;
  line-height: 1.4;
}

/* Hide scrollbar for all elements */
/* For Chrome, Safari and Opera */
::-webkit-scrollbar {
  display: none;
}

/* For IE, Edge and Firefox */
html,
body {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
  overflow-x: hidden;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: #D50000;
  position: fixed;
  width: 100%;
  margin-bottom: 40px;
  top: 0;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar>figure.logo {
  display: flex;
  align-items: center;
}

.logo-image {
  height: 55px;
  width: auto;
  object-fit: contain;
}

section.glass-background {
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  padding: 15px 30px;
  display: flex;
  margin: 0 auto;
}

section.nav-center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  color: white;
  padding: 8px 12px;
  transition: color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  border-radius: 20px;
  white-space: nowrap;
}

.nav-links a:hover {
  background-color: white;
  color: #D50000;
}

.nav-links a.active {
  background-color: white;
  color: #D50000;
}

.nav-links .divider {
  height: 24px;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.4);
  margin: 0 15px;
}

.hamburger {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  margin-right: 10px;
  position: relative;
  width: 35px;
  height: 35px;
  padding: 5px;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
}

.hamburger.open {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  border: 2px solid white;
}

.hamburger>span {
  width: 25px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
  position: absolute;
}

.hamburger span:nth-child(1) {
  transform: translateY(-8px);
}

.hamburger span:nth-child(2) {
  transform: translateY(0px);
}

.hamburger span:nth-child(3) {
  transform: translateY(8px);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg);
  width: 20px;
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg);
  width: 20px;
}

.mobile-menu {
  position: fixed;
  top: 55px;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: #d50000f2;
  backdrop-filter: blur(10px);
  padding: 20px;
  z-index: 999;
  transition: left 0.3s ease;
}

.mobile-menu.open {
  left: 0;
}

.mobile-menu>ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu>ul>li {
  margin: 15px 0;
}

.mobile-menu>ul>li>a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  display: block;
  padding: 10px;
  text-align: center;
  border-radius: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.mobile-menu ul li a:hover {
  background-color: white;
  color: #D50000;
}

.mobile-menu ul li a.active {
  background-color: white;
  color: #D50000;
}

@media (max-width: 1000px) {
  .nav-center {
    display: none;
  }

  .navbar {
    padding: 10px 15px;
  }

  .logo-image {
    height: 45px;
  }

  .glass-background {
    display: none !important;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }
}

@media (min-width: 1001px) {
  .hamburger {
    display: none;
  }

  .mobile-menu {
    display: none;
  }

  .nav-center {
    display: flex;
  }
}

.journey-section {
  padding: 30px;
  border-radius: 15px;
  width: 100%;
  padding-top: 100px;
  max-width: 1800px;
  margin: 30px auto;
  padding-left: 20px;
  padding-right: 20px;
}

.journey-section h1 {
  text-align: center;
  color: #000000;
  font-weight: bold;
}

.journey-path {
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-radius: 10px;
  width: 100%;
}

.journey-flow {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 30px 20px;
  width: 100%;
  padding: 20px 0;
  position: relative;
  margin: 0 auto;
  max-width: 1800px;
}

.journey-step:nth-child(1) {
  grid-area: 1 / 1 / 2 / 2;
}

.journey-step:nth-child(2) {
  grid-area: 2 / 2 / 3 / 3;
}

.journey-step:nth-child(3) {
  grid-area: 1 / 3 / 2 / 4;
}

.journey-step:nth-child(4) {
  grid-area: 2 / 4 / 3 / 5;
}

.journey-step:nth-child(5) {
  grid-area: 1 / 5 / 2 / 6;
}

.journey-step:nth-child(6) {
  grid-area: 2 / 6 / 3 / 7;
}

.journey-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 100%;
}

.arrow {
  width: 70px;
  height: 70px;
  position: absolute;
}

.journey-step:nth-child(1) .down-arrow {
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  margin-top: 15px;
}

.journey-step:nth-child(3) .down-arrow {
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  margin-top: 15px;
}

.journey-step:nth-child(5) .down-arrow {
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  margin-top: 15px;
}

.journey-step:nth-child(2) .up-arrow {
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  margin-bottom: 15px;
}

.journey-step:nth-child(4) .up-arrow {
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  margin-bottom: 15px;
}

.journey-step:nth-child(6) .up-arrow {
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  margin-bottom: 15px;
}

.up-arrow,
.down-arrow {
  display: none;
  z-index: 10;
}

.down-arrow {
  margin-top: 10px;
}

.step-card {
  background: linear-gradient(135deg, #D50000, #FF5252);
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  width: 100%;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 0;
}

.step-card h2 {
  color: white;
  margin-bottom: 10px;
}

.step-card p {
  color: white;
}

@media (min-width: 768px) and (max-width: 1200px) {
  .journey-flow {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 30px;
  }

  .journey-step:nth-child(1) {
    grid-area: 1 / 1 / 2 / 2;
  }

  .journey-step:nth-child(2) {
    grid-area: 1 / 2 / 2 / 3;
  }

  .journey-step:nth-child(3) {
    grid-area: 1 / 3 / 2 / 4;
  }

  .journey-step:nth-child(4) {
    grid-area: 2 / 1 / 3 / 2;
  }

  .journey-step:nth-child(5) {
    grid-area: 2 / 2 / 3 / 3;
  }

  .journey-step:nth-child(6) {
    grid-area: 2 / 3 / 3 / 4;
  }

  .up-arrow,
  .down-arrow,
  .arrow {
    display: none !important;
  }

  .journey-step:nth-child(1) .down-arrow,
  .journey-step:nth-child(2) .up-arrow,
  .journey-step:nth-child(3) .down-arrow,
  .journey-step:nth-child(4) .up-arrow,
  .journey-step:nth-child(5) .down-arrow,
  .journey-step:nth-child(6) .up-arrow {
    display: none !important;
  }

  .journey-step {
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .journey-flow {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 10px 5px;
  }

  .journey-step {
    width: 100%;
    margin-bottom: 20px;
    position: relative;
  }

  .journey-step:last-child {
    margin-bottom: 0;
  }

  .up-arrow,
  .down-arrow,
  .arrow {
    display: none !important;
  }

  .journey-step:not(:last-child)::after {
    display: none;
  }

  .step-card {
    height: 100%;
    min-height: 150px;
  }
}

.vanligafragor {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.vanligafragor h2 {
  text-align: center;
  margin-bottom: 30px;
}

.fragor {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.innehall {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.innehall:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.fraga {
  padding: 18px 25px;
  background-color: #f9f9f9;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  width: 100%;
}

.fraga::after {
  content: '+';
  font-size: 1.5rem;
  color: #D50000;
  position: absolute;
  right: 25px;
  transition: transform 0.3s ease;
}

details[open] .fraga::after {
  content: '-';
  transform: rotate(180deg);
}

.svar {
  padding: 20px 25px;
  background-color: white;
  line-height: 1.6;
}

.svar p {
  margin: 0;
  color: #333;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .vanligafragor {
    padding: 30px 15px;
    max-width: 100%;
  }

  .vanligafragor h2 {
    font-size: 1.75rem;
    margin-bottom: 25px;
  }

  .fraga {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .svar {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .vanligafragor {
    padding: 25px 10px;
  }

  .vanligafragor h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .fragor {
    gap: 15px;
  }

  .fraga {
    padding: 12px 15px;
    font-size: 0.95rem;
  }

  .fraga::after {
    right: 15px;
    font-size: 1.3rem;
  }

  .svar {
    padding: 12px 15px;
  }

  .svar p {
    font-size: 0.9rem;
  }
}

.erbjudande {
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.erbjudande h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.container {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

.priskortcont {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  flex: 1;
  margin-right: 1rem;
}

.priskort {
  background: linear-gradient(135deg, #D50000, #FF5252);
  border-radius: 12px;
  padding: 2.5rem;
  width: 100%;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 350px;
}

.priskort h2 {
  margin-bottom: 1rem;
  color: #FFFFFF;
}

.priskort .beskrivning {
  margin-bottom: 1.5rem;
  color: #FDECEC;
  flex-grow: 1;
}

.priskort .pris {
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFFFFF;
}

.priskort .bokapriscont {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.boka {
  display: inline-block;
  background-color: #FFFFFF;
  color: #D50000;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  text-align: center;
  transition: background-color 0.3s ease;
}

.boka:hover {
  background-color: #FFEBEE;
}

.alla {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  width: 180px;
  flex-shrink: 0;
}

.alla a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 350px;
  padding: 1.5rem;
  background-color: #000000;
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 500;
  transition: background-color 0.3s ease;
  width: 100%;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.alla a:hover {
  background-color: #212121;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    gap: 1.5rem;
  }

  .priskortcont {
    flex-direction: column;
    align-items: center;
    margin-right: 0;
    width: 100%;
  }

  .priskort {
    max-width: 100%;
  }

  .alla {
    margin-top: 0;
    width: 100%;
  }

  .alla a {
    height: auto;
    padding: 1.5rem;
    width: 100%;
  }
}

.footer {
  background-color: #000000;
  color: white;
  padding: 50px 0 30px;
  margin-top: 60px;
  border-top: 5px solid #ffffff;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-section {
  padding: 0 10px;
}

.footer-section h2,
.footer-section h4 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 600;
  color: #ffffff;
  border-bottom: 2px solid #D50000;
  padding-bottom: 8px;
  display: inline-block;
}

.footer-section p {
  margin-bottom: 12px;
  line-height: 1.6;
}

span {
  color: #D50000;
}

.lankar {
  list-style: none;
  padding: 0;
}

.lankar li {
  margin-bottom: 12px;
}

.lankar a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.lankar a:hover {
  opacity: 1;
  text-decoration: underline;
  color: #D50000;
}

.contact-info {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  line-height: 1.6;
  padding-left: 5px;
}

.contact-info i {
  margin-right: 12px;
  width: 16px;
  text-align: center;
}

.oppet {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  width: 100%;
  padding-left: 5px;
}

.dag {
  font-weight: 500;
  padding-right: 15px;
  margin-bottom: 5px;
}

.tid {
  text-align: right;
  margin-bottom: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 25px;
  margin-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.9rem;
  color: #ffffff;
}

.footer-bottom .copyright {
  display: inline-block;
}

@media (max-width: 1024px) {
  .footer-container {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-section:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 40px 0 20px;
    margin-top: 40px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-section:last-child {
    grid-column: span 1;
  }

  .footer-section h2 {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }

  .oppet {
    gap: 2px 5px;
  }

  .footer-bottom {
    padding-top: 20px;
    margin-top: 20px;
    font-size: 0.8rem;
  }
}