/* ─── Google Fonts ─────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap&subset=latin,cyrillic');

/* ─── Design Tokens ─────────────────────────────────────────────────────────── */
:root {
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;

  --primary-blue:    #0F5FA8;
  --dark-navy:       #1B2B44;
  --light-blue:      #EAF4FC;
  --sand-background: #F4F1EA;
  --orange-accent:   #F58A1F;
  --orange-hover:    #E6780B;
  --body-text:       #243445;
  --secondary-text:  #6B7A89;
  --white:           #FFFFFF;
}

/* ─── Reset & Base ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--body-text); line-height: 1.6; }
img { display: block; max-width: 100%; }
a { text-decoration: none; }
button { cursor: pointer; border: none; background: none; }
ul { list-style: none; }

h1 {
  font-weight: var(--font-weight-medium);
  line-height: 1.5;
  font-family: var(--font-heading)
}

h2 {
  font-weight: var(--font-weight-medium);
  line-height: 1.5;
  font-family: var(--font-heading)
}

h3 {
  font-weight: var(--font-weight-medium);
  line-height: 1.5;
  font-family: var(--font-heading)
}

h4 {
  font-weight: var(--font-weight-medium);
  line-height: 1.5;
  font-family: var(--font-heading)
}

/* ─── Layout Helpers ────────────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) { .container { padding: 0 1.5rem; } }

/* ─── Scroll Animation ──────────────────────────────────────────────────────── */
.scroll-animate {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}
.scroll-animate.visible, body.cke_editable .scroll-animate {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════════════════════════════════════════ */
/*  HEADER                                                                      */
/* ════════════════════════════════════════════════════════════════════════════ */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
}
.header__logo { flex-shrink: 0; margin-top: 6px; margin-bottom: 10px; }
.header__logo img { height: 78px; width: auto; }

/* Desktop nav */
.header__nav { display: none; }
@media (min-width: 1024px) {
  .header__nav { display: flex; align-items: center; gap: 2rem; }
}
.header__nav a {
  position: relative;
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--body-text);
  padding-bottom: 4px;
}
.header__nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 3px;
  background: var(--orange-accent);
  transition: width .3s ease;
}
.header__nav a:hover::after, .header__nav a.active::after { width: 100%; }

/* Desktop actions */
.header__actions { display: none; align-items: center; gap: 1rem; }
@media (min-width: 1024px) { .header__actions { display: flex; } }

/* Language dropdown */
.lang-dropdown { position: relative; }
.lang-dropdown__toggle {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem .75rem;
  border-radius: .5rem;
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--body-text);
  background: transparent;
  transition: background .2s;
}
.lang-dropdown__toggle:hover { background: #f9fafb; }
.lang-dropdown__toggle svg { color: var(--secondary-text); }

.lang-dropdown__menu {
  display: none;
  position: absolute;
  right: 0; top: calc(100% + .5rem);
  width: 160px;
  background: var(--white);
  border-radius: .5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
  padding: .5rem 0;
  z-index: 100;
}
.lang-dropdown__menu.open { display: block; }
.lang-dropdown__menu a {
  display:block;
  width: 100%;
  text-align: left;
  padding: .5rem 1rem;
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--body-text);
  transition: background .2s;
}
.lang-dropdown__menu a:hover { background: #f9fafb; }

/* Owners Portal button */
.btn-portal {
  padding: .75rem 1.5rem;
  border-radius: .75rem;
  background: var(--orange-accent);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 16px;
  transition: background .2s;
}
.btn-portal:hover { background: var(--orange-hover); }

/* Mobile toggle */
.header__mobile-toggle {
  display: flex;
  padding: .5rem;
  color: var(--body-text);
}
@media (min-width: 1024px) { .header__mobile-toggle { display: none; } }

/* Mobile menu */
.header__mobile-menu {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid #e5e7eb;
}
.header__mobile-menu.open { display: block; }
.header__mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.header__mobile-menu nav a {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--body-text);
  transition: opacity .2s;
}
.header__mobile-menu nav a:hover { opacity: .7; }
.header__mobile-menu .btn-portal { margin-top: .5rem; width: 100%; text-align: center; color:white }

/* ════════════════════════════════════════════════════════════════════════════ */
/*  HERO VIDEO                                                                  */
/* ════════════════════════════════════════════════════════════════════════════ */
.hero-carousel,
.hero-carousel .owl-stage-outer,
.hero-carousel .owl-stage,
.hero-carousel .owl-item {
    height: 100%;
}

.hero__slide {
    height: 100%;
    position: relative;
}

.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
}
@media (min-width: 768px) { 
  .hero { height: 700px; } 
}

/* Obrazová vrstva musí mať 100% výšku */
.hero__image-wrap,
.hero__image-scale,
.hero__image-wrap img {
    height: 100%;
}

@media (min-width: 768px) { .hero { height: 700px; } }

.hero__image-wrap {
  position: absolute;
  inset: 0;
}
.hero__image-scale {
  position: relative;
  width: 100%; height: 100%;
}
.hero__iframe {
  position: absolute;
  top: 50%; left: 50%;
  width: 177.77vh;
  height: 56.25vw;
  min-height: 100%;
  min-width: 100%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(27,43,68,.85) 0%, rgba(27,43,68,.60) 40%, transparent 100%);
}
.hero__content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: center;
}
.hero .container {
  width: 100%;
}
.hero__text { max-width: 672px; }
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.75rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.hero__desc {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--white);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) { .hero__buttons { flex-direction: row; } }

.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 0px;
    line-height: .7;
    display: block;
}
.owl-theme .owl-dots .owl-dot span {
    width: 15px;
    height: 15px;
    margin: 0 3px;
    border-radius: 50%;
    background: #d7cff4;
    border: 1px solid #d7cff4;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--base-color);
    border: 1px solid var(--base-color);
}
.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    background: transparent;
}

.hero-carousel.owl-theme .owl-dots {
    position: absolute;
    bottom: 4vh;
    width: 100%;
}
.hero-carousel.owl-theme .owl-dots .owl-dot span {
    border: 1px solid rgba(255,255,255,0.7);
    background: transparent;
}
.hero-carousel.owl-theme .owl-dots .owl-dot.active span,
.hero-carousel.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--white);
    border: 1px solid var(--white);
}

.btn-primary {
  padding: 1rem 2rem;
  border-radius: .75rem;
  background: var(--orange-accent);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 16px;
  transition: background .2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-primary:hover { background: var(--orange-hover); }

.btn-outline-white {
  padding: 1rem 2rem;
  border-radius: .75rem;
  border: 2px solid var(--white);
  background: transparent;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 16px;
  transition: background .2s, color .2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--dark-navy);
}

/* ======= Banner Header style ======= */
.banner-header {
    min-height: calc(45vh - 100px);
    background-position: center;
}
.banner-header.middle-height {
    min-height: calc(75vh - 100px);
}
.banner-header.full-height {
    min-height: calc(93vh - 100px);
}

.banner-header[data-overlay-dark] h6,
.banner-header h6 {
    font-family: var(--primary-font);
    font-weight: 400;
    margin-bottom: 10px;
    color: var(--white);
    font-size: 18px;
    display: flex;
    display: inline-flex;
    align-items: center;
}
.banner-header[data-overlay-dark] h6 .icon,
.banner-header h6 .icon {
    background-color: var(--medium-pink);
    margin-right: 10px;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    color: var(--white);
    font-size: 21px;
    text-align: center;
    vertical-align: middle;
    justify-content: center;
    align-items: center;
    display: flex;
}


.banner-header h1 {
    font-size: 70px;
    text-align: center;
    color: var(--white);
    position: relative;
    line-height: 1.2em;
    margin-bottom: 0;
}
.banner-header h1 span {
    color: var(--base-color);
}
.banner-header h2 {
    font-size: 40px;
    color: var(--white);
    position: relative;
    line-height: 1.2em;
    margin-bottom: 0;
}
.banner-header h2 span {
    color: var(--base-color);
}
.banner-header p, .banner-header[data-overlay-dark] p {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 0;
    color: var(--white);
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}
@media screen and (max-width: 991px) {
    .banner-header h1 {
        font-size: 35px;
    }
    .banner-header h2 {
        font-size: 30px;
    }
    .banner-header {
        min-height: 250px;
    }
}

.section-padding {
    padding: 7.5rem 0;
}
.section-padding-md {
    padding: 3.75rem 0;
}
.section-padding-md-top {
    padding-top: 3.75rem;
}
.section-margin-bottom:not(:empty) {
    margin-bottom: 3.75rem;
}

.bg-img {
    background-size: cover;
    background-repeat: no-repeat;
}

.v-middle {
    position: absolute;
    width: 100%;
    top: 50%;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    z-index: 9;
}

[data-overlay-dark] {
    position: relative;
}
[data-overlay-dark] .container {
    position: relative;
    z-index: 2;
}
[data-overlay-dark]:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

[data-overlay-dark]:before {
    background: var(--dark-gray);
    background: #05010c;
}
[data-overlay-dark] p {
    color: var(--medium-gray);
}
[data-overlay-dark="0"]:before {
    opacity: 0;
}
[data-overlay-dark="1"]:before {
    opacity: 0.1;
}
[data-overlay-dark="2"]:before {
    opacity: 0.2;
}
[data-overlay-dark="3"]:before {
    opacity: 0.3;
}
[data-overlay-dark="4"]:before {
    opacity: 0.4;
}
[data-overlay-dark="5"]:before {
    opacity: 0.5;
}
[data-overlay-dark="6"]:before {
    opacity: 0.6;
}
[data-overlay-dark="7"]:before {
    opacity: 0.7;
}
[data-overlay-dark="8"]:before {
    opacity: 0.8;
}
[data-overlay-dark="9"]:before {
    opacity: 0.9;
}
[data-overlay-dark="10"]:before {
    opacity: 1;
}

/* ════════════════════════════════════════════════════════════════════════════ */
/*  ABOUT                                                                       */
/* ════════════════════════════════════════════════════════════════════════════ */
.about { padding: 5rem 0; background: var(--white); }

.about__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) { .about__grid { grid-template-columns: 1fr 1fr; } }

.section-label {
  font-family: var(--font-heading);
  font-size: .875rem;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 3rem);
  color: var(--dark-navy);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.section-desc {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--body-text);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.about__benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.benefit-icon {
  width: 48px; height: 48px;
  border-radius: .5rem;
  background: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary-blue);
}
.benefit-label {
  font-family: var(--font-heading);
  font-size: .875rem;
  color: var(--body-text);
}

.btn-outline-blue {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  border-radius: .75rem;
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  background: transparent;
  font-family: var(--font-heading);
  font-size: 16px;
  transition: background .2s, color .2s;
}
.btn-outline-blue:hover {
  background: var(--primary-blue);
  color: var(--white);
}

.about__image {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}
.about__image img { width: 100%; height: 100%; object-fit: cover; }

/* ════════════════════════════════════════════════════════════════════════════ */
/*  SERVICES                                                                    */
/* ════════════════════════════════════════════════════════════════════════════ */
.services {
  padding: 5rem 0;
  background: var(--light-blue);
}
.services__header { text-align: center; margin-bottom: 4rem; }

.services__grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services__grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  transition: box-shadow .2s;
}
.service-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.12); }

.service-icon {
  width: 56px; height: 56px;
  border-radius: .75rem;
  background: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary-blue);
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--dark-navy);
  margin-bottom: .75rem;
}
.service-card p {
  font-family: var(--font-body);
  color: var(--secondary-text);
  line-height: 1.65;
}

/* ════════════════════════════════════════════════════════════════════════════ */
/*  COMMITMENT                                                                  */
/* ════════════════════════════════════════════════════════════════════════════ */
.commitment { padding: 5rem 0; background: var(--white); }

.commitment__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) { .commitment__grid { grid-template-columns: 1fr 1fr; } }

.commitment__image {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}
.commitment__image img { width: 100%; height: 500px; object-fit: cover; }

.commitment__text { position: relative; }
.commitment__deco {
  position: absolute;
  right: -2rem; top: -2rem;
  width: 12rem; height: 12rem;
  opacity: .05;
  color: var(--orange-accent);
  pointer-events: none;
}

/* ════════════════════════════════════════════════════════════════════════════ */
/*  NEWS                                                                        */
/* ════════════════════════════════════════════════════════════════════════════ */
.news { padding: 5rem 0; background: var(--white); }
.news__header { text-align: center; margin-bottom: 4rem; }
.news__view-all {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-heading);
  color: var(--primary-blue);
  transition: opacity .2s;
  margin-top: 1rem;
}
.news__view-all:hover { opacity: .7; }

.news__grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) { .news__grid { grid-template-columns: repeat(3, 1fr); } }

.news-card {
  border-radius: 1rem;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  transition: box-shadow .2s;
}
.news-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.12); }

.news-card__img { height: 224px; overflow: hidden; }
.news-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .3s ease;
}
.news-card:hover .news-card__img img { transform: scale(1.05); }

.news-card__body { padding: 1.5rem; }
.news-card__date {
  font-family: var(--font-body);
  font-size: .875rem;
  color: var(--secondary-text);
  margin-bottom: .75rem;
}
.news-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--dark-navy);
  margin-bottom: .75rem;
}
.news-card__excerpt {
  font-family: var(--font-body);
  color: var(--secondary-text);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.news-card__link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-heading);
  color: var(--primary-blue);
  transition: opacity .2s;
}
.news-card__link:hover { opacity: .7; }

.news-card-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.news-card-top .news-card__img {
  height: auto;
  min-height: 224px;
}
@media (max-width: 768px) { .news-card-top { grid-template-columns: 1fr;  } }

.news-section-more .section-title {
  font-size: clamp(1.25rem, 2vw, 2rem);
}


/* ════════════════════════════════════════════════════════════════════════════ */
/*  FAQ                                                                         */
/* ════════════════════════════════════════════════════════════════════════════ */
.faq {
  padding: 5rem 0;
  background: var(--sand-background);
}
.faq__inner { max-width: 900px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 768px) { .faq__inner { padding: 0 1.5rem; } }

.faq__header { text-align: center; margin-bottom: 4rem; }

.accordion { display: flex; flex-direction: column; gap: 1rem; }

.accordion-item {
  background: var(--white);
  border-radius: .75rem;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  overflow: hidden;
}
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  text-align: left;
  background: transparent;
  cursor: pointer;
  transition: background .2s;
}
.accordion-trigger:hover { background: #f9fafb; }
.accordion-trigger span {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--dark-navy);
  padding-right: 1rem;
}
.accordion-trigger svg {
  flex-shrink: 0;
  color: var(--primary-blue);
  transition: transform .3s ease;
}
.accordion-item.open .accordion-trigger svg { transform: rotate(180deg); }

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.accordion-content p {
  padding: 0 1.5rem 1.5rem;
  font-family: var(--font-body);
  color: var(--secondary-text);
  line-height: 1.7;
}

.faq-category {
  margin-bottom: 30px;
}

.faq-category h2 {
  margin: 0 0 15px;
  padding-bottom: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  border-bottom: 1px solid #ddd;
}

.faq-category h3 {
  margin: 20px 0 12px;
  font-size: 1.25rem;
  font-weight: 600;
}

.faq-wrapper .accordion-item {
  margin-bottom: 12px;
}

/* ════════════════════════════════════════════════════════════════════════════ */
/*  CTA                                                                         */
/* ════════════════════════════════════════════════════════════════════════════ */
.cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--dark-navy) 0%, var(--primary-blue) 100%);
}
.cta__inner { max-width: 900px; margin: 0 auto; padding: 0 1rem; text-align: center; }
@media (min-width: 768px) { .cta__inner { padding: 0 1.5rem; } }

.cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.cta__desc {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--white);
  opacity: .95;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* ════════════════════════════════════════════════════════════════════════════ */
/*  FOOTER                                                                      */
/* ════════════════════════════════════════════════════════════════════════════ */
.footer {
  padding: 4rem 0;
  background: var(--dark-navy);
}
.footer__grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}

.footer__logo { height: 153px; width: auto; margin-bottom: 1.5rem; }
.footer__tagline {
  font-family: var(--font-body);
  color: var(--white);
  opacity: .8;
  line-height: 1.6;
}

.footer__col h4 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: .75rem; }
.footer__col ul a {
  font-family: var(--font-body);
  color: var(--white);
  opacity: .8;
  transition: opacity .2s;
}
.footer__col ul a:hover { opacity: 1; }

.footer__contact { display: flex; flex-direction: column; gap: .75rem; }
.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.footer__contact svg { flex-shrink: 0; color: var(--white); opacity: .8; margin-top: 2px; }
.footer__contact span {
  font-family: var(--font-body);
  color: var(--white);
  opacity: .8;
  line-height: 1.5;
}

.footer__social { display: flex; gap: 1rem; margin-bottom: 2rem; }
.footer__social a {
  width: 40px; height: 40px;
  border-radius: .5rem;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: opacity .2s;
}
.footer__social a:hover { opacity: .7; }

.footer__lang-label {
  font-family: var(--font-heading);
  font-size: .875rem;
  color: var(--white);
  opacity: .8;
  margin-bottom: 1rem;
}
.footer__langs { display: flex; flex-wrap: wrap; gap: .5rem; }
.footer__langs a {
  padding: .25rem .75rem;
  border-radius: .25rem;
  background: rgba(255,255,255,.1);
  font-family: var(--font-heading);
  font-size: .875rem;
  color: var(--white);
  transition: opacity .2s;
}
.footer__langs a:hover { opacity: .7; }

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
  text-align: center;
  font-family: var(--font-body);
  font-size: .875rem;
  color: var(--white);
  opacity: .6;
}

.pagination {
    margin-top: 40px;
    text-align: center;
}

.pagination a {
    display: inline-block;
    padding: 8px 14px;
    margin: 0 4px;
    border: 1px solid #ccc;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
}

.pagination a.active {
    background: #333;
    color: #fff;
    border-color: #333;
}

.pagination a:hover {
    background: #eee;
}

.text-left {
  text-align: left;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transition: transform .3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.dok {
  margin-bottom:10px;
}
.dok li {
  display: flex;
  gap:4px;
}

/* ======= 404 style ======= */
.not-found h1 {
  font-size: 180px;
  line-height: 160px;
  color: var(--base-color);
  font-weight: 900;
  text-shadow: 5px 5px var(--very-light-gray);
}
.not-found h3 {
  color: var(--dark-gray);
  font-size: 24px;
  line-height: 1.2em;
}
.not-found p {
  color: var(--medium-gray);
}

.not-found-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  text-align: center;
}

@media screen and (max-width: 991px) {
.not-found h1 {
    font-size: 100px;
    line-height: 120px;
  }
}

/* FOTOGALERIA */
.fotogaleria {
  width: 100%;
}
.item-pop-1 {
  grid-area: 1 / 1 / 3 / 2;
}
.item-pop-2 {
  grid-area: 1 / 2 / 2 / 3;
}
.item-pop-3 {
  grid-area: 1 / 3 / 2 / 5;
}
.item-pop-4 {
  grid-area: 2 / 2 / 3 / 3;
}
.item-pop-5 {
  grid-area: 2 / 3 / 3 / 4;
}
.item-pop-6 {
  grid-area: 2 / 4 / 4 / 5;
}
.item-pop-7 {
  grid-area: 3 / 1 / 4 / 3;
}
.item-pop-8 {
  grid-area: 3 / 3 / 4 / 4;
}
.popup-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-rows: 250px;
  grid-gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.foto-item {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}
.foto-item img {
  transition: 0.3s linear;
  border-radius: 6px;
}
.foto-item:hover img {
  transform: scale(1.1);
}
.foto-item .hov {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 100;
  visibility: hidden;
  background: rgba(0, 0, 0, 0);
  transition: 0.3s linear;
  display: flex;
  justify-content: center;
  align-items: center;
}
.foto-item .hov i {
  color: #fff;
}
.foto-item:hover .hov {
  visibility: visible;
  background: rgba(0, 0, 0, 0.7);
}
.foto-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wrap-bg {
  clear: both;
}

@media only screen and (max-width: 900px){    
  .item-pop-1 {
    grid-area: 1 / 1 / 3 / 3;
  }
  .item-pop-2 {
    grid-area: 1 / 3 / 2 / 5;
  }
  .item-pop-3 {
    grid-area: 2 / 3 / 3 / 5;
  }
  .item-pop-4 {
    grid-area: 3 / 1 / 4 / 3;
  }
  .item-pop-5 {
    grid-area: 3 / 3 / 4 / 5;
  }
  .item-pop-6 {
    grid-area: 4 / 1 / 5 / 2;
  }
  .item-pop-7 {
    grid-area: 4 / 2 / 5 / 5;
  }
  .item-pop-8 {
    grid-area: 5 / 1 / 6 / 5;
  }
}
@media only screen and (max-width: 600px){
  .item-pop-1 {
    grid-area: 1 / 1 / 2 / 5;
  }
  .item-pop-2 {
    grid-area: 2 / 1 / 3 / 5;
  }
  .item-pop-3 {
    grid-area: 3 / 1 / 4 / 5;
  }
  .item-pop-4 {
    grid-area: 4 / 1 / 5 / 5;
  }
  .item-pop-5 {
    grid-area: 5 / 1 / 6 / 5;
  }
  .item-pop-6 {
    grid-area: 6 / 1 / 7 / 5;
  }
  .item-pop-7 {
    grid-area: 7 / 1 / 8 / 5;
  }
  .item-pop-8 {
    grid-area: 8 / 1 / 9 / 5;
  }
}
