.slider {
  width: 100%;
  min-height: 80vh;
  border-radius: 10px;
  overflow: hidden;
}

.slides {
  width: 500%;
  height: 500px;
  display: flex;
}

.slides input {
  display: none;
}

.slide {
  width: 20%;
  transition: 2s;
}

@keyframes zoom {
  0% {
    transform: scale(1.1);
  }

  15% {
    transform: scale(1);
  }

  85% {
    transform: scale(1);
  }

  100% {
    transform: scale(1);
  }
}

.slide img {
  width: 100%;
  min-height: auto;

}

/*css for manual slide navigation*/

.navigation-manual {
  position: relative;
  width: 800px;
  margin-top: -40px;
  display: flex;
  justify-content: center;
  visibility: hidden;
}

.manual-btn {
  border: 2px solid #40D3DC;
  padding: 5px;
  border-radius: 10px;
  cursor: pointer;
  transition: 1s;
  visibility: hidden;
}

.manual-btn:not(:last-child) {
  margin-right: 40px;
}

.manual-btn:hover {
  background: #40D3DC;
}

#radio1:checked~.first {
  margin-left: 0;
}

#radio2:checked~.first {
  margin-left: -20%;
}

#radio3:checked~.first {
  margin-left: -40%;
}

#radio4:checked~.first {
  margin-left: -60%;
}

/*css for automatic navigation*/

.navigation-auto {
  position: absolute;
  display: flex;
  width: 800px;
  justify-content: center;
  margin-top: 460px;
  visibility: hidden;
}

.navigation-auto div {
  border: 2px solid #40D3DC;
  padding: 5px;
  border-radius: 10px;
  transition: 1s;
}

.navigation-auto div:not(:last-child) {
  margin-right: 40px;
}

#radio1:checked~.navigation-auto .auto-btn1 {
  background: #40D3DC;
}

#radio2:checked~.navigation-auto .auto-btn2 {
  background: #40D3DC;
}

#radio3:checked~.navigation-auto .auto-btn3 {
  background: #40D3DC;
}

#radio4:checked~.navigation-auto .auto-btn4 {
  background: #40D3DC;
}




@import url('https://fonts.cdnfonts.com/css/gotham');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

@font-face {
  font-family: 'Broadsheet LDO';
  src: url('../assets/fonts/broadsheet/Broadsheet LDO.ttf') format('truetype');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Broadsheet LDO';
  src: url('../assets/fonts/broadsheet/Broadsheet LDO Italic.ttf') format('truetype');
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Broadsheet LDO';
  src: url('../assets/fonts/broadsheet/Broadsheet LDO Bold.ttf') format('truetype');
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'Broadsheet LDO';
  src: url('../assets/fonts/broadsheet/Broadsheet LDO Bold Italic.ttf') format('truetype');
  font-style: italic;
  font-weight: 700;
  font-display: swap;
}

:root {
  --font-body: 'Gotham light', sans-serif;
  --font-title: 'Broadsheet LDO', 'Times New Roman', serif;
}

body {
  line-height: 1.5;
  font-family: var(--font-body);
}

html {
  scroll-behavior: smooth;
}

#content-start {
  scroll-margin-top: 90px;
}

/* Reusable title font utility */
.font-title {
  font-family: var(--font-title);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.dropbtn {
  color: white;
  text-decoration: none;
  z-index: 100;
  font-size: 17px;
}

/* Title typography: nav, section/page titles, and footer headings */
.dropbtn,
.nav-links a,
.nav-link,
#pageName2 h1,
.heading h1,
.heading h2,
.headingTeam h1,
.headingTeam2 h1,
.coming-soon__title,
.legal__title,
.footer-col h4 {
  font-family: var(--font-title);
  font-weight: 400;
}

/* Simplified nav links (no dropdown) */
.nav-item {
  list-style: none;
  position: relative;
  padding: 0 4px;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-size: 17px;
  letter-spacing: 1px;
  padding: 6px 2px;
  display: inline-block;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #d0ad65;
  transition: width 0.35s ease, left 0.35s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: #d0ad65;
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  width: 100%;
  left: 0;
}

.nav-lang {
  font-size: 13px;
  color: #cfcfcf;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-lang a {
  color: #cfcfcf;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-lang a:hover {
  color: #d0ad65;
}

.dropdown :hover {
  /* color:#E89402; */
  color: #a81b2a;
  transition: 0.4s all ease;
  z-index: 100;
  border-radius: 4px;
}

.dropdown-content {
  transition: 2.4s all;
  display: none;
  position: absolute;
  background-color: white;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 10;
  border-radius: 5px;
  font-size: 15px;
  animation: growDown 0.5s ease-in-out forwards;
  transform-origin: top center;
  z-index: 100;
  font-style: oblique;
}

@keyframes growDown {
  0% {
    transform: rotateX(-90deg)
  }

  70% {
    transform: rotateX(20deg)
  }

  100% {
    transform: rotateX(0deg)
  }
}

@keyframes fade {
  from {
    visibility: collapse;
  }

  to {
    visibility: visible;
  }
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  opacity: 0.8;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  z-index: 100;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  background-color: #24262b;
  /* color: #E89402; */
  color: #a81b2a;
  opacity: 1;
  transition: 0.3s all ease;
  z-index: 100;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
  z-index: 100;
  transition: 1s all ease;
}

#nav {

  width: 100%;
  height: 70px;
  font-size: 20px;

  color: white;
  position: fixed;
  transition: 1s all ease;
  z-index: 100;
}

#navlogo {
  position: absolute;
  top: 22px;
  left: 20px;
  width: 240px;
  transition: 2s ease;
}

#navlogo img {
  width: 100%;

}


.nav-links {
  width: 100%;
  height: 70px;
  padding-left: 20%;
  padding-right: 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;

}

.nav-links li {
  list-style: none;
  z-index: 100;
}

a {
  color: white;
  text-decoration: none;
}

#lines {
  width: 100%;
  height: 1px;
  position: fixed;
  transition: 1s all ease;
  /* z-index: 1000; */
}

header {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../imgs/photos/hero-fallback.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  color: white;
  filter: brightness(70%);
}

#header {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-image: url("../imgs/photos/hero-namforsen.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  color: white;
}

#headerstandard {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../imgs/photos/standard-room-hero.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  color: white;
  filter: brightness(70%);
}

#headerdeluxe {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../imgs/photos/deluxe-room-hero.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  color: white;
  filter: brightness(70%);
}

#headerLandA {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../imgs/photos/location-hero.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  color: white;
  filter: brightness(70%);
}

#headerHistory {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../imgs/photos/history-hero.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  color: white;
  filter: brightness(70%);
}

#headerSaF {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../imgs/photos/services-hero.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  color: white;
  filter: brightness(80%);
}

#headerAlFresco {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../imgs/photos/restaurant.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  color: white;
  filter: brightness(80%);
}

main {
  width: 100%;
  background-color: #e8e6e7;
  padding: 5%;
}


.galleri {

  display: grid;
  grid-template-columns: repeat(2, 40% 60%);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  /* padding: 20px; */
  background-color: white;
}

.galleri img {
  width: 100%;
}




.galleri2 {

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  /* grid-column-gap: 100px; */
  /* grid-row-gap: 20px; */
  /* padding: 20px; */
  min-height: 60vh;

}

.galleri2 img {
  width: 100%;
}

/* relevant styles */
.img__wrap {
  display: grid;
  position: relative;
}

.img__wrap2 {
  display: grid;
  position: relative;
  background-color: white;
  background-image: url("../imgs/photos/lobby.jpg");
  background-size: cover;
  background-color: black;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.img__wrap3 {
  display: grid;
  position: relative;
  background-color: white;
  background-image: url("../imgs/photos/lobby2.jpg");
  background-size: cover;
  background-color: black;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.img__wrap4 {
  display: grid;
  position: relative;
  background-color: white;
  background-image: url("../imgs/photos/lobby3.jpg");
  background-size: cover;
  background-color: black;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.textimg {
  text-align: center;
  color: white;
  padding: 10%;
}

.textimg .span {
  padding: 5%;
}

.textimg h1 {
  font-style: oblique;
}

.textimg #learnBtn,
.textimg .learnBtn {
  transform: scale(0.92);
  transform-origin: center;
}

.textimg #learnBtn:hover,
.textimg .learnBtn:hover {
  transform: scale(0.92) translateY(-2px);
}

.img__wrap2 h1 {
  text-align: center;
}

.text__wrap {
  padding: 50px;
  display: grid;
  position: relative;
}


.heading h1 {
  font-size: 37px;
  text-align: center;
  padding: 5%;
}

.heading h2 {
  font-size: 29px;
  text-align: center;
  padding: 5%;
}

.heading {
  display: flex;
  justify-content: center;
  font-style: oblique;
}

.lineh {
  background-color: #d0ad65;
  width: 15%;
  height: 2px;
  margin-top: 7%;

}

#restimg {
  background-image: url("../imgs/photos/restaurant.jpg");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  min-height: 70vh;

}

#textimgres {
  text-align: center;
  padding-top: 120px;
  font-size: 23px;
  font-style: oblique;
  color: white;
}

#textimgres button {
  margin-top: 35px;
}

/* ===========================
   Refined button system
   - Primary (filled gold): #bookBtn, .coming-soon__btn--primary, .legal__form button
   - Ghost on dark (white outline → fills gold): #learnBtn, .learnBtn, .coming-soon__btn--ghost
   =========================== */

#learnBtn,
.learnBtn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 200px;
  height: 46px;
  padding: 0 28px;
  margin-top: 1rem;
  color: #f4f1ea;
  background: transparent;
  border: 1px solid rgba(244, 241, 234, 0.55);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 12.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

#learnBtn::before,
.learnBtn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #d8b46e 0%, #c19a52 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: -1;
}

#learnBtn::after,
.learnBtn::after {
  content: "→";
  font-size: 14px;
  line-height: 1;
  display: inline-block;
  transform: translateX(0);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

#learnBtn:hover,
.learnBtn:hover,
#learnBtn:focus-visible,
.learnBtn:focus-visible {
  color: #1d1f23;
  border-color: #c19a52;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(36, 38, 43, 0.22);
}

#learnBtn:hover::before,
.learnBtn:hover::before,
#learnBtn:focus-visible::before,
.learnBtn:focus-visible::before {
  transform: scaleX(1);
}

#learnBtn:hover::after,
.learnBtn:hover::after,
#learnBtn:focus-visible::after,
.learnBtn:focus-visible::after {
  transform: translateX(6px);
}

#learnBtn:focus-visible,
.learnBtn:focus-visible {
  outline: 2px solid #d0ad65;
  outline-offset: 3px;
}

#contentevent {
  width: 90%;

  margin: auto;
  background-color: #e8e6e7;
}

.galleriEvent {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 50% 50%;
  width: 100%;
  padding: 40px;
}

.textbox {
  grid-column: 1/2;
  grid-row: 1/2;
  padding: 40px;
}

.imgEvent {
  grid-column: 2/3;
  grid-row: 1/2;
}

.imgEvent img {
  width: 100%;
  min-height: 100%;
}

.textbox2 {
  grid-column: 2/3;
  grid-row: 1/2;
  padding: 40px;
}

.imgEvent2 {
  grid-column: 1/2;
  grid-row: 1/2;
}

.imgEvent2 img {
  width: 100%;
  min-height: 100%;
}

#pageName {
  background-color: #24262b;
  width: 100%;
  text-align: center;
  margin: auto;
  /* padding: 2vh; */
  color: white;
  transition: all 2s ease;
  overflow: hidden;
}

#pageName img {
  width: 100%;
  display: block;
  position: relative;
  left: 0;
  padding: 0;
  margin-top: -1px;
  margin-bottom: -2px;
}

#pageName P {
  font-family: 'Gotham';
  font-style: italic;
  font-weight: 400;
  font-size: 13px;
}

.scroll-river {
  width: 54px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  bottom: 34px;
  margin: 0;
  color: #e8e6e7;
  text-decoration: none;
  opacity: 0.86;
  transform: translateX(-50%);
  transition: opacity 0.3s ease, transform 0.3s ease;
  animation: riverFloat 2.8s ease-in-out infinite;
  z-index: 2;
}

.scroll-river:hover {
  opacity: 1;
  transform: translateX(-50%) translateY(4px);
}

.scroll-river::before,
.scroll-river::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 38px;
  top: 8px;
  border-radius: 999px;
  background: linear-gradient(to bottom, rgba(232, 230, 231, 0), rgba(232, 230, 231, 0.9), rgba(232, 230, 231, 0));
  animation: riverStream 1.8s ease-in-out infinite;
}

.scroll-river::before {
  left: 19px;
}

.scroll-river::after {
  right: 19px;
  animation-delay: 0.35s;
}

.scroll-river__icon {
  width: 34px;
  height: 52px;
  display: block;
  position: relative;
  z-index: 1;
}

.scroll-river__path {
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scroll-river__chevron {
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: riverChevron 1.8s ease-in-out infinite;
}

@keyframes riverFloat {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

@keyframes riverStream {

  0%,
  100% {
    opacity: 0.2;
    transform: scaleY(0.7);
  }

  50% {
    opacity: 0.85;
    transform: scaleY(1);
  }
}

@keyframes riverChevron {

  0%,
  100% {
    opacity: 0.45;
    transform: translateY(-2px);
  }

  50% {
    opacity: 1;
    transform: translateY(5px);
  }
}

#pageName2 {
  background-color: #24262b;
  width: 100%;
  text-align: center;
  padding: 3vh;
  color: white;
  transition: all 1s ease;
  z-index: 1;
  letter-spacing: 7px;
  /* font-style: italic; */
  font-size: 21px;


}

svg {
  /* background-color: #24262b; */
  width: 100%;
  margin-top: -1px;
}

#wave2 {
  background-color: #f4f4f4;
  margin-bottom: -10px;
}

#svgimg {
  background-image: url("../imgs/photos/hero-secondary.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  /* background-attachment: fixed; */
  height: 120vh;
  z-index: -10;
  margin-top: -14%;
}

.sticky {
  position: sticky;
  top: 71px;
}

#bookBtn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 220px;
  height: 52px;
  padding: 0 36px;
  margin: 1rem;
  color: #1d1f23;
  background: linear-gradient(135deg, #d8b46e 0%, #c19a52 100%);
  border: 1px solid #c19a52;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 10px 28px rgba(208, 173, 101, 0.22),
              inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

#bookBtn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    transparent 30%,
    rgba(255, 255, 255, 0.32) 50%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: -1;
}

#bookBtn::after {
  content: "→";
  font-size: 15px;
  line-height: 1;
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

#bookBtn:hover,
#bookBtn:focus-visible {
  color: #1d1f23;
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(208, 173, 101, 0.36),
              inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

#bookBtn:hover::before,
#bookBtn:focus-visible::before {
  transform: translateX(120%);
}

#bookBtn:hover::after,
#bookBtn:focus-visible::after {
  transform: translateX(6px);
}

#bookBtn:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

.container {
  max-width: 1170px;
  margin: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

#conference {
  background-color: #e8e7e5;
}

#lastgal {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 25% 25% 25%;
  width: 70%;
  grid-gap: 17px;
  margin: auto;
  margin-bottom: -100px;
}

.img1 {
  grid-column: 1/4;
  grid-row: 1/2;
  overflow: hidden;
}

.img1 img {
  width: 100%;
  min-height: 100%;
  transition: all 0.5s ease;
}

.img1 img:hover {
  transition: all 0.5s ease;
  transform: scale(1.05);
}

.img2 {
  grid-column: 4/5;
  grid-row: 1/2;
  background-color: black;
  overflow: hidden;
}

.img2 img {
  width: 100%;
  min-height: 100%;
  transition: all 0.5s ease;
}

.img2 img:hover {
  transition: all 0.5s ease;
  transform: scale(1.05);
}

.img3 {
  grid-column: 1/3;
  grid-row: 2/4;
  background-color: black;
  overflow: hidden;
}

.img3 img {
  width: 100%;
  min-height: 100%;
  transition: all 0.5s ease;
}

.img3 img:hover {
  transition: all 0.5s ease;
  transform: scale(1.05);
}

.img4 {
  grid-column: 3/5;
  grid-row: 2/3;
  background-color: black;
  overflow: hidden;
}

.img4 img {
  width: 100%;
  min-height: 100%;
  transition: all 0.5s ease;
}

.img4 img:hover {
  transition: all 0.5s ease;
  transform: scale(1.05);
}

.img5 {
  grid-column: 3/5;
  grid-row: 3/4;
  background-color: black;
  overflow: hidden;
}

.img5 img {
  width: 100%;
  min-height: 100%;
  transition: all 0.5s ease;
}

.img5 img:hover {
  transition: all 0.5s ease;
  transform: scale(1.05);
}

/* ===========================
   Galleri intro: enriched lead text
   =========================== */

.text__wrap p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  font-weight: 300;
  color: #3a3d44;
  margin: 0 0 16px;
}

.text__wrap h2 {
  font-family: var(--font-title);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.18;
  margin: 0 0 18px;
  color: #24262b;
}

.text__wrap__meta {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 22px;
}

.text__wrap__meta li {
  position: relative;
  padding-left: 18px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: #3a3d44;
  font-weight: 300;
}

.text__wrap__meta li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 10px;
  height: 1px;
  background: #d0ad65;
}

@media (max-width: 600px) {
  .text__wrap__meta {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   Att göra i Näsåker
   =========================== */

#explore {
  background-color: #f4f1ea;
  padding-bottom: 80px;
}

.explore__intro {
  width: min(820px, 90%);
  margin: 0 auto 36px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: #3a3d44;
  font-weight: 300;
}

.explore__grid {
  width: min(1120px, 90%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.explore__card {
  background: #ffffff;
  border: 1px solid #ece6da;
  border-top: 3px solid #d0ad65;
  padding: 28px 26px;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.explore__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(36, 38, 43, 0.08);
  border-top-color: #a3313d;
}

.explore__card h3 {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 400;
  margin: 0 0 12px;
  color: #24262b;
}

.explore__card p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: #3a3d44;
  font-weight: 300;
  margin: 0;
}

/* ===========================
   FAQ section — same design language as the rest
   =========================== */

.seo-faq {
  background-color: #e8e7e5;
  color: #24262b;
  padding: 30px 24px 90px;
}

.seo-faq__list {
  width: min(820px, 92%);
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.seo-faq details {
  background: #ffffff;
  border: 1px solid #ece6da;
  border-left: 3px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.seo-faq details[open] {
  border-left-color: #d0ad65;
  box-shadow: 0 14px 38px rgba(36, 38, 43, 0.07);
}

.seo-faq summary {
  cursor: pointer;
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 400;
  color: #24262b;
  padding: 20px 26px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.3s ease;
}

.seo-faq summary:hover {
  color: #a3313d;
}

.seo-faq summary::-webkit-details-marker {
  display: none;
}

.seo-faq summary::after {
  content: "+";
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #d0ad65;
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.seo-faq details[open] summary::after {
  content: "−";
  transform: rotate(0deg);
}

.seo-faq p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.75;
  color: #3a3d44;
  font-weight: 300;
  padding: 0 26px 22px;
  margin: 0;
}

@media (max-width: 600px) {
  .seo-faq summary {
    font-size: 17px;
  }
}

/* ===========================
   Intro loader (first-visit logo reveal)
   =========================== */

.intro-active,
.intro-active body {
  overflow: hidden;
}

#intro-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background-color: #24262b;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  animation: introExit 0.85s cubic-bezier(0.65, 0, 0.35, 1) forwards;
  animation-delay: 1.95s;
}

#intro-loader.is-skipped {
  animation: introExit 0.45s cubic-bezier(0.65, 0, 0.35, 1) forwards;
  animation-delay: 0s;
}

#intro-loader[hidden] {
  display: none !important;
}

.intro-loader__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.intro-loader__line {
  height: 1px;
  width: 0;
  background: linear-gradient(90deg, rgba(208, 173, 101, 0), #d0ad65 30%, #d0ad65 70%, rgba(208, 173, 101, 0));
  animation: introLine 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.7s;
}

.intro-loader__logo {
  width: clamp(200px, 32vw, 380px);
  height: auto;
  opacity: 0;
  transform: translateY(8px) scale(0.96);
  filter: blur(6px);
  animation: introLogo 1.05s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.1s;
}

@keyframes introLogo {
  0% {
    opacity: 0;
    transform: translateY(8px) scale(0.96);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes introLine {
  0% {
    width: 0;
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  100% {
    width: clamp(60px, 14vw, 180px);
    opacity: 1;
  }
}

@keyframes introExit {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-100%);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  #intro-loader,
  .intro-loader__logo,
  .intro-loader__line {
    animation: none !important;
  }

  #intro-loader {
    display: none !important;
  }
}

ul {
  list-style: none;
}

footer {
  background-color: #24262b;
  padding: 70px 0;
}

.color {
  background-color: #24262b;
}

.footermedia {
  width: 100%;
  background-color: #e8e7e5;
  padding: 22px 58px;
  display: grid;
  grid-template-columns: minmax(170px, 1fr) auto minmax(170px, 1fr);
  grid-template-areas: "footer-logo footer-links footer-credit";
  align-items: center;
  gap: 24px;
}

.media {
  grid-area: footer-logo;
  width: 180px;
  height: 62px;
  display: flex;
  align-items: center;
  font-size: 20px;
  text-align: center;
  color: #E89402;
  justify-self: start;
}

.media embed {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.media2 {
  grid-area: footer-credit;
  width: 180px;
  height: 62px;
  background-image: url("../imgs/svg/scandinavian-web-solutions-logo.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  justify-self: end;
}

.media2 span {
  font-size: 19px;
  padding: 0px;
}

.media2 a {
  color: black;
}

.media2:hover a {
  color: #E89402;
}

.media3 {
  grid-area: footer-links;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 82px;
  margin: 0;
  font-size: 15px;
  text-align: center;

}

.mediaflex {
  padding: 0;

}

.mediaflex a {
  color: #6E6E6E;
}

.mediaflex:hover a {
  color: rgba(0, 0, 0, 1);
}

.headingTeam {
  padding: 40px;
  text-align: center;
  font-family: 'Gotham';
  background-color: #f4f4f4;
  z-index: 10000;
}

.headingTeam p {
  padding: 10px;
  font-family: 'Gotham';
  font-style: italic;
  font-weight: 300;
}

.headingTeam2 {
  padding: 40px;
  text-align: center;
  font-family: 'Gotham';
  background-color: white;

}

.headingTeam2 p {
  padding: 10px;
  font-family: 'Gotham';
  font-style: italic;
  font-weight: 300;
}

#mainTeam {
  width: 80%;

  margin: auto;
  /* margin-top: 50px; */
  transition: 1s all ease;

}

#galteam {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 50vh;
  background-color: #f4f4f4;
  grid-gap: 25px;
  margin: auto;
}

#teamimg {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('../imgs/photos/team-vito.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  filter: blur(5px);
}

#textTeam {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('../imgs/photos/teamwork-restaurant.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  filter: blur(5px);
}

#whatWeWork {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 50vh 50vh;
  width: 90%;
  grid-gap: 25px;
  margin: auto;
  /* margin-bottom: -100px; */
  transition: 1s all ease;
  overflow: hidden;
  font-family: 'Gotham';
  font-style: italic;
  font-weight: 300;

}

#wwwgal1 {
  grid-column: 1/2;
  grid-row: 1/3;
  background-color: lightgrey;
  background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url('../imgs/photos/ceo.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  transition: 2s all ease;
  opacity: 0;
  text-align: center;
}

#wwwgal1 h1 {
  color: rgba(255, 255, 255, 1);
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

#wwwgal2 {
  grid-column: 2/4;
  grid-row: 1/2;
  background-color: lightgrey;
  background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url('../imgs/photos/restaurant-food.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transform: translate(200px, 0);
  transition: 2s all ease;
}

#wwwgal2 h1 {
  color: white;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

#wwwgal3 {
  grid-column: 2/3;
  grid-row: 2/3;
  background-color: lightgrey;
  background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url('../imgs/photos/happy-guests-2.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transform: translate(0, 100px);
  transition: 2s all ease;
}

#wwwgal3 h1 {
  color: white;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

#wwwgal4 {
  grid-column: 3/4;
  grid-row: 2/3;
  background-color: lightgrey;
  background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url('../imgs/photos/happy-guests.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transform: translate(0, 100px);
  transition: 2s all ease;
}

#wwwgal4 h1 {
  color: white;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

#containerstandard {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  width: 70%;
  padding-top: 40px;
  padding-bottom: 40px;
  height: 200vh;
  grid-gap: 25px;
  margin: auto;
  transition: 1s all ease;
  font-family: 'Gotham';
  font-style: italic;
  font-weight: 300;
  line-height: 30px;

}

#standardtext1 {
  grid-column: 1/2;
  grid-row: 1/3;

  transition: 2s all ease;

  color: black;
}

#standardtext2 {
  grid-column: 2/3;
  grid-row: 4/6;

  transition: 2s all ease;

  color: black;
}

.standardimg1 {
  grid-column: 2/3;
  grid-row: 1/4;
  background-color: blue;
  transition: 2s all ease;
  text-align: center;
  color: black;
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url('../imgs/photos/room-chair.jpeg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.standardimg2 {
  grid-column: 1/2;
  grid-row: 3/6;
  background-color: blue;
  transition: 2s all ease;
  text-align: center;
  color: black;
  border: 10px;
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url('../imgs/photos/standard-room.jpeg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.standardimg3 {
  grid-column: 1/3;
  grid-row: 6/9;
  background-color: blue;
  transition: 2s all ease;
  text-align: center;
  color: black;
  border: 10px;
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url('../imgs/photos/chair-room.jpeg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

span {
  color: black;
  font-family: 'Gotham';
  font-weight: 800;
}

#containerArrival {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 125px 125px 125px 125px 175px 375px;
  width: 90%;
  padding-top: 40px;
  padding-bottom: 40px;
  grid-gap: 25px;
  margin: auto;
  transition: 1s all ease;
  font-family: 'Gotham';
  font-style: italic;
  font-weight: 300;
  line-height: 30px;
}

.wrapper {
  background-color: #f4f4f4;
}

#arrivalText1 {
  grid-column: 1/2;
  grid-row: 1/4;
  font-size: 12px;
  transition: 2s all ease;
  padding: 10px;
  line-height: 25px;
  color: black;
}

.arrivalImg1 {
  grid-column: 2/4;
  grid-row: 1/4;
  transition: 2s all ease;
  overflow: hidden;
}

.arrivalImg1 iframe {
  width: 100%;
  height: 100%;
}

.arrivalImg2 {
  grid-column: 1/2;
  grid-row: 3/6;
  margin-top: 60px;
  transition: 2s all ease;
  /* overflow: hidden; */
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url('../imgs/photos/location-hotel.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.arrivalImg3 {
  grid-column: 2/4;
  grid-row: 6/6;
  transition: 2s all ease;
  margin-top: -85px;
  /* overflow: hidden; */
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url('../imgs/photos/history-hero.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

#arrivalText2 {
  grid-column: 2/4;
  grid-row: 4/6;
  font-size: 12px;
  transition: 2s all ease;
  /* padding: 10px; */
  line-height: 25px;
  color: black;
  display: flex;
  justify-content: space-around;
}

#arrivalText3 {
  grid-column: 1/2;
  grid-row: 6/7;
  font-size: 12px;
  transition: 2s all ease;
  padding: 10px;
  line-height: 25px;
  color: black;
}

.hoverArrival a {
  color: black;
  text-decoration: underline;

}

.hoverArrival {
  cursor: pointer;
}

.arrivalFlexText {
  padding: 35px;
}

.hoverArrival:hover a {
  text-decoration: none;

}

.footer-col {
  width: 25%;
  padding: 0 15px;
}

.footer-col h4 {
  font-size: 18px;
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 500;
  position: relative;
}

.footer-col h4::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  /* background-color: #E89402; */
  background-color: #a3313d;
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}

.footer-col ul li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 16px;
  text-transform: capitalize;
  color: #ffffff;
  text-decoration: none;
  font-weight: 300;
  color: #bbbbbb;
  display: block;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ffffff;
  padding-left: 8px;
}

.footer-col .social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.5s ease;
}

.footer-col .social-links a:hover {
  color: #24262b;
  background-color: #ffffff;
}



/* ===========================
   Coming-soon (page not yet open)
   =========================== */

.coming-soon {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 24px 100px;
  background-color: #24262b;
  background-image:
    linear-gradient(rgba(20, 22, 26, 0.78), rgba(20, 22, 26, 0.88)),
    url("../imgs/photos/hero-namforsen.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  color: #f4f1ea;
  overflow: hidden;
}

.coming-soon__card {
  position: relative;
  max-width: 720px;
  width: 100%;
  background: rgba(20, 22, 26, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(208, 173, 101, 0.35);
  border-radius: 4px;
  padding: 64px 48px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  animation: csFadeIn 1s ease both;
}

@keyframes csFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.coming-soon__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #d0ad65;
  margin-bottom: 18px;
}

.coming-soon__title {
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: 2px;
  margin: 0 0 14px;
  color: #ffffff;
}

.coming-soon__divider {
  width: 64px;
  height: 1px;
  background: #d0ad65;
  margin: 24px auto 28px;
  border: 0;
}

.coming-soon__text {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: #e8e6e7;
  margin: 0 auto 14px;
  max-width: 520px;
  font-weight: 300;
}

.coming-soon__text--small {
  font-size: 14px;
  color: #c8c4bf;
  font-style: italic;
  margin-top: 28px;
}

.coming-soon__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.coming-soon__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 210px;
  height: 50px;
  padding: 0 32px;
  border-radius: 2px;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 12.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              color 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.coming-soon__btn::after {
  content: "→";
  font-size: 14px;
  line-height: 1;
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.coming-soon__btn:hover::after,
.coming-soon__btn:focus-visible::after {
  transform: translateX(6px);
}

/* Primary (filled gold + shine sweep) */
.coming-soon__btn--primary {
  color: #1d1f23;
  background: linear-gradient(135deg, #d8b46e 0%, #c19a52 100%);
  border: 1px solid #c19a52;
  box-shadow: 0 10px 26px rgba(208, 173, 101, 0.22),
              inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.coming-soon__btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    transparent 30%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: -1;
}

.coming-soon__btn--primary:hover,
.coming-soon__btn--primary:focus-visible {
  color: #1d1f23;
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(208, 173, 101, 0.36),
              inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.coming-soon__btn--primary:hover::before,
.coming-soon__btn--primary:focus-visible::before {
  transform: translateX(120%);
}

/* Ghost (white outline → fills gold) */
.coming-soon__btn--ghost {
  color: #f4f1ea;
  background: transparent;
  border: 1px solid rgba(244, 241, 234, 0.55);
}

.coming-soon__btn--ghost::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #d8b46e 0%, #c19a52 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: -1;
}

.coming-soon__btn--ghost:hover,
.coming-soon__btn--ghost:focus-visible {
  color: #1d1f23;
  border-color: #c19a52;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(36, 38, 43, 0.22);
}

.coming-soon__btn--ghost:hover::before,
.coming-soon__btn--ghost:focus-visible::before {
  transform: scaleX(1);
}

.coming-soon__btn:focus-visible {
  outline: 2px solid #d0ad65;
  outline-offset: 3px;
}

.coming-soon__contact {
  margin-top: 30px;
  font-size: 13px;
  color: #c8c4bf;
  letter-spacing: 0.5px;
}

.coming-soon__contact a {
  color: #d0ad65;
  text-decoration: none;
  border-bottom: 1px solid rgba(208, 173, 101, 0.35);
  padding-bottom: 1px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.coming-soon__contact a:hover {
  color: #ffffff;
  border-color: #ffffff;
}

@media (max-width: 600px) {
  .coming-soon__card {
    padding: 44px 22px;
  }

  .coming-soon__title {
    font-size: 32px;
  }

  .coming-soon__text {
    font-size: 15px;
  }
}

/* ===========================
   Legal / informational pages
   =========================== */

.legal {
  width: 100%;
  background-color: #f4f1ea;
  color: #24262b;
  padding: 140px 24px 100px;
  min-height: 100vh;
}

.legal__container {
  max-width: 820px;
  margin: 0 auto;
  background: #ffffff;
  padding: 56px 56px;
  border: 1px solid #ece6da;
  border-radius: 4px;
  box-shadow: 0 16px 48px rgba(36, 38, 43, 0.06);
}

.legal__eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #a3313d;
  margin-bottom: 12px;
}

.legal__title {
  font-size: 38px;
  line-height: 1.2;
  margin: 0 0 8px;
  color: #24262b;
}

.legal__divider {
  width: 56px;
  height: 1px;
  background: #d0ad65;
  border: 0;
  margin: 18px 0 26px;
}

.legal__updated {
  font-size: 13px;
  font-style: italic;
  color: #6E6E6E;
  margin-bottom: 28px;
}

.legal__container h2 {
  font-family: var(--font-title);
  font-weight: 400;
  font-size: 22px;
  margin: 36px 0 12px;
  color: #24262b;
}

.legal__container h3 {
  font-family: var(--font-title);
  font-weight: 400;
  font-size: 18px;
  margin: 22px 0 10px;
  color: #24262b;
}

.legal__container p,
.legal__container li {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.75;
  color: #3a3d44;
  font-weight: 300;
}

.legal__container p {
  margin: 0 0 14px;
}

.legal__container ul,
.legal__container ol {
  padding-left: 22px;
  margin: 0 0 16px;
}

.legal__container ul li,
.legal__container ol li {
  list-style: disc;
  margin-bottom: 6px;
}

.legal__container ol li {
  list-style: decimal;
}

.legal__container a {
  color: #a3313d;
  text-decoration: underline;
  text-decoration-color: rgba(163, 49, 61, 0.4);
  text-underline-offset: 3px;
  transition: color 0.3s ease;
}

.legal__container a:hover {
  color: #24262b;
}

.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 1px;
  color: #24262b;
  text-decoration: none;
  border-bottom: 1px solid #d0ad65;
  padding-bottom: 2px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.legal__back:hover {
  color: #a3313d;
  border-color: #a3313d;
}

.legal__contact-card {
  margin-top: 28px;
  padding: 22px 26px;
  background: #faf7f0;
  border-left: 3px solid #d0ad65;
  border-radius: 2px;
}

.legal__contact-card p {
  margin: 0 0 6px;
}

@media (max-width: 720px) {
  .legal__container {
    padding: 38px 24px;
  }

  .legal__title {
    font-size: 28px;
  }
}

/* Webmaster contact form */
.legal__form {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.legal__form label {
  display: block;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #6E6E6E;
  margin-bottom: 6px;
  font-family: var(--font-body);
}

.legal__form input,
.legal__form textarea,
.legal__form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd2bf;
  border-radius: 3px;
  background: #fffefb;
  font-family: var(--font-body);
  font-size: 15px;
  color: #24262b;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.legal__form input:focus,
.legal__form textarea:focus,
.legal__form select:focus {
  outline: none;
  border-color: #d0ad65;
  box-shadow: 0 0 0 3px rgba(208, 173, 101, 0.18);
}

.legal__form textarea {
  resize: vertical;
  min-height: 140px;
}

.legal__form button {
  justify-self: start;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 220px;
  height: 50px;
  padding: 0 32px;
  border-radius: 2px;
  background: linear-gradient(135deg, #d8b46e 0%, #c19a52 100%);
  color: #1d1f23;
  border: 1px solid #c19a52;
  font-family: var(--font-body);
  font-size: 12.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 10px 26px rgba(208, 173, 101, 0.22),
              inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.legal__form button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    transparent 30%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: -1;
}

.legal__form button::after {
  content: "→";
  font-size: 14px;
  line-height: 1;
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.legal__form button:hover,
.legal__form button:focus-visible {
  color: #1d1f23;
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(208, 173, 101, 0.36),
              inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.legal__form button:hover::before,
.legal__form button:focus-visible::before {
  transform: translateX(120%);
}

.legal__form button:hover::after,
.legal__form button:focus-visible::after {
  transform: translateX(6px);
}

.legal__form button:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

/* Button responsive + reduced motion */
@media (max-width: 480px) {
  #bookBtn,
  #learnBtn,
  .learnBtn,
  .coming-soon__btn,
  .legal__form button {
    min-width: 0;
    width: 100%;
    max-width: 320px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #bookBtn,
  #learnBtn,
  .learnBtn,
  .coming-soon__btn,
  .legal__form button {
    transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
  }

  #bookBtn:hover,
  #learnBtn:hover,
  .learnBtn:hover,
  .coming-soon__btn:hover,
  .legal__form button:hover {
    transform: none;
  }

  #bookBtn::before,
  #learnBtn::before,
  .learnBtn::before,
  .coming-soon__btn::before,
  .legal__form button::before,
  #bookBtn::after,
  #learnBtn::after,
  .learnBtn::after,
  .coming-soon__btn::after,
  .legal__form button::after {
    transition: none;
  }
}

@media(max-width: 767px) {
  .footer-col {
    width: 50%;
    margin-bottom: 30px;
  }

}

@media(max-width: 574px) {
  .footer-col {
    width: 100%;
  }
}



@media screen and (max-width: 1068px) {
  .footermedia {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "footer-logo footer-credit"
      "footer-links footer-links";
    column-gap: 24px;
    row-gap: 18px;
    padding: 18px 24px;
  }

  .media {
    width: min(160px, 42vw);
    height: 58px;
    justify-self: end;
  }

  .media2 {
    width: min(160px, 42vw);
    height: 58px;
    justify-self: start;
  }

  .media3 {
    flex-wrap: wrap;
    justify-self: center;
    gap: 18px 32px;
  }

  .line1 {
    width: 30px;
    height: 3px;
    background: white;
    margin: 5px;
    transition: all 1s ease;
  }

  .line2 {
    width: 30px;
    height: 3px;
    background: white;
    margin: 5px;
    transition: all 1s ease;
  }

  .line3 {
    width: 30px;
    height: 3px;
    background: white;
    margin: 5px;
    transition: all 1s ease;
  }

  .line1.toggle {
    transform: rotate(-45deg) translate(-5px, 6px);
    transition: all 0.6s ease 0.3s;
  }

  .line2.toggle {
    opacity: 0;
    transform: translate(-100px, 0);
    transition: all 1s ease;
  }

  .line3.toggle {
    transform: rotate(45deg) translate(-5px, -6px);
    transition: all 0.6s ease 0.3s;
  }

  #lines {
    display: none;
  }

  .hamburger {
    position: absolute;
    cursor: pointer;
    right: 5%;
    top: 50%;
    transform: translate(-5%, -50%);
    width: 70px;
    z-index: 2;
  }

  .nav-links {
    height: 100vh;
    width: 100%;
    flex-direction: column;
    clip-path: circle(100px at 90% -15%);
    -webkit-clip-path: circle(100px at 90% -15%);
    transition: all 1s ease-out;
    pointer-events: none;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 40px;
  }

  .nav-links.open {
    clip-path: circle(1000px at 90% -10%);
    -webkit-clip-path: circle(1000px at 90% -10%);
    pointer-events: all;
  }

  .nav-links li {
    opacity: 0;
  }

  .nav-links li a {
    font-size: 25px;
  }

  .nav-links li:nth-child(1) { transition: all 0.5s ease 0.20s; }
  .nav-links li:nth-child(2) { transition: all 0.5s ease 0.30s; }
  .nav-links li:nth-child(3) { transition: all 0.5s ease 0.40s; }
  .nav-links li:nth-child(4) { transition: all 0.5s ease 0.50s; }
  .nav-links li:nth-child(5) { transition: all 0.5s ease 0.60s; }
  .nav-links li:nth-child(6) { transition: all 0.5s ease 0.70s; }

  li.fade {
    opacity: 1;
  }

  .nav-item {
    padding: 14px 20px;
  }

  .nav-link {
    font-size: 22px;
    letter-spacing: 1.5px;
  }

  .nav-lang {
    margin-top: 10px;
    font-size: 16px;
  }
}

@media(max-width: 1200px) {
  .galleri {
    grid-template-columns: 1fr;
  }

  @media(max-width: 600px) {
    .galleri2 {
      grid-template-columns: 1fr;
    }
  }
}