/* Ngjyra bazuar në logon: #2d402d dhe #d0a46e */
:root {
  --dark: #3a3737 ;
  --beige: #ecb66c ;
  --white: #fff;
  --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: #fff;
  color: var(--dark);
  line-height: 1.6;
}

a {
  text-decoration: none;
}

/* Navbar */
.navbar {
  background-color: var(--white);
  padding: 1.5rem 0;
  border-bottom: 2px solid var(--beige);
  position: sticky;
  top: 0;
  z-index: 100;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 45px;
  margin-left: -13px;
    position: relative; /* e bën të ndikohet nga z-index */
  z-index: 1001; 
}


.nav-links a {
  color: #3a3737;
  margin-left: 1.5rem;
  font-weight: bold;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--dark);
}

/* Hero Section */
.hero {
    overflow: hidden;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 1s ease-in-out;
  text-align: center;
  padding: 8rem 2rem;
  color: var(--beige);
  position: relative;
}
.hero-content {
  color: var(--beige);
  text-shadow: 0px 0px 10px rgba(0,0,0,0.5); /* rrit kontrastin për lexueshmëri */
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn {
  background-color: var(--beige);
  color: var(--dark);
  padding: 1rem 2rem;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #c2965e;
}

/* Sections */
.section {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.section ul {
  list-style-type: disc;
  padding-left: 2rem;
}

.section p {
  margin-bottom: 1rem;
}

/* Galeria */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.gallery img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Kontakt */
.contact-info-modern {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
  color: #333;
  font-size: 1rem;
}

.contact-info-modern p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.contact-info-modern i {
  width: 30px;
  height: 30px;
  background-color: #f3f3f3;
  color: var(--beige); /* Ngjyra për ikonat */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1rem;
}

.contact-info-modern a {
  color: #444;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-modern a:hover {
  color: var(--beige); /* Ngjyra në hover për linkët */
}

/* Footer */
footer {
  background-color: var(--dark);
  color: var(--beige);
  text-align: center;
  padding: 2rem;
  margin-top: 3rem;
}



/* mobile */
.mobile-menu-icon {
  display: none;
  font-size: 2rem;
  color: var(--dark);
  cursor: pointer;
  z-index: 2001;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 90%;
  height: 100vh;
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  padding: 2rem;
  transition: right 0.3s ease;
  z-index: 2000;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav a {
  color: var(--beige);
  text-decoration: none;
  margin: 1.5rem 0;
  font-size: 1.5rem;
  font-weight: bold;
  transition: color 0.3s ease;
}

.mobile-nav a:hover {
  color: var(--dark);
}

@media (max-width: 768px) {
  .hero {
  min-height: auto;
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  transition: background-image 0.5s ease-in-out;
}

  .mobile-menu-icon {
    display: block;
  }

  .hero-content h1{
    font-size: 25px; 

  }

  .hero-content p{
    font-size: 18px;

  }

  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 15px;
    right: -100%;
    width: 77%;
    height: 100vh;
    background-color: var(--white);
    padding: 1.8rem;
    gap: 1rem;
    transition: right 0.3s ease;
    z-index: 1000;
  }
  .nav-links a {
    font-size: 0.95rem;
  }

  .nav-links.open {
    right: 0;
  }
}


/* Stil për contact info brenda hamburger menu */
.contact-info-mobile {
  margin-top: 2rem;
  border-top: 1px solid var(--dark);
  padding-top: 1rem;
  margin-bottom: -10px;
  color: var(--dark);
  font-size: 0.95rem;
 margin-left: 20px; 
  display: none; /* fsheh në desktop */
}


.social-icons-only{
      margin-top: 2rem;
  border-top: 1px solid var(--dark);
  padding-top: 1rem;
  color: var(--dark);
  font-size: 1.1rem;
  margin-left: 20px;
  padding-bottom: 1rem;
    display: none; /* fsheh në desktop */

}

.social-icons-only a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-left: 0px;
}

.social-icons-only i {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--dark);
  border-radius: 50%;
  color: var(--dark);
  font-size: 1rem;
  transition: all 0.3s ease;
    margin-right: 20px;

}




.contact-info-mobile p {
  margin-bottom: 0.8rem;
    font-size: 0.95rem;

}
.contact-info-mobile a {
  color: var(--dark); /* ose ngjyra që përdor */
  text-decoration: none;
  font-size: 0.95rem;
   margin-left: -0px; 

  
}


.contact-info-mobile a:hover {
  color: var(--dark);
}

/* Vetëm në mobile e shfaq */
@media (max-width: 768px) {
  .contact-info-mobile {
    display: block;
  }
  .social-icons-only {
    display: flex;
  }
}

.btn-contact {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.8rem 1.6rem;
  background-color: var(--beige); /* ose var(--beige) nëse e ke të deklaruar */
  color: var(--dark);
  border: none;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-contact:hover {
  background-color: #c99a55;
}


/* back to top */ 
#backToTop {
  position: fixed;
  bottom: 40px;
  right: 30px;
  background-color: var(--beige);
  color: white;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%; /* Ky e bën rrethin */
  text-decoration: none;
  font-size: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1000;
}


#backToTop.show {
  opacity: 1;
  pointer-events: auto;
}


/*slideshow rrethnesh*/
.slider-container {
  overflow: hidden;
  width: 100%;
  max-width: 900px; /* ose sa të duash */
  max-height: 600px;
  margin-top: 20px;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.slider-track {
  display: flex;
  width: calc(5 * 100%); /* 5 foto */
  animation: slide 20s linear infinite;
}

.slider-track img {
  width: 20%; /* 5 foto, secila 20% të gjërësisë së track */
  object-fit: cover;
  border-radius: 15px;
}

/* Animacioni që e lëviz si shirit */
@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-80%);
  }
}

/* evente */ 



.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.image {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.image:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .image {
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  .caption {
    font-size: 1rem;
    bottom: 10px;
    left: 10px;
  }
}

/*lightbox*/
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  cursor: pointer;
}
