/* ================= VIDEO SECTION ================= */

.things-video-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  color: #fff;
}

/* VIDEO */
.things-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* OVERLAY */
.things-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2;
}

/* CONTENT */
.things-content {
  position: relative;
  z-index: 3;

  width: 100%;
  height: 100%;
  max-width: 900px;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  padding: 0 24px;
  text-align: center;
}

.things-title {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 22px;
  letter-spacing: 0.5px;
}


.things-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 32px;
}

.things-text {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.85;
  max-width: 760px;
  margin-bottom: 20px;
  font-weight: 300;
  opacity: 0.95;
}


.things-btn {
  display: none;
  margin-top: 40px;
  padding: 16px 52px;

  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.8);
  background: transparent;

  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;

  transition: all 0.35s ease;
  backdrop-filter: blur(4px);
}

.things-btn.lang-active {
  display: inline-block;
}


.things-btn:hover {
  background: #ffffff;
  color: #000000;
  transform: translateY(-2px);
}


@media (max-width: 768px) {
  .things-text {
    font-size: 16px;
  }
}


@media (max-width: 768px) {
  .things-title {
    font-size: 42px;
  }
}









/* ================= HERO VIDEO – THINGS TO DO PAGE ================= */

.things-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

/* VIDEO BACKGROUND */
.things-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* DARK OVERLAY */
.things-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
}

/* CONTENT OVER VIDEO */
.things-hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 0 24px;
  text-align: center;
}


.things-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 68px;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 20px;
}

.things-hero-content p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
  max-width: 720px;
  margin: 0 auto;
  opacity: 0.95;
}

@media (max-width: 768px) {
  .things-hero-content h1 {
    font-size: 42px;
  }

  .things-hero-content p {
    font-size: 16px;
  }
}




/* EXPERIENCE GRID */
.experience-section{
  padding:120px 80px;
}

/* ================= EXPERIENCE GRID – FINAL FIX ================= */

/* DEFAULT: MOBILE */
.experience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

/* DESKTOP */
@media (min-width: 1024px) {
  .experience-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }
}



.experience-list{
  display:flex;
  flex-direction:column;
  gap:50px;
}

.experience-item{
  display:flex;
  flex-wrap:wrap;
  align-items:flex-start;
  gap:30px;
  transition:all .3s ease;
}

.experience-item img{
  flex:0 0 220px;
  width:220px;
  height:160px;
  object-fit:cover;
  border-radius:14px;
}

.experience-info{
  flex:1 1 320px;
  min-width:0;
}

.experience-info h3{
  font-family:'Playfair Display', serif;
  margin-bottom:8px;
}

.experience-item:hover{
  transform:translateY(-3px);
}

.experience-item.active {
  background: rgba(0,0,0,0.03);
  border-radius: 16px;
  padding: 16px;
}


/* MAP */
.experience-map{
  display:none;
  width:100%;
  margin-top:18px;
  padding:18px;
  border-radius:20px;
  background:#f8f3ea;
  border:1px solid rgba(31, 25, 20, 0.08);
  box-shadow:0 18px 38px rgba(58, 42, 28, 0.08);
}

.experience-map.is-open{
  display:block;
}

.experience-map-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:14px;
}

.experience-map-title{
  font-family:'Playfair Display', serif;
  font-size:24px;
  color:#1f2937;
}

.experience-map-title [data-lang].lang-active,
.experience-map-close [data-lang].lang-active{
  display:inline;
}

.experience-map-close{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:0;
  border:none;
  background:transparent;
  color:#0f172a;
  cursor:pointer;
  font-size:12px;
  font-weight:600;
  letter-spacing:0.08em;
  text-transform:uppercase;
}

.experience-map-close:hover{
  color:#1d4ed8;
}

.experience-map-close-icon{
  font-size:26px;
  line-height:1;
}

.experience-map iframe {
  width: 100%;
  height: 360px;
  border-radius: 16px;
  border: none;
  display:block;
}




/* MAP HINT – PREMIUM STYLE */
.map-hint{
  display:none;
  margin-top:12px;
  font-size:14px;
  font-style:italic;
  color:#1d4ed8; /* elegant blue */
  cursor:pointer;
  transition:all .25s ease;
  display:flex;
  align-items:center;
  gap:6px;
}

.map-hint.lang-active{
  display:flex;
}

.map-hint i{
  font-size:13px;
}

.map-hint:hover{
  color:#0f172a;
  text-decoration:underline;
  transform:translateX(3px);
}

.about-contact-section .contact-overlay {
  background: linear-gradient(180deg, rgba(244, 238, 229, 0.62) 0%, rgba(244, 238, 229, 0.82) 100%) !important;
}

.about-contact-wrapper {
  padding: 80px 24px;
}

.about-contact-form {
  max-width: 680px;
  width: 100%;
  padding: 38px;
  border-radius: 24px;
  background: rgba(255, 249, 241, 0.94) !important;
  border: 1px solid rgba(54, 40, 27, 0.12) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.35);
  text-align: center;
}

.about-contact-kicker {
  margin: 0 0 12px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #181410 !important;
}

.about-contact-form h3 {
  margin-bottom: 14px;
  font-size: clamp(34px, 5vw, 48px);
  color: #181410 !important;
}

.about-contact-subtitle {
  max-width: 46ch;
  margin: 0 auto 22px;
  font-size: 15px;
  line-height: 1.8;
  color: #181410 !important;
}

.about-contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0 0 24px;
}

.about-contact-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(54, 40, 27, 0.12) !important;
  background: rgba(255, 255, 255, 0.7) !important;
  color: #181410 !important;
  text-decoration: none;
  font-size: 13px;
}

.about-contact-links a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.about-contact-form input,
.about-contact-form textarea {
  border-color: rgba(54, 40, 27, 0.16) !important;
  background: rgba(255, 255, 255, 0.92) !important;
  color: #181410 !important;
}

.about-contact-form input::placeholder,
.about-contact-form textarea::placeholder,
.about-contact-form button,
.about-contact-form button span {
  color: #181410 !important;
}

.about-contact-form button {
  background: #f3ece3 !important;
  border: 1px solid rgba(54, 40, 27, 0.14) !important;
}

@media (max-width: 1080px) {
  .about-contact-wrapper {
    padding: 54px 16px;
  }

  .about-contact-form {
    padding: 26px 20px;
    border-radius: 20px;
  }

  .about-contact-form h3 {
    font-size: 34px;
  }

  .about-contact-subtitle {
    font-size: 14px;
    line-height: 1.7;
  }

  .about-contact-links {
    flex-direction: column;
  }

  .about-contact-links a {
    justify-content: center;
  }
}


/* ================= GLOBAL LANGUAGE SWITCHER ================= */

.language-switcher {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  gap: 10px;
}

/* BUTTON BASE – ALWAYS VISIBLE */
.language-switcher button {
  background: #111;               /* gjithmonë e errët */
  border: 1px solid #111;
  color: #fff;
  padding: 7px 14px;
  font-size: 12px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.25s ease;
}

/* ACTIVE LANGUAGE */
.language-switcher button.active {
  background: #fff;
  color: #111;
  border-color: #111;
}

/* HOVER */
.language-switcher button:hover {
  background: #333;
}

.lang-hidden {
  visibility: hidden;
  position: absolute;
  height: 0;
  overflow: hidden;
}
/* ========= LANGUAGE VISIBILITY ========= */
[data-lang]{
  display: none;
}

[data-lang].lang-active{
  display: block;
}

@media (max-width: 768px) {
  body > .language-switcher {
    display: none;
  }

  .things-hero-content.reveal,
  .experience-list.reveal,
  .experience-item.reveal,
  .experience-map.reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .things-hero {
    min-height: 82svh;
    padding: 96px 20px 28px;
    align-items: center;
    justify-content: center;
  }

  .things-hero-overlay {
    background: linear-gradient(180deg, rgba(8, 12, 16, 0.14) 0%, rgba(8, 12, 16, 0.58) 58%, rgba(8, 12, 16, 0.88) 100%);
  }

  .things-hero-content {
    max-width: 560px;
    width: 100%;
    padding: 0;
    border-radius: 0;
    background: none;
    border: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    text-align: center;
  }

  .things-hero-content h1 {
    max-width: 100%;
    font-size: 40px;
    line-height: 1.04;
    margin-bottom: 14px;
  }

  .things-hero-content p {
    max-width: 30ch;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.72;
  }

  .experience-section {
    padding: 22px 16px 80px;
    background: #f3eee6;
  }

  .experience-grid {
    gap: 18px;
  }

  .experience-list {
    gap: 16px;
  }

  .experience-item {
    flex-direction: column;
    gap: 0;
    border-radius: 22px;
    overflow: hidden;
    background: #fffdf9;
    box-shadow: 0 16px 34px rgba(58, 42, 28, 0.1);
    border: 1px solid rgba(31, 25, 20, 0.07);
  }

  .experience-item.active {
    padding: 0;
    border: 1px solid rgba(31, 25, 20, 0.12);
    background: #fffdf9;
  }

  .experience-item img {
    width: 100%;
    height: 220px;
    border-radius: 0;
  }

  .experience-info {
    padding: 18px 16px 20px;
  }

  .experience-info h3 {
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 1.12;
  }

  .experience-info p {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.68;
    color: #544a3f;
  }

  .map-hint {
    margin-top: 14px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .experience-map {
    margin-top: 16px;
    padding: 12px;
    border-radius: 18px;
  }

  .experience-map-header {
    align-items: flex-start;
  }

  .experience-map-title {
    font-size: 20px;
    line-height: 1.1;
  }

  .experience-map-close {
    font-size: 11px;
    letter-spacing: 0.06em;
  }

  .experience-map iframe {
    height: 260px;
    border-radius: 22px;
    box-shadow: 0 16px 34px rgba(58, 42, 28, 0.1);
  }
}

/* ===============================
   CONTACT SECTION - TRANSPARENT
================================ */

.about-contact-section .contact-overlay {
  background: linear-gradient(180deg, rgba(7, 11, 15, 0.54) 0%, rgba(7, 11, 15, 0.72) 100%) !important;
}

.about-contact-form {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.about-contact-kicker,
.about-contact-form h3,
.about-contact-subtitle,
.about-contact-links a,
.about-contact-form input,
.about-contact-form textarea,
.about-contact-form input::placeholder,
.about-contact-form textarea::placeholder {
  color: #ffffff !important;
}

.about-contact-links a {
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

.about-contact-links a:hover {
  background: rgba(255, 255, 255, 0.14) !important;
}

.about-contact-form input,
.about-contact-form textarea {
  border-color: rgba(255, 255, 255, 0.24) !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

.about-contact-form button {
  background: #ffffff !important;
  color: #181410 !important;
  border: 0 !important;
}

.about-contact-form button span {
  color: #181410 !important;
}

