:root {
  --primary-color: #b18b08;
  --secondary-color: #f8e771;
}

:target {
  scroll-margin-top: 150px;
}

/* syncopate-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Syncopate';
  font-style: normal;
  font-weight: 400;
  src: url('../webfonts/syncopate-v24-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* syncopate-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Syncopate';
  font-style: normal;
  font-weight: 700;
  src: url('../webfonts/syncopate-v24-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* audiowide-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Audiowide';
  font-style: normal;
  font-weight: 400;
  src: url('../webfonts/audiowide-v22-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* nunito-sans-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 300;
  src: url('../webfonts/nunito-sans-v19-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* nunito-sans-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../webfonts/nunito-sans-v19-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* nunito-sans-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../webfonts/nunito-sans-v19-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* Defaults */

* {
  scroll-behavior: smooth;
}

*:focus {
  outline: none;
}

body {
  font-family: 'Nunito Sans', sans-serif;
  background-color: #000000;
  color: #ffffff;
  font-weight: 300;
}

main {
  min-height: calc(100vh - 90px);
}

main.page_404 {
  padding: 250px 0 100px 0;
  font-size: 20px;
}

h1,
h2,
h3,
h4 {
  font-family: 'Syncopate';
  color: var(--secondary-color);
  text-transform: uppercase;
  font-weight: 700;
}

b, strong {
  font-weight: 700;
}

.container-fluid {
  max-width: 1920px;
  padding-left: 100px;
  padding-right: 100px;
}

#particles-js {
  height: 100vh !important;
  width: 100vw !important;
  z-index: 0;
  top: 0;
  right: 0;
  position: fixed;
}

/* Header */

header {
  padding: 30px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.3s;
  z-index: 999;
}

header.scrollstate {
  padding: 15px 0;
  background-color: #000000;
}

header .row {
  position: relative;
}

header .logo img {
  height: 125px;
  transition: all 0.3s;
}

header.scrollstate .logo img {
  height: 100px;
}

header .navigation nav ul {
  text-align: right;
  margin: 0;
  padding: 0;
}

header .navigation nav ul li {
  list-style: none;
  display: inline-block;
  margin-left: 30px;
}

header .navigation nav ul li a {
  color: #ffffff;
  font-size: 20px;
  transition: all 0.3s;
}

header .navigation nav ul li a:hover {
  color: var(--primary-color);
  text-decoration: none;
}

header .navigation nav ul li.button a {
  display: inline-block;
  background-color: var(--secondary-color);
  color: #000000;
  border-radius: 50px;
  font-size: 20px;
  padding: 20px 30px;
  transition: all 0.3s;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
}

header .navigation nav ul li.button a:hover {
  background-color: var(--primary-color);
  color: #ffffff;
  text-decoration: none;
}

header:has(+ main > .hero) {
  background: none;
}

header.scrollstate:has(+ main > .hero) {
  background-color: #000;
}

.mobile_nav_open {
  display: none;
  position: absolute;
  right: 0;
  color: var(--secondary-color);
  font-size: 30px;
  cursor: pointer;
  transition: all 0.3s;
}

.mobile_nav_open:hover {
  color: var(--primary-color);
}

.mobile_nav_headline {
  display: none;
  text-transform: uppercase;
  cursor: pointer;
  padding: 10px;
  background-color: var(--secondary-color);
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: #000000;
  letter-spacing: 1px;
  font-size: 22px;
}

/* Button */

a.button {
  display: inline-block;
  background-color: var(--secondary-color);
  color: #000000;
  border-radius: 50px;
  font-size: 20px;
  padding: 20px 30px;
  transition: all 0.3s;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  cursor: pointer;
}

a.button:hover {
  background-color: var(--primary-color);
  color: #ffffff;
  text-decoration: none;
}

/* Hero */

section.hero {
  width: 100%;
}

section.hero .hero_content {
  padding: 200px 0 100px 0;
  min-height: 100vh;
}

section.hero .hero_content span {
  font-size: 20px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-weight: 700;
}

section.hero .hero_content span i {
  color: var(--primary-color);
  font-size: 30px;
  padding-right: 10px;
  display: inline-block;
}

section.hero h1 {
  font-weight: 400;
  text-transform: uppercase;
  color: var(--secondary-color);
  margin-bottom: 30px;
}

section.hero h1 strong {
  font-weight: 700;
}

section.hero p {
  font-size: 20px;
  text-align: justify;
}

section.hero p:has(+ a.button) {
  margin-bottom: 30px;
}

section.hero .hero_content img {
  width: 100%;
}

/* Plans */

section.plans .introduction {
  text-align: center;
  font-size: 20px;
  margin-bottom: 50px;
}

section.plans .introduction h2 {
  font-weight: 700;
  text-transform: uppercase;
}

section.plans .plan_single {
  margin-bottom: 30px;
}

section.plans .plan_single_inner {
  padding: 75px 30px 30px 30px;
  background-color: rgb(58, 58, 58);
  height: 100%;
  color: #ffffff;
  border-radius: 15px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;  
}

section.plans .plan_single_inner .category {
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 15px;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
  font-size: 20px;
  display: inline-block;
  padding: 10px 20px;
  font-family: 'Syncopate';
  font-weight: 700;
  text-transform: uppercase;
  background-color: var(--primary-color);
}

section.plans .plan_single_inner h3 {
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
}

section.plans .plan_single_inner ul {
  margin: 0 0 30px 0;
  padding: 0;
}

section.plans .plan_single_inner ul li {
  list-style: none;
  padding-left: 30px;
  margin-bottom: 10px;
  position: relative;
  font-size: 20px;
}

section.plans .plan_single_inner ul li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "\f00c";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}

section.plans .plan_single_inner .plan_single_price {
  display: flex;
  justify-content: space-between;
  align-self: flex-end;
  width: 100%;
  margin-top: auto;
  gap: 20px;
  align-items: center;
}

section.plans .plan_single_inner .plan_single_price span {
  display: block;
  line-height: 1.3;
  font-size: 20px;
  font-weight: 700;
}

/* Guests */

section.guests .introduction {
  text-align: center;
  font-size: 20px;
  margin-bottom: 50px;
}

section.guests .introduction h2 {
  font-weight: 700;
  text-transform: uppercase;
}

section.guests .guests_slider_image {
  margin-bottom: 30px;
}

section.guests .guest_single {
  text-align: center;
  font-size: 20px;
}

section.guests .guest_single img {
  max-width: 100%;
  height: 250px;
  width: 250px;
  border-radius: 100%;
  object-fit: cover;
  margin: auto;
  transform: scale(0.8);
  transition: all 0.3s;
  opacity: 0.8;
}

section.guests .guest_single.slick-current img {
  transform: scale(1);
  opacity: 1;
}

section.guests .guest_single span {
  display: block;
}

section.guests .guest_single span.name {
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 30px;  
}

section.guests .slick-arrow {
  font-size: 40px;
  opacity: 0.8;
  transition: all 0.3s;
  cursor: pointer;
  position: absolute;
  z-index: 8;
  left: 225px;
  top: 130px;
}

section.guests .slick-arrow.fa-chevron-right {
  right: 225px;
  left: initial;
}

section.guests .slick-arrow:hover {
  opacity: 1;
}

section.guests .slick-dots {
  margin: 0;
  padding: 30px 0 0 0;
  text-align: center;
}

section.guests .slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

section.guests .slick-dots li button {
  font-size: 0px;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  border: none;
  background-color: var(--secondary-color);
  transition: all 0.3s;
}

section.guests .slick-dots li.slick-active button,
section.guests .slick-dots li button:hover {
  background-color: var(--primary-color);
}

/* Logos */

.logo_slider {
  background-color: #ffffff;
  padding: 15px 0;
  position: relative;
}

.logo_slider strong {
  display: block;
  text-align: center;
  color: var(--primary-color);
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 700;
  font-family: 'Syncopate';
  margin-bottom: 15px;
  padding: 0 15px;
}

.logo_slider .logos_wrap img {
  height: 125px;
  padding: 15px 30px;
  object-fit: contain;
}


/* Tabs */

section.tabs .tabs_headline {
  padding: 30px 0;
  background-color: rgb(58, 58, 58);
  position: relative;
  color: #ffffff;
}

section.tabs .tabs_handle {
  background-color: rgb(58, 58, 58);
  text-align: center;
  position: relative;
  margin-bottom: 100px;
  padding-bottom: 30px;
}

section.tabs .tabs_handle .tabs_handle_text {
  text-align: left;
  font-size: 20px;
  column-count: 2;
  column-gap: 60px;
  margin-bottom: 50px;
}

section.tabs .tabs_handle .tabs_handle_text strong {
  margin-top: 0;
  display: flex;
  align-items: center;
  padding: 5px 10px;
  background-color: var(--secondary-color);
  color: #000000;
  margin-bottom: 10px;
}

section.tabs .tabs_handle .tabs_handle_text strong i {
  color: #000000;
  font-size: 22px;
  margin-right: 10px; 
}

section.tabs .tabs_handle .tabs_handle_wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

section.tabs .tabs_handle .tabs_handle_single {
  padding: 30px;
  cursor: pointer;
  transition: all 0.3s;
  color: #ffffff;
  width: 33.33%;
}

section.tabs .tabs_handle i {
  color: var(--secondary-color);
  display: block;
  font-size: 50px;
}

section.tabs .tabs_handle strong {
  display: block;
  color: #ffffff;
  font-size: 16px;
  margin-top: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

section.tabs .tabs_handle .tabs_handle_single.active {
  background-color: var(--secondary-color);
}

section.tabs .tabs_handle .tabs_handle_single:hover {
  background-color: var(--primary-color);
}

section.tabs .tabs_handle .tabs_handle_single.active i,
section.tabs .tabs_handle .tabs_handle_single.active strong {
  color: #000000;
}

section.tabs .tabs_handle .tabs_handle_single:hover i,
section.tabs .tabs_handle .tabs_handle_single.active:hover strong {
  color: #ffffff;
}

section.tabs .tabs_content .tabs_content_single {
  display: none;
}

section.tabs .tabs_content .tabs_content_single.active {
  display: block;
}

section.tabs .tabs_content .texthalf {
  text-align: justify;
  font-size: 20px;
}

section.tabs .tabs_content .texthalf h3 {
  text-align: left;
}

section.tabs .tabs_content .imagehalf {
  position: relative;
}

section.tabs .tabs_content img {
  height: 100%;
  width: calc(100% - 30px);
  position: absolute;
  top: 0;
  left: 15px;
  border-radius: 30px;
  object-fit: cover;
}

/* Event */

section.event {
  text-align: justify;
  font-size: 20px;
}

section.event h2 {
  font-weight: 700;
  text-transform: uppercase;
  text-align: left;
}

section.event .event_textwrap {
  padding-right: 50px;
}

section.event .slider_column {
  position: relative;
}

section.event .event_imageslider {
  position: absolute;
  top: 0;
  left: 15px;
  height: 100%;
  width: calc(100% - 30px);
}

section.event .event_imageslider *,
section.event .event_imageslider {
  height: 100%;
}

section.event .event_imageslider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

/* Contact */

section.contact *:focus {
  outline: 2px solid var(--secondary-color);
}

section.contact img {
  width: 100%;
  border-radius: 15px;
}

section.contact h2 {
  font-weight: 700;
  margin-bottom: 30px;
  text-transform: uppercase;
}

section.contact .altcha-label {
  margin-bottom: 0;
}

section.contact span.required {
  color: #9c0000;
}

section.contact form input,
section.contact form textarea,
section.contact form select {
  width: 100%;
  border-radius: 3px;
  border: none;
  padding: 10px;
  background-color: rgba(255,255,255,0.8);
  color: #000000;
}

section.contact form select {
  cursor: pointer;
  appearance: none;
  background-image: url('/wp-content/themes/medianight/assets/img/chevron-down-solid-full.svg');
  background-size: 15px;
  background-repeat: no-repeat;
  background-position: calc(100% - 15px) center;
}

section.contact form input[type="checkbox"] {
  width: auto;
}

section.contact form label {
  width: 100%;
}

section.contact form input[type="submit"] {
  display: inline-block;
  background-color: var(--secondary-color);
  color: #000000;
  border-radius: 50px;
  font-size: 20px;
  padding: 20px 30px;
  transition: all 0.3s;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  width: auto;
}

section.contact form input[type="submit"]:hover {
  background-color: var(--primary-color);
  color: #ffffff;
  text-decoration: none;
}

/* Text */

section.text a:not(.button) {
  color: var(--secondary-color);
  transition: all 0.3s;
}

section.text a:not(.button):hover {
  color: var(--primary-color);
  text-decoration: none;
}

/* Footer */

footer {
  padding: 1rem 0;
  text-align: center;
  line-height: 1.2;
}

footer img {
  width: 150px;
}

footer hr {
  border-color: #ffffff;
}

footer a {
  color: #ffffff;
  transition: all 0.3s;
}

footer a:hover {
  opacity: 0.8;
  text-decoration: none;
  color: #ffffff;
}

footer a:has(img):hover {
  opacity: 1
}

footer nav,
footer nav * {
  display: inline-block;
}

footer ul {
  margin: 0;
  padding: 0;
}

footer ul li {
  list-style: none;
}

/* Responsive */

@media only screen and (max-width: 1650px) and (min-width: 992px) {

  section.plans .plan_single_inner .plan_single_price {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  section.plans .plan_single_inner .plan_single_price span {
    margin-top: 15px;
  }

}


@media only screen and (max-width: 1460px) {

  section.tabs .tabs_handle .tabs_handle_wrapper {
    justify-content: center;
  }

}

@media only screen and (max-width: 991px) {

  section.tabs .tabs_handle .tabs_handle_text,
  section.tabs .tabs_content .texthalf {
    margin-bottom: 30px;
  }

  section.tabs .tabs_content .tabs_content_single {
    flex-direction: column-reverse;
  }

  section.tabs .tabs_content img {
    position: initial;
    width: 100%;
    height: auto;
  }

  section.tabs .tabs_handle .tabs_handle_single {
    width: 50%;
  }   

  .mobile_nav_open {
    display: block;
  }

  .mobile_nav_headline {
    display: flex;
  }

  .container-fluid {
    max-width: 720px;
    padding-left: 50px;
    padding-right: 50px;    
  }

  section.event .event_textwrap {
    margin-bottom: 30px;
    padding-right: 0;
  }

  header .navigation {
    position: fixed;
    top: 0;
    right: -100%;
    width: 400px;
    max-width: 80%;
    background: #000;
    height: 100vh;
    padding: 0;
    transition: all 0.3s;
    z-index: 999;
    box-shadow: -5px 0px 15px 10px rgba(255,255,255,0.05);
  }

  header .navigation.open {
    right: 0;
  }

  header .navigation nav ul {
    text-align: left;
  }

  header .navigation nav ul li {
    display: block;
    margin: 0;
  }

  header .navigation nav ul li:not(.button) a {
    display: block;
    padding: 10px;
  }

  header .navigation nav ul li.button {
    padding-left: 10px;
    padding-top: 10px;
  }

  section.hero .hero_content {
    padding: 335px 0 150px 0;
  }

  section.guests .slick-arrow {
    left: 125px;
  }

  section.guests .slick-arrow.fa-chevron-right {
    right: 125px;
  }

  section.contact .row {
    flex-direction: column-reverse;
  }

  section.contact form {
    margin-bottom: 30px;
  }

  .wp-block-spacer {
    max-height: 150px;
  }  

  #particles-js + .wp-block-spacer {
    max-height: 200px;  
  }  

  section.guests .guest_single img {
    width: 175px;
    height: 175px;
  }

  section.event .event_imageslider {
    width: 100%;
    position: initial;
    max-height: 500px;
  }

}

@media only screen and (max-width: 767px) {

  section.tabs .tabs_handle .tabs_handle_text {
    column-count: 1;
  }

  .logo_slider strong {
    font-size: 25px;
  } 

  .container-fluid {
    max-width: 540px;
    padding-left: 15px;
    padding-right: 15px;  
  }

  section.guests .slick-arrow {
    left: 0;
  }

  section.guests .slick-arrow.fa-chevron-right {
    right: 0;
  }


}

@media only screen and (max-width: 565px) {

	section.hero p,
	section.tabs .tabs_handle .tabs_handle_text,
	section.tabs .tabs_content .texthalf,
	section.event {
		text-align: left;
	}

  .logo_slider strong {
    font-size: 18px;
  }

  .wp-block-spacer {
    max-height: 100px;
  }

  section.hero .hero_content {
    padding: 235px 0 100px 0;
  }  

  h1,
  h2,
  h3,
  h4 {
    hyphens: auto;
  }

  h1 {
    font-size: 2rem
  }

  h2 {
    font-size: 1.6rem
  }  

  section.plans .plan_single_inner .plan_single_price {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }

  section.plans .plan_single_inner .plan_single_price span {
    margin-top: 15px;
  }

  footer {
    font-size: 14px;
  }

  section.guests .guests_slider_image {
    margin-left: -15px;
    margin-right: -15px;
  }

}