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

body {
  font-family: Arial, sans-serif;
  background: #0b0b0b;
  color: white;
}

.hero {
  min-height: 100vh;

  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,0.9) 0%,
      rgba(0,0,0,0.55) 50%,
      rgba(0,0,0,0.3) 100%
    ),
    url("hero.jpg");

  background-size: cover;
  background-position: center;

  position: relative;
}

.navbar {
    width: 92%;
    margin: auto;

    height: 100px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: fixed;
    top: 0;
    left: 4%;
    z-index: 1000;

    transition: background 0.4s ease,
                backdrop-filter 0.4s ease;
}

.navbar.scrolled {
    background: rgba(8, 8, 8, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar.scrolled::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -4.35%;
    right: -4.35%;
    background: rgba(8, 8, 8, 0.88);
    z-index: -1;
}





.logo img {
  width: 150px;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 40px;

  list-style: none;
}

.nav-links a {
  color: white;
  text-decoration: none;

  font-size: 13px;
  letter-spacing: 1px;

  transition: 0.3s;
}

.nav-links a:hover {
  color: #d9b768;
}

.book-btn {
  color: white;
  text-decoration: none;

  border: 1px solid #d9b768;
  border-radius: 30px;

  padding: 12px 25px;

  font-size: 12px;
  letter-spacing: 1px;
}

.hero-content {
  position: absolute;

  top: 50%;
  left: 8%;

  transform: translateY(-50%);

  max-width: 700px;
}

.small-title {
  font-size: 12px;
  letter-spacing: 4px;

  color: #d9b768;

  margin-bottom: 20px;
}

.hero-content h1 {
  font-family: Georgia, serif;

  font-size: 70px;
  line-height: 1.05;

  font-weight: normal;

  letter-spacing: 2px;
}

.hero-content h1 span {
  display: block;

  color: #d9b768;
}

.hero-description {
  margin-top: 25px;

  letter-spacing: 2px;
  font-size: 14px;

  color: #ddd;
}

.main-btn {
  display: inline-block;

  margin-top: 35px;

  padding: 17px 30px;

  background: #d9b768;
  color: #111;

  text-decoration: none;

  font-weight: bold;

  font-size: 12px;
  letter-spacing: 1px;

  transition: 0.3s;
}

.main-btn:hover {
  background: white;
}

.hero-content h1 {
    font-size: 38px;
    line-height: 1.05;
    letter-spacing: 1px;
}



/* =========================
   SERVICES
========================= */

.services {
  background: #0b0b0b;
  padding: 90px 6%;
}

.section-heading {
  text-align: center;
  margin-bottom: 55px;
}

.section-heading p {
  font-size: 11px;
  letter-spacing: 4px;
  color: #d9b768;
  margin-bottom: 10px;
}

.section-heading h2 {
  font-family: Georgia, serif;
  font-size: 38px;
  font-weight: normal;
  letter-spacing: 2px;
}

.heading-line {
  width: 70px;
  height: 1px;
  background: #d9b768;
  margin: 18px auto 0;
}

.services-container {
  max-width: 1650px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

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

.service-image {
  width: 100%;
  height: 360px;
  overflow: hidden;
  margin-bottom: 28px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-card h3 {
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: normal;
  color: #d9b768;
  margin-bottom: 15px;
}

.service-card p {
  max-width: 350px;
  margin: 0 auto 18px;

  color: #aaa;
  font-size: 13px;
  line-height: 1.7;
}

.service-card a {
  color: #d9b768;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 1.5px;
}


/* MOBILE */

@media (max-width: 800px) {

  .services {
    padding: 70px 6%;
  }

  .services-container {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .service-image {
    height: 350px;
  }

}

/* =========================
   GALLERY
========================= */

.gallery {
  background: #080808;
  padding: 90px 1.5%;
}

.gallery-grid {
  width: 100%;
  max-width: none;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.gallery-item {
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1.12);
}


/* MOBILE */

@media (max-width: 800px) {

  .gallery {
    padding: 70px 6%;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    height: 300px;
  }

}.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.lightbox.active {
  display: flex;
}

.lightbox-img {
  max-width: 95%;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 35px;
  color: white;
  font-size: 42px;
  cursor: pointer;
}.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: white;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  font-size: 30px;
  cursor: pointer;
  z-index: 10000;
  transition: 0.3s;
}

.lightbox-prev {
  left: 35px;
}

.lightbox-next {
  right: 35px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: #d4af37;
  color: #000;
  border-color: #d4af37;

}/* =========================
   VIDEOS
========================= */

.videos {
  background: #0b0b0b;
  padding: 90px 4%;
}

.video-grid {
  max-width: 1450px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.video-card {
  border-radius: 10px;
  overflow: hidden;
  background: #000;
}

.video-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
}


/* MOBILE */

@media (max-width: 800px) {

  .video-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

}/* =========================
   ABOUT
========================= */

.about {
  background: #080808;
  padding: 100px 6%;
}

.about-container {
  max-width: 1500px;
  margin: auto;

  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;

  align-items: center;
}

.about-image {
  height: 550px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-content {
  max-width: 600px;
}

.about-small {
  color: #d9b768;
  font-size: 11px;
  letter-spacing: 4px;
  margin-bottom: 15px;
}

.about-content h2 {
  font-family: Georgia, serif;
  font-size: 42px;
  font-weight: normal;
  letter-spacing: 2px;
}

.about-line {
  width: 70px;
  height: 1px;
  background: #d9b768;
  margin: 22px 0 30px;
}

.about-content p {
  color: #aaa;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-btn {
  display: inline-block;
  margin-top: 15px;

  padding: 15px 28px;

  border: 1px solid #d9b768;
  color: #d9b768;

  text-decoration: none;
  font-size: 11px;
  letter-spacing: 2px;

  transition: 0.3s;
}

.about-btn:hover {
  background: #d9b768;
  color: #080808;
}

@media (max-width: 800px) {

  .about {
    padding: 70px 6%;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    height: 400px;
  }

  .about-content h2 {
    font-size: 34px;
  }

}/* =========================
   CONTACT
========================= */

.contact {
  background: #0b0b0b;
  padding: 100px 6%;
}

.contact-container {
  max-width: 1500px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;

  align-items: center;
}

.contact-small {
  color: #d9b768;
  font-size: 11px;
  letter-spacing: 4px;
  margin-bottom: 15px;
}

.contact-info h2 {
  font-family: Georgia, serif;
  font-size: 42px;
  font-weight: normal;
}

.contact-line {
  width: 70px;
  height: 1px;
  background: #d9b768;
  margin: 22px 0 30px;
}

.contact-text {
  color: #aaa;
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 550px;
}

.contact-details p {
  color: #ccc;
  margin-bottom: 12px;
}

.whatsapp-btn {
  display: inline-block;
  margin-top: 25px;

  padding: 15px 30px;

  border: 1px solid #d9b768;
  color: #d9b768;

  text-decoration: none;
  letter-spacing: 2px;
  font-size: 11px;

  transition: 0.3s;
}

.whatsapp-btn:visited {
    color: #d9b768;
    text-decoration: none;
}

.whatsapp-btn:hover {
  background: #d9b768;
  color: #080808;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 17px 18px;

  background: #111;
  border: 1px solid #333;

  color: white;
  font-family: inherit;
  font-size: 14px;

  outline: none;
}

.contact-form textarea {
  height: 160px;
  resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #d9b768;
}

.contact-form button {
  padding: 17px;

  background: #d9b768;
  border: none;

  color: #080808;
  font-weight: bold;
  letter-spacing: 2px;

  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: white;
}

@media (max-width: 800px) {

  .contact {
    padding: 70px 6%;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 55px;
  }

}/* =========================
   FOOTER
========================= */

.footer {
    background: #050505;
    border-top: 1px solid #1f1f1f;
    padding: 60px 6% 25px;
}

.footer-container {
    max-width: 1500px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.footer-logo img {
    width: 180px;
    height: auto;
    display: block;
}

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

.footer-contact p {
    color: #aaa;
    font-size: 13px;
    margin: 8px 0;
}

.footer-social {
    display: flex;
    gap: 25px;
}

.footer-social a {
    color: #d9b768;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1px;
    transition: 0.3s;
}

.footer-social a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1500px;
    margin: 45px auto 0;
    padding-top: 20px;

    border-top: 1px solid #1f1f1f;
    text-align: center;
}

.footer-bottom p {
    color: #666;
    font-size: 11px;
    letter-spacing: 1px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
}

@media (max-width: 800px) {

    .hero {
    width: 100%;
    min-height: 100vh;
    background-size: cover;
    background-position: 35% center;
    background-repeat: no-repeat;
}

    .navbar {
        width: 100%;
        left: 0;
        padding: 0 20px;
    }

    .menu-toggle {
        display: block;
        position: relative;
        z-index: 1001;
    }

    .book-btn {
        display: none;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100px;
        left: 0;
        width: 100%;
        background: rgba(8, 8, 8, 0.97);
        flex-direction: column;
        align-items: center;
        gap: 25px;
        padding: 30px 0;
    }

    .nav-links.active {
        display: flex;
    }

}

@media (max-width: 800px) {

    /* FOOTER */
    .footer-container {
        width: 100%;
        max-width: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 25px;
    }

    .footer-logo img {
        width: 150px;
        max-width: 100%;
    }

    .footer-contact {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .footer-social {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-bottom {
        width: 100%;
        max-width: 100%;
    }

    /* HERO */
    .hero-content {
        left: 5%;
        right: 5%;
        width: 90%;
        max-width: 90%;
    }

    .hero-content h1 {
        width: 100%;
        max-width: 100%;
        font-size: 32px;
        line-height: 1.05;
        overflow-wrap: normal;
        word-break: normal;
    }

    .hero-content p {
        font-size: 13px;
        line-height: 1.4;
        max-width: 100%;
    }

}

/* Numri i telefonit - mos të bëhet i kaltër në mobile */
a[href^="tel:"] {
    color: inherit;
    text-decoration: none;
}

a[href^="tel:"]:visited,
a[href^="tel:"]:hover,
a[href^="tel:"]:active {
    color: inherit;
    text-decoration: none;
}

/* =========================
   PREMIUM CONTENT SECTIONS
========================= */

.why-premium {
  background: #0d0d0d;
  padding: 95px 6%;
  border-top: 1px solid #171717;
  border-bottom: 1px solid #171717;
}

.why-grid {
  max-width: 1450px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.why-card {
  position: relative;
  min-height: 250px;
  padding: 42px 34px;
  background: linear-gradient(145deg, #111 0%, #0b0b0b 100%);
  border: 1px solid #242424;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.why-card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -70px;
  bottom: -70px;
  border: 1px solid rgba(217,183,104,0.18);
  border-radius: 50%;
}

.why-card:hover {
  transform: translateY(-7px);
  border-color: rgba(217,183,104,0.65);
  background: linear-gradient(145deg, #15130f 0%, #0b0b0b 100%);
}

.why-number {
  display: block;
  color: #d9b768;
  font-family: Georgia, serif;
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 28px;
}

.why-card h3 {
  font-family: Georgia, serif;
  font-size: 21px;
  font-weight: normal;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.why-card p {
  color: #999;
  font-size: 13px;
  line-height: 1.8;
}

.moments {
  background: #080808;
  padding: 95px 6%;
}

.moments-grid {
  max-width: 1450px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #242424;
  border-left: 1px solid #242424;
}

.moment-card {
  min-height: 220px;
  padding: 34px;
  border-right: 1px solid #242424;
  border-bottom: 1px solid #242424;
  transition: background 0.35s ease;
}

.moment-card:hover {
  background: #0f0f0f;
}

.moment-card span {
  color: #d9b768;
  font-size: 11px;
  letter-spacing: 3px;
}

.moment-card h3 {
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: normal;
  margin: 22px 0 12px;
}

.moment-card p {
  color: #929292;
  font-size: 13px;
  line-height: 1.75;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 10px;
}

.about-tags span {
  padding: 9px 13px;
  border: 1px solid #2b2b2b;
  color: #d9b768;
  font-size: 9px;
  letter-spacing: 1.8px;
}

.faq {
  background: #080808;
  padding: 95px 6%;
  border-top: 1px solid #171717;
}

.faq-list {
  max-width: 1050px;
  margin: auto;
  border-top: 1px solid #292929;
}

.faq-item {
  border-bottom: 1px solid #292929;
}

.faq-question {
  width: 100%;
  padding: 25px 0;
  background: transparent;
  border: 0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  font-family: Georgia, serif;
  font-size: 18px;
  cursor: pointer;
}

.faq-question span {
  flex: 0 0 auto;
  color: #d9b768;
  font-family: Arial, sans-serif;
  font-size: 28px;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  max-width: 850px;
  padding: 0 0 24px;
  color: #999;
  font-size: 14px;
  line-height: 1.8;
}

.final-cta {
  position: relative;
  padding: 105px 6%;
  background:
    linear-gradient(rgba(0,0,0,0.72), rgba(0,0,0,0.85)),
    url("outdoor.jpg") center 45% / cover no-repeat;
  text-align: center;
  background-attachment: fixed;
}

.final-cta-inner {
  max-width: 900px;
  margin: auto;
}

.final-cta p {
  color: #d9b768;
  font-size: 11px;
  letter-spacing: 4px;
  margin-bottom: 16px;
}

.final-cta h2 {
  font-family: Georgia, serif;
  font-size: 45px;
  font-weight: normal;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.final-cta-btn {
  display: inline-block;
  padding: 15px 30px;
  border: 1px solid #d9b768;
  color: #d9b768;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 2px;
  transition: 0.3s;
}

.final-cta-btn:hover {
  background: #d9b768;
  color: #080808;
}

.contact-details a,
.footer-contact a {
  color: inherit;
  text-decoration: none;
}

/* Subtle entrance effect */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.reveal-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 800px) {
  .why-premium,
  .moments,
  .faq {
    padding: 70px 6%;
  }

  .why-grid,
  .moments-grid {
    grid-template-columns: 1fr;
  }

  .why-card,
  .moment-card {
    min-height: auto;
  }

  .faq-question {
    font-size: 16px;
    line-height: 1.4;
  }

  .final-cta {
    padding: 80px 6%;
    background-attachment: scroll;
  }

  .final-cta h2 {
    font-size: 31px;
    line-height: 1.15;
  }
}


/* Video horizontal carousel */
.video-carousel-wrap{position:relative;max-width:1800px;margin:0 auto;padding:0 58px}
.video-grid{display:flex!important;grid-template-columns:none!important;gap:35px;overflow-x:auto;scroll-snap-type:x mandatory;scroll-behavior:smooth;padding:8px 2px 18px;scrollbar-width:none}
.video-grid::-webkit-scrollbar{display:none}
.video-card{flex:0 0 clamp(300px,24vw,460px);scroll-snap-align:start;min-width:0}
.video-card video{width:100%;height:auto;aspect-ratio:9/16;object-fit:cover;display:block}
.video-arrow{position:absolute;top:50%;transform:translateY(-50%);z-index:3;width:42px;height:42px;border:1px solid #d9b768;background:#0b0b0b;color:#d9b768;font-size:24px;cursor:pointer;transition:.25s}
.video-arrow:hover{background:#d9b768;color:#080808}.video-prev{left:0}.video-next{right:0}

/* Professional event categories */
.professional-events{padding:100px 6%;background:#080808}
.professional-intro{max-width:900px;margin:0 auto 42px;text-align:center;color:#bdbdbd;line-height:1.85}
.professional-intro p+p{margin-top:14px}.professional-intro strong{color:#e7e7e7;font-weight:600}
.event-types-grid{max-width:1180px;margin:0 auto;display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.event-type-card{border:1px solid rgba(217,183,104,.28);background:#0d0d0d;padding:30px 24px;min-height:190px;transition:.25s}
.event-type-card:hover{transform:translateY(-4px);border-color:#d9b768}
.event-icon{font-family:Georgia,serif;color:#d9b768;font-size:34px;line-height:1;margin-bottom:18px}
.event-type-card h3{font-family:Georgia,serif;color:#f3f3f3;font-size:17px;letter-spacing:.7px;margin-bottom:10px}
.event-type-card p{color:#9f9f9f;line-height:1.65;font-size:14px}
.professional-closing{text-align:center;color:#d9b768;font-family:Georgia,serif;font-size:18px;margin:36px auto 0;max-width:760px}

/* Contact reservation CTA */
.contact-reserve{display:flex;align-items:center;justify-content:center;flex-direction:column;text-align:center;border:1px solid rgba(217,183,104,.28);padding:44px 34px;background:#0d0d0d}
.reserve-lead{color:#bdbdbd;line-height:1.75;max-width:540px;margin:0 auto 28px}.reserve-lead strong{color:#f2f2f2;font-family:Georgia,serif;font-size:22px;font-weight:500}
.reserve-whatsapp{display:inline-flex;align-items:center;justify-content:center;min-height:58px;padding:0 34px;background:#d9b768;color:#080808!important;text-decoration:none;font-weight:700;letter-spacing:.7px;transition:.25s}
.reserve-whatsapp:hover{transform:translateY(-2px);filter:brightness(1.06)}

@media(max-width:800px){
 .video-carousel-wrap{padding:0 18px}.video-grid{gap:18px}.video-card{flex:0 0 min(82vw,360px)}.video-arrow{display:none}
 .professional-events{padding:75px 20px}.event-types-grid{grid-template-columns:1fr}.event-type-card{min-height:auto}
 .contact-reserve{padding:32px 20px}.reserve-whatsapp{width:100%;padding:0 18px;font-size:13px}
}

/* Navigation for all website sections */
@media (min-width: 901px) {
  .nav-links {
    gap: clamp(12px, 1.25vw, 24px);
  }
  .nav-links a {
    font-size: clamp(10px, 0.72vw, 13px);
    white-space: nowrap;
  }
}

section[id] {
  scroll-margin-top: 105px;
}
