* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #0f0f0f;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

.navbar {
  position: fixed;

  top: 0;
  left: 0;

  width: 100%;

  padding: 25px 60px;

  display: flex;

  justify-content: space-between;
  align-items: center;

  z-index: 1000;

  background: rgba(0,0,0,0.4);

  backdrop-filter: blur(10px);
}

.logo {
  color: white;

  font-size: 30px;

  font-weight: bold;
}

.desktop-menu {
  display: flex;

  gap: 40px;
}

.desktop-menu a {
  color: white;

  font-size: 18px;

  transition: 0.3s;
}

.desktop-menu a:hover {
  color: #ff6600;
}

.menu-btn {
  display: none;

  color: white;

  font-size: 35px;

  cursor: pointer;
}

.hero {
  height: 100vh;

  background:
    linear-gradient(
      rgba(0,0,0,0.55),
      rgba(0,0,0,0.55)
    ),
    url("img/frontpage.png");

  background-size: cover;
  background-position: center;

  display: flex;

  justify-content: center;
  align-items: center;

  text-align: center;
}

.hero-content h1 {
  font-size: 82px;

  color: white;

  font-weight: 900;

  letter-spacing: -3px;
}

.hero-content p {
  color: white;

  font-size: 24px;

  margin-top: 20px;

  opacity: 0.9;
}

.hero-btn {
  display: inline-block;

  margin-top: 35px;

  padding: 18px 42px;

  background: #ff6600;

  color: white;

  border-radius: 14px;

  font-size: 20px;

  font-weight: bold;

  transition: 0.3s;
}

.hero-btn:hover {
  transform: scale(1.06);

  background: #ff8533;
}

.courses {
  padding: 120px 60px;

  background: #f5f5f5;
}

.courses h2 {
  text-align: center;

  font-size: 54px;

  margin-bottom: 60px;

  color: #111;
}

.course-grid {
  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(260px, 1fr));

  gap: 30px;
}

.course-card {
  background: white;

  padding: 40px;

  border-radius: 24px;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.08);

  transition: 0.3s;
}

.course-card:hover {
  transform: translateY(-10px);
}

.course-card h3 {
  font-size: 30px;

  margin-bottom: 20px;

  color: #111;
}

.course-card p {
  color: #555;

  line-height: 1.6;
}

.mobile-menu {
  position: fixed;

  top: 0;
  right: -100%;

  width: 320px;
  height: 100vh;

  background: white;

  z-index: 2000;

  padding: 100px 40px;

  display: flex;
  flex-direction: column;

  gap: 30px;

  transition: 0.4s;
}

.mobile-menu a {
  color: black;

  font-size: 24px;
}

.close-btn {
  position: absolute;

  top: 20px;
  right: 25px;

  font-size: 40px;

  cursor: pointer;
}

.page-hero {

  min-height: 60vh;

  background-image: url("img/frontpage2.png");

  background-size: cover;

  background-position: center;

  display: flex;

  flex-direction: column;

  justify-content: center;

  align-items: center;

  text-align: center;

  color: white;

  padding: 120px 40px 60px;

  border-radius: 0 0 40px 40px;

}

.page-hero h1 {
  font-size: 80px;

  margin-bottom: 20px;
}

.page-hero p {
  font-size: 24px;

  opacity: 0.8;
}

.employees {
  padding: 120px 60px;

  background: #f5f5f5;
}

.employee-grid {
  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(280px, 1fr));

  gap: 35px;
}

.employee-card {
  background: white;

  border-radius: 24px;

  overflow: hidden;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.08);

  transition: 0.3s;
}

.employee-card:hover {
  transform: translateY(-10px);
}

.employee-card img {
  width: 100%;

  height: 340px;

  object-fit: cover;

  display: block;
}

.employee-info {
  padding: 30px;
}

.employee-info h3 {
  font-size: 30px;

  color: #111;

  margin-bottom: 10px;
}

.employee-info h4 {
  color: #ff6600;

  font-size: 20px;

  margin-bottom: 15px;
}

.employee-info p {
  color: #555;

  font-size: 16px;

  line-height: 1.6;

  margin-bottom: 20px;
}

.employee-contact {
  display: flex;

  flex-direction: column;

  gap: 10px;

  font-size: 16px;

  color: #222;
}

.about-section {
  padding: 120px 60px 60px;

  background: #f5f5f5;
}

.about-container {
  max-width: 1400px;

  margin: 0 auto;

  background: white;

  border-radius: 24px;

  padding: 50px;

  display: flex;

  gap: 50px;

  align-items: center;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.08);
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 54px;

  color: #111;

  margin-bottom: 30px;
}

.about-text p {
  font-size: 18px;

  line-height: 1.9;

  color: #555;

  margin-bottom: 25px;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;

  border-radius: 24px;

  object-fit: cover;
}

@media (max-width: 900px) {

  .desktop-menu {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .hero-content h1 {
    font-size: 56px;
  }

  .hero-content p {
    font-size: 20px;
  }

  .navbar {
    padding: 20px 30px;
  }

  .page-hero h1 {
    font-size: 52px;
  }

  .employees {
    padding: 80px 20px;
  }

  .about-section {
    padding: 80px 20px;
  }

  .about-container {
    flex-direction: column;

    padding: 30px;
  }

  .about-text h2 {
    font-size: 40px;
  }

}
.about-section {
  padding: 140px 60px 80px;

  background: #f5f5f5;
}

.about-container {
  max-width: 1400px;

  margin: 0 auto 120px auto;

  background: white;

  border-radius: 30px;

  padding: 50px;

  display: flex;

  gap: 50px;

  align-items: center;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.08);
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 64px;

  color: #111;

  margin-bottom: 35px;

  line-height: 1.1;
}

.about-text p {
  font-size: 20px;

  line-height: 1.9;

  color: #555;

  margin-bottom: 30px;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;

  height: 500px;

  object-fit: cover;

  border-radius: 24px;
}

.employees {
  padding: 40px 60px 120px;

  background: #f5f5f5;
}

.employees h2 {
  font-size: 52px;

  margin-bottom: 40px;

  color: #111;
}

.employee-grid {
  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(280px, 1fr));

  gap: 35px;
}

.employee-card {
  background: white;

  border-radius: 24px;

  overflow: hidden;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.08);
}

.employee-card img {
  width: 100%;

  height: 340px;

  object-fit: cover;

  display: block;
}

.employee-info {
  padding: 25px;
}

.employee-info h3 {
  font-size: 32px;

  margin-bottom: 10px;

  color: #111;
}

.employee-info h4 {
  color: #ff6600;

  font-size: 20px;

  margin-bottom: 15px;
}

.employee-contact {
  margin-top: 20px;

  display: flex;

  flex-direction: column;

  gap: 10px;

  font-size: 16px;

  color: #222;
}
.footer {
  position: relative;

  background: #ff6600;

  padding: 140px 80px 70px;

  overflow: hidden;
}

.footer-wave {
  position: absolute;

  top: -70px;
  left: 0;

  width: 100%;
  height: 140px;

  background: #f5f5f5;

  border-radius: 0 0 50% 50%;
}

.footer-container {
  position: relative;

  z-index: 2;

  max-width: 1400px;

  margin: auto;

  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(260px, 1fr));

  gap: 60px;
}

.footer-box h2 {
  color: white;

  font-size: 48px;

  margin-bottom: 20px;
}

.footer-box h3 {
  color: white;

  font-size: 34px;

  margin-bottom: 25px;
}

.footer-box p {
  color: white;

  font-size: 20px;

  line-height: 1.8;

  margin-bottom: 18px;
}

.footer-box span {
  color: white;

  font-size: 18px;

  opacity: 0.8;
}

.footer-box a {
  display: block;

  color: white;

  font-size: 20px;

  margin-bottom: 18px;

  transition: 0.3s;
}

.footer-box a:hover {
  opacity: 0.7;
}

.footer-brand {
  padding-right: 40px;
}

@media (max-width: 900px) {

  .footer {
    padding: 120px 30px 60px;
  }

  .footer-box h2 {
    font-size: 38px;
  }

  .footer-box h3 {
    font-size: 28px;
  }

  .footer-box p,
  .footer-box a {
    font-size: 18px;
  }

}
.contact-form-section {
  padding: 40px 60px 140px;

  background: #f5f5f5;
}

.contact-form-box {
  max-width: 1400px;

  margin: auto;

  background: white;

  border-radius: 30px;

  padding: 60px;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.08);
}

.contact-form-box h2 {
  font-size: 54px;

  color: #111;

  margin-bottom: 40px;

  text-align: center;
}

.form-row {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 40px;
}

.form-group {
  display: flex;

  flex-direction: column;
}

.form-group label {
  font-size: 18px;

  margin-bottom: 12px;

  color: #222;
}

.form-group input,
.form-group textarea {
  width: 100%;

  padding: 18px 20px;

  border: 2px solid #eee;

  border-radius: 16px;

  font-size: 17px;

  margin-bottom: 25px;

  outline: none;
}

.form-group textarea {
  height: 250px;

  resize: none;
}

.contact-form-box button {
  display: block;

  margin: 20px auto 0;

  padding: 18px 50px;

  background: #ff6600;

  color: white;

  border: none;

  border-radius: 16px;

  font-size: 20px;

  font-weight: bold;

  cursor: pointer;

  transition: 0.3s;
}

.contact-form-box button:hover {
  background: #ff8533;

  transform: scale(1.03);
}

@media (max-width: 900px) {

  .form-row {
    grid-template-columns: 1fr;
  }

}
.booking-frame {

  width: 100%;

  max-width: 1400px;

  margin: 60px auto 0;

  padding: 0 40px;
}

.page-hero {

  height: auto !important;

  padding-bottom: 100px;
}

.booking-frame {

  width: 100%;

  max-width: 1400px;

  margin: 60px auto;

  padding: 0 40px;
}

.booking-frame iframe {

  width: 100%;

  min-height: 1400px;

  border: none;

  border-radius: 30px;

  background: white;
}

.priser-page {

  background: #f5f5f5;

  color: #07152f;

  min-height: 100vh;

  padding: 80px 60px 140px;

}

.klasse-knapper {
  max-width: 1200px;
  margin: 0 auto 40px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.klasse-knapper button {
  padding: 14px 24px;
  border-radius: 14px;
  border: 1px solid #ccd7e6;
  background: white;
  color: #07152f;
  font-weight: 700;
  cursor: pointer;
}

.klasse-knapper button:hover {
  background: #f66204;
  color: white;
  border-color: #f66204;
}

.laerere-section,
.tabs-priser {
  max-width: 1200px;
  margin: 0 auto 60px;
}

.laerere-section h2,
.tabs-priser h2 {
  font-size: 36px;
  margin-bottom: 30px;
  color: #07152f;
}

.laerere-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.laerer-card {
  background: white;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.laerer-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.laerer-card h3,
.laerer-card p {
  padding: 0 24px;
}

.laerer-card h3 {
  margin-top: 24px;
  font-size: 28px;
}

.laerer-card p {
  margin: 12px 0 26px;
}

.tabs-api-wrapper {
  background: white;
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.vilkar-hero {

  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  border-radius: 30px;
  margin-bottom: 60px;

}



.vilkar-overlay {

  position: absolute;
  inset: 0;
;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  color: white;

  padding: 20px;

}

.vilkar-overlay h1 {

  font-size: 72px;
  margin-bottom: 20px;

}

.vilkar-overlay p {

  font-size: 24px;
  max-width: 700px;
  line-height: 1.5;

}

.vilkar-content {

  max-width: 1200px;

  margin: 40px auto 80px;

  background: white;

  padding: 60px;

  border-radius: 35px;

  position: relative;

  z-index: 10;

  box-shadow:
    0 20px 60px rgba(0,0,0,0.25);

}

.vilkar-content h2 {

  font-size: 54px;

  margin-bottom: 40px;

  color: #111;

}

.vilkar-content p {

  font-size: 20px;

  line-height: 1.9;

  color: #444;

  margin-bottom: 30px;

}

.gavekort-page {
    background: #f5f5f5;
    min-height: 100vh;
}

.gavekort-hero {
    position: relative;
    height: 420px;
    overflow: hidden;
}

.gavekort-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gavekort-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    color: white;
}

.gavekort-overlay h1 {
    font-size: 80px;
    margin-bottom: 20px;
}

.gavekort-overlay p {
    font-size: 24px;
}

.gavekort-wrapper {
    max-width: 1200px;
    margin: -80px auto 120px;
    padding: 40px;
    background: #f4f4f4;
    border-radius: 30px;
    position: relative;
    z-index: 5;
}
.nyheter-page {

  background: #f5f5f5;

  min-height: 100vh;

  padding-top: 120px;

}

#api-prices {
    max-width: 1200px;
    margin: 40px auto;
    font-family: "Segoe UI", sans-serif;
}

#api-prices .card,
#api-prices .accordion-item,
#api-prices table {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

#api-prices td,
#api-prices th {
    padding: 18px 22px;
    font-size: 18px;
    line-height: 1.5;
}

#api-prices strong,
#api-prices b {
    font-weight: 700;
}

#api-prices .accordion-button {
    font-size: 22px;
    font-weight: 700;
    padding: 24px;
}

#api-prices tr:nth-child(even) {
    background: #fafafa;
}

#api-prices {
    color: #111;
}

.gavekort-content {
    max-width: 1200px;
    margin: 60px auto;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

#api-giftcard {
    font-size: 15px;
}

#api-giftcard input,
#api-giftcard select,
#api-giftcard textarea {
    border-radius: 10px !important;
    padding: 12px !important;
}

#api-giftcard button {
    border-radius: 12px !important;
    font-weight: 600;
}

#api-giftcard img {
    border-radius: 16px;
}

body {
    margin: 0;
    background: #efefef;
}

main {
    margin-bottom: 0;
    padding-bottom: 0;
}

.gavekort-content {
    margin-bottom: 0;
}

.footer {
    margin-top: 0;
}

.booking-page {
    max-width: 1200px;
    margin: 60px auto;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

#api-calendar {
    max-width: 100%;
    margin: 0 auto;
}

#api-calendar table {
    font-size: 14px;
}

#api-calendar select {
    border-radius: 10px !important;
    padding: 10px !important;
}

#api-calendar button {
    border-radius: 10px !important;
}

#api-calendar .calendar-day {
    border-radius: 12px;
}

#api-calendar aside {
    max-height: 600px;
}

.klasse-knapper {
display: flex;
gap: 14px;
flex-wrap: wrap;
margin-bottom: 40px;
}

.klasse-knapper button {

background: white;
border: 1px solid #d8e0ea;
padding: 14px 26px;
border-radius: 14px;
font-weight: 700;
cursor: pointer;
font-size: 16px;
transition: 0.3s;

}

.klasse-knapper button:hover {

background: #f66204;
color: white;
border-color: #f66204;

}


/* ===== TABS ===== */

#api-prices {
    font-family: "Segoe UI", sans-serif !important;
}

#api-prices .panel {
    border-radius: 18px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08) !important;
    margin-bottom: 25px !important;
}

#api-prices .panel-heading {
    background: #f5f5f5 !important;
    padding: 18px 24px !important;
}

#api-prices strong {
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #07152f !important;
}

/* ===== NY PRISER-SIDE ===== */

.priser-filter,
.price-section {
  max-width: 1200px;
  margin: 0 auto 50px;
}

.priser-filter h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #07152f;
}

.klasse-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.klasse-filter button {
  padding: 14px 26px;
  border: 1px solid #f66204;
  background: white;
  color: #07152f;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.3s;
}

.klasse-filter button:hover {
  background: #f66204;
  color: white;
}

.teacher-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 24px;
  margin-bottom: 20px;
}

.teacher-tags span {
  background: #f66204;
  color: white;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.price-section {
  display: grid;
  gap: 30px;
}

.price-card {
  background: white;
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.price-card h2 {
  font-size: 32px;
  margin-bottom: 25px;
  color: #07152f;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 18px 0;
  border-bottom: 1px solid #e6edf4;
  font-size: 18px;
  color: #07152f;
}

.price-row span {
  font-weight: 600;
}

.price-row strong {
  font-size: 22px;
  font-weight: 900;
  white-space: nowrap;
  color: #07152f;
}

.package-box {
  margin-top: 30px;
  padding: 28px;
  border-radius: 20px;
  background: #fff7f0;
  border: 1px solid #ffd2b3;
}

.package-box h3 {
  font-size: 26px;
  margin-bottom: 10px;
  color: #07152f;
}

.package-box > strong {
  display: block;
  font-size: 34px;
  font-weight: 900;
  color: #f66204;
  margin-bottom: 15px;
}

.package-box p {
  font-weight: 700;
  margin-bottom: 10px;
}

.package-box ul {
  list-style: none;
  padding-left: 0;
}

.package-box li {
  padding: 6px 0;
  font-size: 17px;
}

.package-box li::before {
  content: "✓ ";
  color: #f66204;
  font-weight: 900;
}

@media (max-width: 700px) {
  .price-row {
    flex-direction: column;
    gap: 8px;
  }

  .price-row strong {
    font-size: 20px;
  }

  .price-card {
    padding: 24px;
  }
}