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

body {
  font-family: "Poppins", sans-serif;
  background-color: #f8f5eb;
  color: #111;
  min-height: 100vh;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #ccc;
}

.navbarlogo {
  display: flex;
  align-items: center;
}

.navbarlogo--img {
  height: 42px;
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid #111;
  background: transparent;
  border-radius: 4px;
  cursor: pointer;
  padding: 8px;
}

.burger__bar {
  display: block;
  width: 100%;
  height: 3px;
  background: #111;
}

.burger__bar + .burger__bar {
  margin-top: 6px;
}

.navbar-links {
  display: flex;
  gap: 16px;
  font-size: 14px;
}

.navbar-links a {
  color: #111;
  text-decoration: none;
}

@media (max-width: 900px) {
  .burger {
    display: block;
  }

  .navbar-links {
    position: absolute;
    top: 80px;
    right: 20px;
    flex-direction: column;
    background: #fff;
    border: 1px solid #111;
    padding: 18px;
    width: min(320px, 80vw);
    transform: translateX(120%);
    transition: transform 0.2s ease;
    gap: 12px;
  }

  .navbar-links.open {
    transform: translateX(0);
  }

}

/* FÆLLES BODY OG GENERELT */

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

body {
  margin: 0;
  min-height: 100vh;
  color: #3b3120;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #6E6D42;
  padding-top: 100px;
}

/* FÆLLES HEADER */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  padding: 0 60px;
  background-color: #E9E5DC; 
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar__logo {
  display: flex;
  align-items: center;
}

.navbar__logo--img {
  height: 44px;   
  width: auto;
}

.navbar__links {
  display: flex;
  gap: 32px;
  font-size: 14px;
}

.navbar__links a {
  text-decoration: none;
  color: #333;
  letter-spacing: 0.03em;
}

.navbar__links a:hover {
  text-decoration: underline;
}

/* FÆLLES FOOTER */
.footer__wrapper {
    background: #EFE9DF;
    padding: 60px 40px;
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.logo__footer {
    width: 100px;
}

.footer__contact h3 {
    margin-bottom: 10px;
}

/* --------------------------------------------------------------------------------------- */

/* MEGANS CSS */
.card {
    background: #f2f0e8;
    border-radius: 14px;
    overflow: hidden;
    width: 320px;
    padding-bottom: 20px;
}

.card-content {
    padding: 20px;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.link {
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
    color: #6a5f4b;
    font-weight: 500;
}

.card-container  {
  display: flex;
}

.card-container-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    justify-items: center;   
}
.section {
    max-width: 1400px;
    margin: auto;
    padding: 60px 20px;
}

.card-container-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(360px, 1fr));
    gap: 40px;
}

.card {
    width: 100%;
    max-width: 420px;
}
h1 {
    color: #ffffff; 
    font-size: 42px;
    margin-left: 40px;
    text-align: center;
}
.locus-section {
   
    padding: 60px 0;
}

.locus-container {
    width: 85%;
    margin: 0 auto;
    background: #e9e5dc; 
    padding: 50px;
    border-radius: 20px;
    display: flex;
    gap: 40px;
    
}

.locus-left {
    width: 60%;
}

.locus-left h2 {
    font-size: 42px;
    font-weight: 500;
    color: #6d5a4a; 
    margin-top: 0;
}

.locus-left p {
    font-size: 17px;
    line-height: 1.6;
    color: #4e4a41;
}

.locus-right {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.locus-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.locus-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 16px;
    color: #4e4a41;
}

.locus-features img {
    width: 26px;
    height: 26px;
}

.book-button {
    background: #55602f;
    color: white;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 10px;
    display: inline-block;
    text-align: center;
}

/* --------------------------------------------------------------------------------------- */

/* CECILIES CSS */

/* Om salen */
.locus__header {
  color: #474C1F;
  text-align: left;
  padding-top: 15px;
  margin-left: 0px;
  padding-bottom: 30px;
}

.locus__wrapper {
    max-width: 100%;
    margin: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: #E9E5DC;
    padding: 40px;
    border-radius: 10px;
}

.locus__text-box h1 {
    font-size: 42px;
    margin-bottom: 0px;
}

.locus__text {
    margin-bottom: 80px;
    line-height: 1.5rem;
}

.locus__icon-list {
    margin-top: 20px;
    padding-left: 20px;
}

.locus__icon-list li {
    margin-bottom: 10px;
}

/* Billedgalleri */
.locus__images img {
    width: 100%;
    border-radius: 8px;
}

.locus__small-images {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.locus__small-images img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
}

.locus__aerial-section img {
    width: 95.5%;
    height: 600px;
    margin-left: 40px;
    margin-right: 40px;
    border-radius: 10px;
    object-fit: cover;

    /* Modal koden til billeder galleri Nima */
}
.image-modal {
  position: fixed;
  inset: 0;
  display: none;          /* VIGTIGT: gem som standard */
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.image-modal--visible {
  display: flex;          /* Vises først når denne klasse tilføjes */
}

.image-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.image-modal__content {
  position: relative;
  max-width: min(92vw, 1100px);
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #111;
}

.image-modal__img {
  width: 100%;
  max-height: 80vh;
  object-fit: cover;
}

/* knapperne */
.image-modal__close,
.image-modal__arrow {
  /* dine eksisterende styles er fine */
}



/* Nedenstående CSS til bookingformularen (inkl. kalender) er lavet med hjælp fra ChatGPT (t.o.m. ".locus-calender td")
    Promt og svar kan ses i bilag 4 - AI-promts (prompt 15), som findes under ekstramaterialer på Wiseflow  */

.form-calendar-wrapper {
    max-width: 95.5%;
    margin: 40px auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    background: #E9E5DC;
    padding: 40px;
    border-radius: 8px;
}

.booking-form input,
.booking-form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: none;
    border-radius: 6px;
    border: #6E6D42 0.125px solid;
}

select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #ccc;
  background-color: #fff;
  font-size: 16px;
  appearance: none;     
  cursor: pointer;
}

select:focus {
  outline: none;
  border-color: #6E6D42;
}


select {
  background-image: url("data:image/svg+xml;utf8,<svg fill='%236E6D42' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
}


button {
  display: inline-block;
  padding: 14px 36px;
  background-color: #85A6E3; 
  color: #ffffff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 15px;
}


.phone-row {
    display: flex;
    gap: 10px;
}

.calendar-box {
    background: #F6F2EB;
    border: #6E6D42 0.125px solid;
    padding: 20px;
    border-radius: 8px;
}

.cal-header {
    text-align: center;
    font-weight: bold;
    margin-bottom: 10px;
}

.locus-calendar {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

.locus-calendar th, .locus-calendar td {
    padding: 10px 0;
}

.locus-calendar td {
    background: #F6F2EB;
    border-radius: 4px;
}

/* --------------------------------------------------------------------------------------- */

/* SELINS CSS */

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  height: 56px;
}

.content {
  padding: 3rem 0;
  color: #fffbea;
}

.intro-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: stretch;
  padding: 40px;
}

.intro-media {
  flex: 1 1 320px;
}

.intro-media img {
  border-radius: 16px;
  border: 4px solid rgba(255, 255, 255, 0.2);
}

.intro-copy {
  flex: 1 1 320px;
  background: #5a5735;
  border-radius: 16px;
  padding: 1.5rem;
}

.intro-copy h1 {
  margin-top: 0;
  font-size: 2.2rem;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
  color: #ddd4bb;
}

.team-wrapper {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 40px;
}

.team-card {
  flex: 1 1 300px;
  background: #f7f3ec;
  border: 1px solid #e0d7c7;
  border-radius: 16px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
}

.team-body {
  padding: 1.25rem;
  color: #3b3120;
}

.team-body h2 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.team-body a {
  font-weight: 600;
}

.brand-name {
  margin: 0;
  font-weight: 700;
}

@media (max-width: 720px) {
  .page-header .wrapper {
    flex-direction: column;
    gap: 1rem;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* --------------------------------------------------------------------------------------- */

/* NIMAS CSS */

.hero {
  margin-top: -30px; 
  width: 100%;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 900px;
  display: block;
}

/* TELTE-SEKTION */
.tents-section {
  padding: 80px 40px 100px;
  background-color: #6E6D42; 
  color: #ffffff;
}

.tents-container {
  max-width: 1100px;
  margin: 0 auto;
}

.tents-heading {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 42px);
  text-align: center;
  margin-bottom: 50px;
}

/* GRID MED 3 KORT */
.tents-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.tent-card {
  background-color: #E9E5DC;
  border-radius: 18px;
  overflow: hidden; /* Runding til billedet */
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* Billede øverst på kortet */
.tent-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* Indholdet i kortet */
.tent-content {
  padding: 20px 22px 18px;
  color: #333;
  font-size: 14px;
}

.tent-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  margin-bottom: 10px;
}

.tent-content p {
  line-height: 1.5;
  margin-bottom: 14px;
}

/* Features-listen */
.tent-features {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.tent-features li {
  font-size: 13px;
  margin-bottom: 4px;
}

/* "Læs mere" linket nederst */
.tent-readmore {
  font-size: 13px;
  text-decoration: none;
  color: #A57A4A; 
}

.tent-readmore:hover {
  text-decoration: underline;
}

.tent-readmore.disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* CTA-knap nederst */
.tents-cta {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.book-btn {
  display: inline-block;
  padding: 14px 36px;
  background-color: #85A6E3; 
  color: #ffffff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 15px;
}

.book-btn:hover {
  filter: brightness(1.05);
}
/* TEAMBUILDING SEKTION */
.teambuilding {
  background-color: #E9E5DC; 
  padding: 80px 40px 100px;
}

.teambuilding-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* top billede + tekst side om side */
.teambuilding-header {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
}

.tb-image {
  width: 45%;
  border-radius: 8px;
  object-fit: cover;
}

.tb-text {
  width: 55%;
}

.tb-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  margin-bottom: 20px;
  color: #000000;
}

.tb-text p {
  margin-bottom: 16px;
  line-height: 1.6;
  color: #000000;
}

/* Overskrift før kortene */
.tb-subheading {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 26px;
  margin-bottom: 40px;
  color: #000000;
}

/* GRID MED 3 KORT */
.tb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.tb-card {
  background-color: #929761; 
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.tb-card-image {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 16px;
}

.tb-card h4 {
  font-family: "Playfair Display", serif;
  margin-bottom: 10px;
}

.tb-card p {
  font-size: 14px;
  line-height: 1.5;
  color: #000000;
}

/* CTA KNAP */
.tb-cta {
  text-align: center;
  margin-top: 30px;
}

.tb-btn {
  display: inline-block;
  padding: 14px 36px;
  background-color: #85A6E3; 
  color: #ffffff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 15px;
}

.tb-btn:hover {
  filter: brightness(1.06);
}

/* FOOTER */
.footer {
  background-color: #E9E5DC;
  padding: 40px 40px 50px;
}

.calendar {
  background-color: #6E6D42; 
  padding: 80px 40px 90px;
  color: #E9E5DC;
}

.calendar-container {
  max-width: 1100px;
  margin: 0 auto;
}

.calendar-heading {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 40px);
  text-align: center;
  margin-bottom: 45px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.calendar-day {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.day-header {
  background-color: #F5F1E6; 
  color: #000000;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.day-body {
  background-color: #F5F1E6;
  padding: 16px 14px;
  min-height: 250px;
  border-radius: 14px;
  font-size: 14px;
  color: #000;
  line-height: 1.5;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
  display: flex;
  align-items: flex-start;
}

.calendar-week-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-size: 15px;
  margin-top: 10px;
}

.week-arrow {
  background: none;
  border: none;
  color: #E9E5DC;
  font-size: 18px;
  cursor: pointer;
  padding: 4px 10px;
  transition: opacity 0.2s;
}

.week-arrow:hover {
  opacity: 0.7;
}

.popup {
  display: none;
  background: #f7f4ee;
  padding: 20px;
  border-radius: 12px;
  position: fixed;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  width: 260px;
  z-index: 10;
}

.tilmeld-btn {
margin-top: 10px;
background-color: #85A6E3;
padding: 10px 20px;
border: none;
border-radius: 10px;
font-size: 1rem;
cursor: pointer;
}