*, *::before, *::after { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
}

:root {
  --gold:         #c9952a;
  --gold-light:   #e8b84b;
  --black:        #080808;
  --smoke:        #111111;
  --smoke-2:      #161616;
  --glass:        rgba(255,255,255,0.03);
  --glass-border: rgba(201,149,42,0.2);
  --white:        #ffffff;
  --nav-h:        76px;
}

html { 
  scroll-behavior: smooth; 
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: .4;
}

/* ══════════════════════════════════════════════════════════════ */
/* ──────────────── HEADER & NAVIGATION ──────────────── */
/* ══════════════════════════════════════════════════════════════ */

header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 999;
  height: var(--nav-h);
  background: rgba(8,8,8,0.82);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid rgba(201,149,42,0.18);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  animation: navDrop .6s cubic-bezier(.22,1,.36,1) both;
}

@keyframes navDrop {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold-light) 50%, var(--gold) 70%, transparent);
  opacity: .75;
}

.nav-inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ── LOGO ───────────────────────────────── */
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
  animation: fadeUp .7s .2s cubic-bezier(.22,1,.36,1) both;
}

.logo-img {
  position: relative;
  width: 65px; 
  height: 65px;
  flex-shrink: 0;
}

.logo-img::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,149,42,.22), transparent 70%);
  opacity: 0;
  transition: opacity .35s;
}

.logo:hover .logo-img::after { 
  opacity: 1; 
}

.logo-img img {
  width: 100%; 
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 10px rgba(201,149,42,.35));
  transition: filter .3s, transform .3s;
}

.logo:hover .logo-img img {
  filter: drop-shadow(0 4px 18px rgba(201,149,42,.55));
  transform: scale(1.05);
}

.logo-text { 
  display: flex; 
  flex-direction: column; 
  gap: 3px; 
}

.logo-text .brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 23px;
  font-weight: 600;
  letter-spacing: .2em;
  line-height: 1;
  background: linear-gradient(120deg, var(--gold-light) 0%, var(--gold) 55%, #8c6010 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-text .sub {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: rgba(201,149,42,.45);
}

/* ── NAV LINKS ──────────────────────────── */
nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 8px 22px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,.55);
  border-radius: 2px;
  white-space: nowrap;
  transition: color .25s;
  z-index: 0;
  overflow: hidden;
}

nav a:not(.cta)::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 22px; 
  right: 22px;
  height: 1px;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .32s cubic-bezier(.22,1,.36,1);
}

nav a:not(.cta):hover { 
  color: var(--gold-light); 
}

nav a:not(.cta):hover::after { 
  transform: scaleX(1); 
}

.divider {
  width: 1px; 
  height: 16px;
  background: rgba(201,149,42,.2);
  margin: 0 10px;
  flex-shrink: 0;
}

/* Contact Us Button */
nav a.cta {
  margin-left: 14px;
  padding: 9px 28px;
  border: 1px solid rgba(201,149,42,.5);
  color: var(--gold-light);
  font-weight: 700;
  letter-spacing: .22em;
  transition: color .3s, border-color .3s, box-shadow .3s;
}

nav a.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, var(--gold) 0%, var(--gold-light) 100%);
  transform: translateX(-102%);
  transition: transform .38s cubic-bezier(.22,1,.36,1);
  z-index: -1;
}

nav a.cta:hover {
  color: #080808;
  border-color: var(--gold-light);
  box-shadow: 0 0 24px rgba(201,149,42,.28);
}

nav a.cta:hover::before { 
  transform: translateX(0); 
}

/* stagger animation */
nav a:nth-child(1) { animation: fadeUp .6s .35s both; }
.divider           { animation: fadeUp .6s .40s both; }
nav a:nth-child(3) { animation: fadeUp .6s .44s both; }
nav a.cta          { animation: fadeUp .6s .52s both; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(7px); }
  to   { opacity: 1; transform: translateY(0);   }
}

/* ── HAMBURGER MENU ──────────────────────────── */
.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}

.ham span {
  display: block;
  width: 24px; 
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform .3s, opacity .3s, width .3s;
}

.ham.open span:nth-child(1) { 
  transform: translateY(6.5px) rotate(45deg); 
}

.ham.open span:nth-child(2) { 
  opacity: 0; 
  width: 14px; 
}

.ham.open span:nth-child(3) { 
  transform: translateY(-6.5px) rotate(-45deg); 
}

/* ══════════════════════════════════════════════════════════════ */
/* ──────────────── HERO SECTION ──────────────── */
/* ══════════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  text-align: center;
  padding: 140px 20px 60px;
  z-index: 1;
  margin-top: var(--nav-h);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; 
  left: 50%; 
  transform: translateX(-50%);
  width: 1px; 
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.hero-label {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  opacity: .85;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--white) 30%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}

/* ═══════════════════════════════════════════════════════════════ */
/* ──────────────── FILTER BUTTONS ──────────────── */
/* ═══════════════════════════════════════════════════════════════ */

.filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 60px 20px 40px;
  position: relative;
  z-index: 1;
}

.filter-btn {
  padding: 10px 26px;
  border-radius: 100px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  color: rgba(255,255,255,0.55);
  font-family: 'Barlow', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.filter-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: inherit;
}

.filter-btn span { 
  position: relative; 
  z-index: 1; 
}

.filter-btn:hover {
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201,149,42,0.2);
}

.filter-btn.active {
  border-color: var(--gold);
  color: var(--black);
  box-shadow: 0 0 30px rgba(201,149,42,0.35);
}

.filter-btn.active::before { 
  opacity: 1; 
}

/* ══════════════════════════════════════════════════════════════ */
/* ──────────────── GALLERY SECTION ──────────────── */
/* ══════════════════════════════════════════════════════════════ */

.gallery-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 100px;
  position: relative;
  z-index: 1;
}

.gallery {
  columns: 4;
  column-gap: 14px;
}

@media (max-width: 1100px) { 
  .gallery { columns: 3; } 
}

@media (max-width: 720px)  { 
  .gallery { columns: 2; } 
}

@media (max-width: 440px)  { 
  .gallery { columns: 1; } 
}

/* ── GALLERY ITEMS ──────────────────────────── */
.gallery-item {
  break-inside: avoid;
  margin-bottom: 14px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  cursor: pointer;
  display: block;
  animation: fadeUp .5s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.05);
}

/* Overlay */
.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.85) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: flex-end;
  padding: 18px;
}

.gallery-item:hover .overlay { 
  opacity: 1; 
}

.overlay-info { 
  display: flex; 
  flex-direction: column; 
  gap: 4px; 
}

.overlay-cat {
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
}

.overlay-title {
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 500;
}

/* Video badge */
.video-badge {
  position: absolute;
  top: 10px; 
  right: 10px;
  background: rgba(201,149,42,0.9);
  color: var(--black);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  z-index: 2;
}

/* Gold line top accent */
.gallery-item::after {
  content: '';
  position: absolute;
  top: 0; 
  left: 0; 
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-item:hover::after { 
  opacity: 1; 
}

/* Hidden state */
.gallery-item.hidden {
  display: none;
}

/* ── EMPTY STATE ──────────────────────────── */
.empty-state {
  display: none;
  text-align: center;
  padding: 60px 20px;
  color: rgba(255,255,255,0.25);
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════════════════════════════ */
/* ──────────────── LIGHTBOX ──────────────── */
/* ══════════════════════════════════════════════════════════════ */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8,8,8,0.96);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(12px);
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-inner {
  max-width: 90vw;
  max-height: 88vh;
  position: relative;
}

.lightbox-inner img,
.lightbox-inner video {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 10px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 30px 80px rgba(0,0,0,0.7), 0 0 60px rgba(201,149,42,0.1);
  display: block;
}

.lightbox-close {
  position: absolute;
  top: -44px; 
  right: 0;
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
  padding: 8px;
}

.lightbox-close:hover { 
  color: var(--gold); 
}

/* ── DECORATIVE LINE ──────────────────────────── */
.deco-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 0 auto 28px;
  border-radius: 2px;
}

/* ══════════════════════════════════════════════════════════════ */
/* ──────────────── MOBILE RESPONSIVE ──────────────── */
/* ══════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .nav-inner { 
    padding: 0 24px; 
  }

  .ham { 
    display: flex; 
  }

  nav {
    position: fixed;
    top: var(--nav-h); 
    left: 0; 
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(8,8,8,.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201,149,42,.15);
    padding: 18px 0 28px;
    transform: translateY(-6px);
    opacity: 0;
    pointer-events: none;
    transition: transform .35s cubic-bezier(.22,1,.36,1), opacity .28s;
  }

  nav.open { 
    transform: translateY(0); 
    opacity: 1; 
    pointer-events: all; 
  }

  nav a { 
    padding: 14px 32px; 
    font-size: 11px; 
    width: 100%; 
  }

  nav a:not(.cta)::after { 
    left: 32px; 
    right: 32px; 
  }

  .divider { 
    display: none; 
  }

  nav a.cta { 
    margin: 16px 32px 0; 
    width: calc(100% - 64px); 
    justify-content: center; 
  }

  nav a, .divider { 
    animation: none; 
  }

  .hero {
    padding: 110px 20px 40px;
  }

  .filters {
    padding: 40px 20px 30px;
  }

  .gallery-wrap {
    padding: 0 16px 60px;
  }
}





/* Gjuha */

 .lang-switcher {
        position: relative;
        display: flex;
        align-items: center;
        margin: 0 4px;
      }

      .lang-btn {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 7px 14px;
        background: rgba(255,255,255,0.03);
        border: 1px solid rgba(201,149,42,0.25);
        border-radius: 2px;
        color: rgba(255,255,255,0.65);
        font-family: 'Barlow', sans-serif;
        font-size: 10.5px;
        font-weight: 600;
        letter-spacing: .18em;
        text-transform: uppercase;
        cursor: pointer;
        white-space: nowrap;
        transition: color .25s, border-color .25s, background .25s;
      }

      .lang-btn:hover {
        color: #e8b84b;
        border-color: rgba(201,149,42,0.5);
        background: rgba(201,149,42,0.06);
      }

      .lang-flag { font-size: 14px; line-height: 1; }

      .lang-arrow {
        transition: transform .28s cubic-bezier(.22,1,.36,1);
        flex-shrink: 0;
        opacity: .6;
      }

      .lang-switcher.open .lang-arrow { transform: rotate(180deg); }
      .lang-switcher.open .lang-btn {
        color: #e8b84b;
        border-color: rgba(201,149,42,0.5);
        background: rgba(201,149,42,0.06);
      }

      .lang-dropdown {
        display: none;
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        min-width: 170px;
        background: rgba(10,10,10,0.97);
        border: 1px solid rgba(201,149,42,0.22);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: 0 16px 48px rgba(0,0,0,0.6);
        z-index: 1000;
        overflow: hidden;
        border-radius: 3px;
        animation: dropIn .22s cubic-bezier(.22,1,.36,1) both;
      }

      .lang-switcher.open .lang-dropdown { display: block; }

      @keyframes dropIn {
        from { opacity: 0; transform: translateY(-6px); }
        to   { opacity: 1; transform: translateY(0); }
      }

      .lang-option {
        display: flex;
        align-items: center;
        gap: 10px;
        width: 100%;
        padding: 11px 16px;
        background: none;
        border: none;
        border-bottom: 1px solid rgba(201,149,42,0.08);
        color: rgba(255,255,255,0.55);
        font-family: 'Barlow', sans-serif;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: .16em;
        text-transform: uppercase;
        cursor: pointer;
        text-align: left;
        transition: background .2s, color .2s;
      }

      .lang-option:last-child { border-bottom: none; }

      .lang-option:hover {
        background: rgba(201,149,42,0.1);
        color: #e8b84b;
      }

      .lang-option.active {
        color: #e8b84b;
        background: rgba(201,149,42,0.07);
      }

      .lang-option span { font-size: 15px; line-height: 1; }

      @media (max-width: 768px) {
        .lang-switcher {
          width: calc(100% - 64px);
          margin: 8px 32px 0;
        }
        .lang-btn {
          width: 100%;
          justify-content: center;
        }
        .lang-dropdown {
          left: 0;
          right: 0;
          width: 100%;
        }
      }