@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&display=swap');

:root {
  /* Width Variables */
  --width-full: 100%;
  --width-12col: 1200px;

  /* Grid Settings */
  --grid-gap: 32px;
  --padding-default: 20px;

  /* Color swatches */
  --background-color-navigation: #00000040;
  --background-color-light: #ededed;
  --color-dark: #1b1e2e;
  --color-orange: #db8127;
  --color-dark-blue: #1f3646;
}

* {
  /* Reset CSS */
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body,
html {
  width: var(--width-full);
  font-family: 'Inter', sans-serif;
  font-size: 29px;
  font-weight: 400;
  font-style: normal;
  background-color: var(--color-dark);
  color: var(--color-dark);
}

ul {
  list-style: none;
}

h1,
h3,
h4,
h5,
h6,
p {
  margin-top: 0;
}

/*Button*/
.button {
  background-color: var(--color-orange);
  box-shadow: -4px 6px 20px 0 #00000015;
  border-radius: 5px;
  padding: 10px 30px;
  color: var(--background-color-light);
  text-transform: uppercase;
  text-align: center;
  font-family: Inter;
  font-size: 25px;
  font-weight: 600;
  list-style: none;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.button:hover,
.button:focus-visible {
  color: #ffffff;
  box-shadow: -4px 6px 20px 0 #00000040;
  border: solid 1px #af671f;
  transform: scale(1.04);
}

/* header start */

.container {
  width: var(--width-full);
  height: 100px;
  background-color: var(--background-color-navigation);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
}

.container-menu {
  width: var(--width-12col);
  margin: 0 auto;
  padding: 0 20px 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-navigation ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--grid-gap);
}

.header-navigation ul a {
  text-decoration: none;
  text-transform: capitalize;
  color: var(--background-color-light);
  font-size: 25px;
  font-weight: 500;
  display: flex;
  align-items: center;
  transition: color 0.2s ease, transform 0.2s ease;
}

.header-navigation p {
  text-transform: capitalize;
  color: var(--color-orange);
  font-size: 25px;
  font-weight: 600;
}

.header-navigation ul a:hover,
.header-navigation ul a:focus-visible {
  color: #ffffff;
  transform: translateY(-1.5px);
}

/* Navigation End */

/* HOME PAGE */

/* 1st screen */
.hero-section {
  margin: 0 auto;
}

.hero-top {
  background-image: url('../img/brodrene_lovehjerte_skarntyden-3.jpg');
  height: fit-content;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  border: none;
}


.hero-top-text {
  width: var(--width-12col);
  margin: 0 auto;
  padding: 240px 0px 140px 20px;
  display: flex;
  flex-direction: column;
  color: var(--background-color-light);
  justify-content: space-between;
  height: 100%;
}

.hero-top-text-upp {
  font-family: 'Source Serif 4', sans-serif;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  font-size: 25px;
  margin-bottom: -12px;
}

.hero-top-text h1 {
  font-family: 'Inter', sans-serif;
  font-size: 115px;
  font-weight: 700;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.12);
  text-transform: uppercase;
  line-height: 100px;
  margin-bottom: 20px;
}

.hero-top-text h1 span {
  font-size: 90px;
  font-weight: 700;
}

.hero-top-text h3 {
  color: #18243c;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  font-family: 'Source Serif 4', sans-serif;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 130px;
}

.hero-top-text ul li {
  font-family: 'Source Serif 4';
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: 500;
}

/* 1st screen - end*/

/* Text - 2nd screen */

.hero-bottom {
  width: var(--width-12col);
  margin: 0 auto;
  padding-bottom: 160px;
  padding-left: var(--padding-default);
  padding-right: var(--padding-default);
}

.hero-bottom-text {
  padding: 60px 0px;
  color: var(--background-color-light);
  font-family: 'Inter';
  font-size: 36px;
  font-weight: 400;
  line-height: 55px;
  height: fit-content;
}

.hero-bottom-text span {
  color: var(--color-orange);
  font-weight: 700;
}

/* 2nd screen - end*/

/* Hvem - 3d screen*/

.hvem {
  border-top: solid 10px #db8127;
  background-color: var(--color-dark-blue);
}

.hvem-section {
  width: var(--width-12col);
  margin: 0 auto;
  color: var(--background-color-light);
  display: flex;
  justify-content: space-between;
  padding: 80px 20px 80px 20px;
}

.hvem-section-text {
  width: 50%;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hvem-section-text h2 {
  color: var(--color-orange);
  font-size: 55px;
  font-weight: 600;
  text-transform: uppercase;
}

.hvem-section-text ul {
  padding: 60px 100px 20px 30px;
}

.hvem-section-text ul li {
  margin-bottom: 20px;
  font-family: 'Source Serif 4';
  font-size: 30px;
  font-weight: 400;
  list-style: disc;
}

.hvem-section img {
  width: 50%;
  height: 520px;
  border: solid 1px var(--color-orange);
  border-radius: 5px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* 3d screen - end*/

/*Hvorfor1 -  4d block*/

.hvorfor {
  background-image: url('../img/born-besejrer-dragen_skarntyden-1.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: var(--width-full);
    display: flex;
      align-items: center;
      min-height: 900px;
}

.hvorfor-top {
  width: var(--width-12col);
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 450px 20px 0 20px;
  align-items: center;
}

.hvorfor-top-text {
  width: 100%;
  height: fit-content;
  margin: 0 auto;
  display: flex;
  color: var(--color-dark);
  justify-content: space-between;
  text-align: start;
  text-transform: uppercase;
}

.hvorfor-top-text h2 {
  font-size: 70px;
  font-weight: 700;
}

.hvorfor-top-text-p {
  font-size: 45px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.hvorfor-top-text span {
  display: none;
}

.button-dragon {
        margin-top: 16px;}

/* 4d block - end*/

/* Hvorfor2  - 5d block*/

.hvorfor-section ul {
  width: var(--width-12col);
  margin: 0 auto;
  display: flex;
  color: var(--color-dark);
  justify-content: space-between;
  padding: 60px 20px;
  gap: var(--grid-gap);
  flex-wrap: nowrap;
}

.hvorfor-section ul li {
  background-color: var(--color-orange);
  padding: 60px 30px;
  width: calc((100% - var(--grid-gap) * 2) / 3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: 'Source Serif 4';
  color: var(--color-dark);
  font-size: 30px;
  gap: var(--grid-gap);
  border-radius: 5px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.hvorfor-section ul li:hover,
.hvorfor-section ul li:focus-visible {
  transform: scale(1.1);
}

.hvorfor-persone-p {
  font-style: italic;
  font-weight: 400;
}

.hvorfor-persone {
  font-weight: 700;
}

/* 5d block - end*/

/* Vores teater- 6d block */
.teater {
  background-color: var(--background-color-light);
  border-top: solid 10px var(--color-orange);
  width: var(--width-full);
}

.teater-text {
  width: var(--width-12col);
  margin: 0 auto;
  padding: 60px 20px;
}

.teater-text h2 {
  margin-bottom: 50px;
  color: var(--color-orange);
  font-size: 60px;
  font-weight: 600;
  text-transform: uppercase;
}

.teater-text p {
  font-family: 'Source Serif 4';
  font-size: 30px;
  font-weight: 400;
}

.teater-text a {
  font-family: 'Source Serif 4';
  font-size: 30px;
  font-weight: 500;
  color: var(--color-orange);
  transition: color 0.2s ease, transform 0.2s ease;
}

.teater-text a:hover,
.teater-text a:focus-visible {
  color: var(--color-dark-blue);
}

.teater-foto {
  width: var(--width-12col);
  height: 550px;
  margin: 0 auto;
  padding: 0 20px 60px 20px;
  display: grid;
  gap: var(--grid-gap);
  grid-template-columns: repeat(12, 1fr);
}

.teater-foto img {
  border: solid 1px var(--color-orange);
  border-radius: 5px;
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%;
  transition: color 0.2s ease, transform 0.2s ease;
}

.teater-foto img:focus-visible,
.teater-foto img:hover {
  transform: scale(1.1);
}

.teater-foto-1column {
  grid-column: 1 / span 5;
  display: flex;
}

.teater-foto-2column {
  grid-column: 6 / span 2;
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: var(--grid-gap);
}

.teater-foto-3column {
  grid-column: 8 / span 3;
  display: grid;
  grid-template-rows: 0.6fr 1fr;
  gap: var(--grid-gap);
}

.teater-foto-4column {
  grid-column: 11 / span 2;
}

/*6 block - end*/
/* HOME PAGE-End */

/* Footer Start */

.footer {
  min-height: 200px;
  border-top: 20px solid var(--color-orange);
  width: var(--width-full);
  display: flex;
  align-items: center;
}

.footer-boxes {
  width: var(--width-12col);
  height: 100%;
  margin: 0 auto;
  padding: 20px;
  display: grid;
  grid-template-columns: 0.8fr 0.6fr 1fr 0.8fr;
  gap: var(--grid-gap);
  place-items: center;
  justify-items: stretch;
}

.footer-box-one img,
.footer-box-four img {
  width: 100%;
  display: block;
}

.footer-logo {
  display: inline-block;
  transition: transform 0.2s ease;
}

.footer-logo:hover,
.footer-logo:focus-visible {
  transform: scale(1.04);
  opacity: 0.9;
}

.footer-box-two {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--grid-gap);
}

.footer-box-two a {
  color: var(--background-color-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-box-two a:hover,
.footer-box-two a:focus-visible {
  color: var(--color-orange);
  transform: scale(1.08);
}

.footer-box-three {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}

.footer-box-three ul {
  list-style: none;
}

.footer-box-three ul li a {
  display: inline-block;
  text-decoration: none;
  color: var(--background-color-light);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.5;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-box-three ul li a:hover,
.footer-box-three ul li a:focus-visible {
  color: var(--color-orange);
  transform: translateY(-1.5px);
}

/* Footer End */

/* Praktisk info side start */
/* Hero section start */

.info-hero {
  border-bottom: 10px solid var(--color-orange);
}

.info-hero-box {
  width: var(--width-12col);
  padding: 100px 20px 0 20px;
  margin: 0 auto;
}

.info-hero-container {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--grid-gap);
}

.info-hero-container h1 {
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.12);
  font-weight: 600;
  font-size: 36px;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--background-color-light);
}

.info-hero-image {
  height: auto;
  width: 100%;
  align-self: end;
  justify-self: end;
}

.info-hero-image img {
  border: solid 1px var(--color-orange);
  border-radius: 5px;
  object-fit: cover;
  object-position: center;
  display: block;
  width: 100%;
  height: auto;
}

/* info detail section */

.info-details {
  height: auto;
  width: var(--width-full);
  background-color: var(--color-dark-blue);
  border-bottom: 10px solid var(--color-orange);
}

.info-details-container {
  width: var(--width-12col);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 20px 70px 20px;
}

.info-details-container-text {
  width: 100%;
  height: auto;
  display: flex;
  gap: var(--grid-gap);
  margin-bottom: var(--grid-gap);
}

.info-details-item {
  width: 25%;
}

.info-details-item h2 {
  color: var(--color-orange);
  font-size: 32px;
  font-weight: 800;
  margin-bottom: var(--grid-gap);
}

.info-details-item p {
  color: var(--background-color-light);
  font-family: 'Source Serif 4', serif;
  font-size: 30px;
  line-height: 1.5;
  font-weight: 600;
}

.info-details-container-box {
  width: 100%;
  display: flex;
  border-radius: 5px;
  margin-bottom: 80px;
  overflow: hidden;
}

.info-details-container-box-image {
  width: 50%;
  height: 450px;
  border: solid 1px var(--color-orange);
}

.info-details-container-box-image img {
  object-fit: cover;
  object-position: center;
  display: block;
  height: 100%;
  width: 100%;
}

.info-details-container-box-text {
  width: 50%;
  background-color: var(--background-color-light);
  padding: 30px 27px;
  font-family: 'Source Serif 4', serif;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-details-container-box-text p {
  margin-bottom: 50px;
}

.info-details-container-ticket {
  display: flex;
  justify-content: center;
}

/* FAQ section */

.faq {
  width: var(--width-full);
  background-color: var(--background-color-light);
  border-bottom: 10px solid var(--color-orange);
}

.faq-text {
  width: var(--width-12col);
  margin: 0 auto;
  padding: 100px 20px;
}

.faq-text h3 {
  color: var(--color-orange);
  font-size: 55px;
  font-weight: 600;
  margin-bottom: 20px;
}

.faq-text h5 {
  font-size: 30px;
  font-family: 'Source Serif 4', serif;
  margin-top: 70px;
}

.faq-text h5:first-of-type {
  margin-top: 0;
}

.faq-text p {
  font-family: 'Source Serif 4', serif;
  font-size: 28px;
  margin-top: 20px;
}

.faq-text ul {
  list-style-type: none;
  padding-left: 0;
}

.faq-text ul li {
  font-family: 'Source Serif 4', serif;
  font-size: 28px;
  margin-top: 10px;
  padding-left: 20px;
  position: relative;
}

.faq-text ul li::before {
  content: '- ';
  position: absolute;
  left: 0;
}

/* Find os her section */
.find-os {
  width: var(--width-full);
  background-color: var(--color-dark-blue);
}

.find-os-container {
  width: var(--width-12col);
  margin: 0 auto;
  padding: 80px 20px;
  color: var(--background-color-light);
}

.find-os-text-one h3 {
  font-size: 55px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.find-os-text-one p {
  font-family: 'Source Serif 4', serif;
  font-size: 30px;
  line-height: 1.5;
  margin-bottom: 60px;
}

.find-os-text-two p {
  font-family: 'Source Serif 4', serif;
  font-size: 30px;
  line-height: 1.5;
  margin: 30px 0 60px 0;
}

.find-os-embed-map {
  border: 1px solid var(--color-orange);
  overflow: hidden;
  width: 100%;
  border-radius: 5px;
}

.find-os-embed-map iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

.find-os-ticket-buy {
  display: flex;
  justify-content: center;
}

/* Praktisk info side slut */

/* Om Skarntyden start */

/* Hero section start */

.hero-section-om {
  background-image: url('../img/menneskerne-bag-brødrene-løvehjerte.jpg');
  width: var(--width-full);
  min-height: 870px;
  border-bottom: 10px solid var(--background-color-light);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-top-om {
  color: var(--background-color-light);
  width: var(--width-12col);
  margin: 0 auto;
  justify-content: center;
  display: flex;
  padding: 200px 20px 0 20px;
}

.hero-top-om h1 {
  text-transform: uppercase;
  font-size: 50px;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.12);
}

/* Text info one start */

.text-info-one {
  width: var(--width-full);
  background-color: var(--color-orange);
}

.text-info-one-text {
  width: var(--width-12col);
  margin: 0 auto;
  padding: 100px 20px;
  display: flex;
  flex-direction: column;
  gap: var(--grid-gap);
  color: var(--color-dark);
}

.text-info-one-text p {
  line-height: 1.6;
  font-family: 'Source Serif 4', serif;
  font-size: 32px;
}

/* One image info start */

.one-image-info {
  width: var(--width-full);
  background-color: var(--background-color-light);
  border-bottom: 10px solid var(--color-orange);
}

.one-image-info-container {
  width: var(--width-12col);
  margin: 0 auto;
  padding: 100px 20px 60px 20px;
  display: flex;
}

.one-image-info-text {
  width: 50%;
  padding-right: 20px;
}

.one-image-info-text h2 {
  font-family: 'Inter', sans-serif;
  font-size: 46px;
  text-transform: uppercase;
  margin-bottom: 60px;
  color: var(--color-orange);
}

.one-image-info-text p {
  font-family: 'Source Serif 4', serif;
  font-size: 30px;
  line-height: 1.5;
  margin-bottom: 60px;
}

.one-image-info-image {
  width: 50%;
  height: 550px;
  border: solid 1px var(--color-orange);
  border-radius: 5px;
}

.one-image-info-image img {
  object-fit: cover;
  object-position: center;
  display: block;
  height: 100%;
  width: 100%;
}

/* Multiple image start */

.multiple-image-info {
  width: var(--width-full);
  background-color: var(--color-dark-blue);
}

.multiple-image-info-container {
  width: var(--width-12col);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding: 100px 0;
  gap: 40px;
}

.multiple-image-container-text-one,
.multiple-image-container-text-two {
  color: var(--background-color-light);
  padding: 0 20px;
}

.multiple-image-container-text-one h2 {
  font-size: 50px;
  text-transform: uppercase;
  margin-bottom: 50px;
}

.multiple-image-container-text-one p {
  font-family: 'Source Serif 4', serif;
  font-size: 30px;
  line-height: 40px;
  margin-top: 60px;
}

.multiple-image-container-image {
  width: var(--width-12col);
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  height: 540px;
}

.multiple-image-container-image-one,
.multiple-image-container-image-two-img-one,
.multiple-image-container-image-two-img-two,
.multiple-image-container-image-three {
  border: solid 1px var(--color-orange);
  border-radius: 5px;
}

.multiple-image-container-image-one {
  width: 45%;
  background-image: url(../img/fire-mennesker-i-kostumer.jpg);
  background-position: -6rem;
  background-size: cover;
  margin-right: 30px;
}

.multiple-image-container-image-two {
  display: flex;
  flex-direction: column;
  width: 25%;
}

.multiple-image-container-image-two-img-one {
  height: 33%;
  background-image: url(../img/to-mennesker-i-kostumer.jpg);
  background-position: -20px top;
  background-size: 140%;
  margin-bottom: 30px;
}

.multiple-image-container-image-two-img-two {
  height: 67%;
  background-image: url(../img/mennesker-i-kostumer.jpg);
  background-position: center;
  background-size: cover;
}

.multiple-image-container-image-three {
  width: 25%;
  background-image: url(../img/mand-på-en-stol-i-kostume.jpg);
  margin-left: 30px;
  background-size: 170%;
  background-position: bottom center;
}

.multiple-image-container-text-two h4 {
  font-family: 'Source Serif 4', serif;
  font-size: 32px;
  font-weight: 600;
}

/* No image info two start */

.no-image-section-two {
  width: var(--width-full);
  background-color: var(--background-color-light);
}

.no-image-section-two-container {
  width: var(--width-12col);
  margin: 0 auto;
  padding: 100px 20px;
}

.no-image-section-two-container h3 {
  color: var(--color-orange);
  font-size: 52px;
  font-weight: 600;
  margin-bottom: 60px;
}

.no-image-section-two-container p {
  font-family: 'Source Serif 4', serif;
  font-size: 30px;
  line-height: 1.5;
  margin-bottom: 40px;
}

.her-button {
  color: var(--color-orange);
  font-weight: 600;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.her-button:hover,
.her-button:focus-visible {
  color: var(--color-dark);
  transform: translateY(-1px);
}

.media-button {
  color: var(--color-dark);
  font-weight: 600;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.media-button:hover,
.media-button:focus-visible {
  color: var(--color-orange);
  transform: translateY(-1px);
}

/* Om Skarntyden slut */
