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

img {
  display: block;
  width: 100%;
}

/* Break point */
html, body {
  height: 100%;
  margin: 0;
  scroll-behavior: smooth;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main-content {
  flex: 1;
}

.full-width {
  width: 100%;
  background-color: #f9f9f9;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content-block {
  width: 100%;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header {
  padding: 2rem 1rem;
}

.small-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  border: none;
  padding: 0.5em 1.5em;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 30px;
  background-color: #95709b;
  font-weight: 500;
  color: #FFF;
  transition: transform 0.2s ease;
}
.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: 1rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.no-scroll {
  overflow: hidden;
}

.navbar {
  position: sticky;
  top: 0;
  background-color: #FFF;
  z-index: 1000;
  transition: transform 0.3s ease-in-out;
}
.navbar.hidden {
  transform: translateY(-100%);
}
.navbar .nav-container {
  margin: 1em auto;
  max-width: 1440px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1440px) {
  .navbar .nav-container {
    padding: 0 1rem;
  }
}
@media (max-width: 960px) {
  .navbar .nav-container {
    display: block;
    border-bottom: none;
    position: relative;
    z-index: 1000;
    padding: 0;
  }
}
.navbar .nav-container .logo-wrapper .logo {
  font-weight: 700;
  color: #000;
  font-size: large;
  text-transform: uppercase;
}
.navbar .nav-container .logo-wrapper .nav-logo {
  width: 150px;
  height: auto;
  padding: 0.75rem 0;
}
@media (max-width: 960px) {
  .navbar .nav-container .logo-wrapper {
    padding: 0 1rem;
  }
}
.navbar .nav-container .nav-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  display: none;
}
@media (max-width: 960px) {
  .navbar .nav-container .nav-toggle {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 1rem;
  }
}
.navbar .nav-container .nav-menu {
  list-style: none;
  display: flex;
  gap: 2rem;
  background-color: #FFF;
}
@media (max-width: 960px) {
  .navbar .nav-container .nav-menu {
    height: 100vh;
    width: 40%;
    position: absolute;
    top: 100%;
    left: -100%;
    transition: left 0.3s ease;
    display: none;
  }
}
@media (max-width: 600px) {
  .navbar .nav-container .nav-menu {
    height: 100vh;
    max-width: 100%;
    width: 100%;
  }
}
.navbar .nav-container .nav-menu .nav-menu-list {
  display: flex;
  list-style-type: none;
  gap: 1rem;
  align-items: center;
  margin-bottom: 0;
}
@media (max-width: 960px) {
  .navbar .nav-container .nav-menu .nav-menu-list {
    padding: 2rem 1rem;
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
    font-size: 1.2rem;
  }
}
.navbar .nav-container .nav-menu .nav-menu-list .nav-link {
  text-decoration: none;
  font-weight: 500;
  color: #141414;
}
.navbar .nav-container .nav-menu .nav-menu-list .nav-link:hover {
  text-decoration: underline;
}
.navbar .nav-container .nav-menu .nav-menu-list .nav-link.btn-contact {
  color: #FFF;
}
.navbar .nav-container .nav-menu.active {
  display: flex;
  left: 0;
}
@media (max-width: 960px) {
  .navbar .nav-container .nav-menu {
    display: none;
  }
}

.footer {
  border-top: 0.5px solid #b1b1b1;
  background-color: #FFF;
  color: rgb(23, 23, 23);
  padding: 2rem 1rem;
}
.footer .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  .footer .footer-container {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.footer .footer-container .short-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
  text-align: center;
}
.footer .footer-container .short-info a {
  color: #141414;
  text-decoration: none;
}
.footer .footer-container .short-info a:hover {
  text-decoration: underline;
}
.footer .footer-container .short-info .social-media {
  display: flex;
  flex-direction: row;
  gap: 0.5em;
}
.footer .footer-container .short-info .social-media li {
  list-style-type: none;
}
.footer .footer-container .short-info .social-media li a:hover {
  cursor: pointer;
  opacity: 0.75;
}
.footer .footer-container .short-info .social-media li a .icon {
  width: 25px;
  height: auto;
}
.footer .footer-container .short-info .social-media li a .icon:hover {
  color: #95709b;
}
.footer .footer-container .support-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
}
.footer .footer-container .support-info .support {
  display: flex;
  flex-direction: row;
  gap: 0.5em;
}
.footer .footer-container .support-info .support li {
  list-style-type: none;
}
.footer .footer-container .support-info .support li a:hover {
  cursor: pointer;
}
.footer .footer-container .support-info .support li a .ebab {
  width: 130px;
  height: auto;
}
.footer .footer-container .support-info .support li a .kitekalle {
  width: 170px;
  height: auto;
}
.footer .footer-container .footer-bottom {
  flex-basis: 100%;
}
.footer .footer-container .footer-bottom p {
  margin-bottom: 1rem;
}
.footer .footer-container .footer-bottom .footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
.footer .footer-container .footer-bottom .footer-links a {
  color: #7a7a7a;
  text-decoration: none;
}
.footer .footer-container .footer-bottom .footer-links a:hover {
  text-decoration: underline;
}
@media (max-width: 600px) {
  .footer .footer-container .footer-bottom .footer-links {
    gap: 0.5rem;
  }
}

body {
  font-family: "Quattrocento Sans", sans-serif;
  color: #141414;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Quattrocento Sans", sans-serif;
  line-height: 1.2;
  font-weight: normal;
  margin-bottom: 0.5em;
  font-weight: 700;
  text-align: center;
}

h1 {
  font-size: clamp(2rem, 6vw, 3rem);
}

h2 {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
}

h3 {
  font-size: clamp(1.5rem, 4vw, 2rem);
}

h4 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

h5 {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
}

h6 {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

p {
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  line-height: 1.6;
  margin-bottom: 1em;
}

li {
  line-height: 1.6;
  font-size: clamp(1rem, 1.25vw, 1.125rem);
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.text {
  max-width: 36rem;
}
.text img {
  margin-bottom: 1rem;
}

article {
  justify-content: flex-start;
}

ul {
  list-style: inside;
  margin-bottom: 1rem;
}

ol {
  list-style: inside;
  margin-bottom: 1rem;
}

.hero {
  background-image: linear-gradient(to bottom, rgba(245, 246, 252, 0), rgba(117, 19, 93, 0)), url("/src/media/images/GKA25-Cape Verde-Caroline Englund-Day-3-1.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  min-height: 50vh;
  display: flex;
  justify-content: center;
}
.hero .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  margin: 1em;
  text-align: center;
}
.hero .hero-content h1 {
  font-variant: all-small-caps;
  letter-spacing: 1px;
  font-size: clamp(2.2rem, 6vw, 3rem);
  margin-bottom: 0.25rem;
}
.hero .hero-content .hero-tags {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 500;
  list-style: none;
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  margin: 1em;
  text-align: center;
}
.hero-content h1 {
  font-variant: all-small-caps;
  letter-spacing: 1px;
  font-size: clamp(2.2rem, 6vw, 3rem);
  margin-bottom: 0.25rem;
}
.hero-content .hero-tags {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 500;
  list-style: none;
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.news-start .news-wrapper {
  display: flex;
  flex-direction: row;
  gap: 1em;
}
.news-start .news-wrapper .news-block {
  flex: 1;
  background-color: #fff;
  border: 0.5px solid #b1b1b1;
  border-radius: 3px;
  transition: transform 0.2s ease;
}
.news-start .news-wrapper .news-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.news-start .news-wrapper .news-block a img {
  aspect-ratio: 16/9;
  object-fit: cover;
  width: 100%;
  height: auto;
  vertical-align: baseline;
  background-position: center;
}
.news-start .news-wrapper .news-block a .news-info {
  padding: 0.5rem;
}
.news-start .news-wrapper .news-block a .news-info .news-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  color: gray;
}
.news-start .news-wrapper .news-block a .news-info .tag {
  background-color: #eee;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-size: 0.75rem;
  text-transform: uppercase;
}
.news-start .news-wrapper .news-block a .news-info h3 {
  margin-top: 0.5em;
  color: #141414;
}
.news-start .news-wrapper .news-block a .news-info h3:hover {
  color: #141414;
}
.news-start .news-wrapper .news-block a:hover {
  text-decoration: none;
}
@media (max-width: 600px) {
  .news-start .news-wrapper {
    flex-direction: column;
    gap: 1em;
  }
}
.news-start .small-section {
  padding: 3rem 1rem;
}
@media (max-width: 600px) {
  .news-start .small-section {
    padding: 1.5rem 1rem 0 1rem;
  }
}
.news-start .small-section .btn-primary {
  justify-self: center;
}

.gallery .gallery-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 1em;
}
.gallery .gallery-wrapper a img {
  aspect-ratio: 16/9;
  object-fit: cover;
  width: 100%;
  height: 100%;
  vertical-align: baseline;
  background-position: center;
}
@media (max-width: 1200px) {
  .gallery .gallery-wrapper {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media (max-width: 960px) {
  .gallery .gallery-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .gallery .gallery-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

.contact {
  margin: 0 auto;
  max-width: 600px;
  background-color: #FFF;
  padding: 1em;
  border-radius: 3px;
  text-align: center;
  position: relative;
}
.contact .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: #333;
  cursor: pointer;
  padding: 0.2rem;
  line-height: 1;
  z-index: 10;
}
.contact .close:hover {
  color: #0077cc;
}
.contact .close:focus {
  outline: 2px solid #0077cc;
  outline-offset: 2px;
}
.contact .contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.5rem;
  align-items: center;
}
.contact .contact-form .input-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.contact .contact-form .input-wrapper input,
.contact .contact-form .input-wrapper textarea {
  padding: 0.8rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  width: 100%;
  border-radius: 3px;
  font-family: inherit;
  /* &:focus {
    outline: none;
    border-color: $primary-color;
    //box-shadow: 0 0 0 2px rgba($primary-color, 0.2);
  } */
}
.contact .contact-form .input-wrapper .submit-btn {
  border-radius: 3px;
  align-self: flex-end;
  padding: 0.9rem 1.4rem;
  background-color: none;
  /* color: white;
  font-size: 1rem; */
  border: 1px solid #141414;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 500;
}

.overlay-visible {
  display: block;
}

.about article {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.about article .btn-primary {
  align-self: center;
}
.about article .hero-content {
  align-self: center;
}
.about article h1 {
  align-self: center;
}
.about article h2 {
  align-self: center;
}
.about article h3 {
  align-self: center;
}
.about article h4 {
  align-self: center;
}

.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  padding: 1rem;
  display: none;
}
.lightbox-overlay .lightbox-content {
  max-width: 90%;
  max-height: 90%;
  text-align: center;
  color: white;
}
.lightbox-overlay .lightbox-content img, .lightbox-overlay .lightbox-content iframe {
  max-width: 100%;
  max-height: 70vh;
}
.lightbox-overlay .lightbox-content .caption {
  margin-top: 1rem;
  font-size: 1rem;
  opacity: 0.9;
}
.lightbox-overlay .lightbox-content .author {
  font-size: 0.8rem;
  color: #ccc;
}
.lightbox-overlay .lightbox-content .close-lightbox {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}
.lightbox-overlay .lightbox-prev,
.lightbox-overlay .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 1rem;
  z-index: 2001;
}
.lightbox-overlay .lightbox-prev {
  left: 1rem;
}
.lightbox-overlay .lightbox-next {
  right: 1rem;
}

.news .news-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.news .news-filters .filter-btn {
  padding: 0.4rem 1rem;
  background-color: #f0f0f0;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background-color 0.2s ease;
}
.news .news-filters .filter-btn.active {
  background-color: #222;
  color: #fff;
}
.news .news-filters .filter-btn:hover {
  background-color: #ddd;
}
.news .news-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1em;
}
.news .news-wrapper .news-block {
  background-color: #fff;
  border: 0.5px solid #b1b1b1;
  border-radius: 3px;
  transition: transform 0.2s ease;
}
.news .news-wrapper .news-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.news .news-wrapper .news-block a img {
  aspect-ratio: 16/9;
  object-fit: cover;
  width: 100%;
  height: auto;
  vertical-align: baseline;
  background-position: center;
}
.news .news-wrapper .news-block a .news-info {
  padding: 0.5rem;
}
.news .news-wrapper .news-block a .news-info .news-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  color: gray;
}
.news .news-wrapper .news-block a .news-info .tag {
  background-color: #eee;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-size: 0.75rem;
  text-transform: uppercase;
}
.news .news-wrapper .news-block a .news-info h3 {
  margin-top: 0.5em;
  color: #141414;
}
.news .news-wrapper .news-block a .news-info h3:hover {
  color: #141414;
}
.news .news-wrapper .news-block a:hover {
  text-decoration: none;
}
@media (max-width: 600px) {
  .news .news-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

.single-news {
  margin: 0 auto;
}
.single-news .single-news-nav {
  padding: 1rem 1rem 3rem 1rem;
}
.single-news .single-news-nav .back-nav {
  display: flex;
  justify-content: space-between;
}
.single-news .single-news-main {
  padding: 2rem 1rem 1rem 1rem;
}
.single-news .single-news-main article header {
  width: 100%;
  margin-bottom: 2rem;
}
.single-news .single-news-main article header .news-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin: 0.5rem 0;
  color: gray;
}
.single-news .single-news-main article header .news-meta .tag {
  background-color: #eee;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-size: 0.75rem;
  text-transform: uppercase;
}
.single-news .single-news-main article header .news-meta time {
  font-size: 0.9rem;
  color: #888;
  display: block;
}
.single-news .single-news-main article h1 {
  margin-bottom: 0.5rem;
}
.single-news .single-news-main article img {
  width: 100%;
  height: auto;
  margin: 1.5rem 0;
  border-radius: 3px;
}
.single-news .post-nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}
.single-news .post-nav a {
  font-size: 0.9rem;
  color: #333;
}
.single-news .post-nav a:hover {
  text-decoration: underline;
}

/*# sourceMappingURL=style.css.map */
