
/* Reset dhe font */
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #000;
  color: #fff;
}

.search-link {
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 20px;
  border: 2px solid white;
  border-radius: 30px;
  transition: 0.3s ease;
  font-size: 1rem;
  background-color: transparent;
  margin-left: auto;
}

.search-link:hover {
  background-color: white;
  color: black;
}


/* Header */
.site-header {
  background-color: #000;
  padding: 10px 20px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(255, 255, 255, 0.1);
}

.search-link {
  margin-right: 40px; /* ose 30px nëse don më pak */
}


.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  height: 80px;
}

.header-nav {
  display: flex;
  align-items: center;
}

.search-link {
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 16px;
  border: 2px solid white;
  border-radius: 5px;
  transition: 0.3s;
}

.search-link:hover {
  background-color: white;
  color: black;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  background: url('foto/hero-bg.jpg') no-repeat center center/cover;
  color: white;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, #000 100%);
  z-index: 2;
}


/* Rreth Nesh */
.rreth-nesh {
  position: relative;
  padding: 6rem 2rem;
  height: 100vh; /* KJO E SHTON! */
  text-align: center;
  background: #000;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center; /* E qet përmbajtjen në mes vertikalisht */
  align-items: center;      /* E qet përmbajtjen në mes horizontalisht */
}


.rreth-nesh::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to top, rgba(0,0,0,0) 0%, #000 100%);
  z-index: 1;
}


.rreth-nesh .bg-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.5;
  filter: brightness(0.5);
}

.rreth-nesh .content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  max-width: 800px;
  margin: 0 auto;
}

/* Footer */
.footer {
  position: relative;
  background: linear-gradient(to top, #000, #1a1a1a);
  padding: 4rem 2rem;
  text-align: center;
  color: white;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Teksti në mes vertikalisht */
  align-items: center;     /* Teksti në mes horizontalisht */
}



.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to top, rgba(0,0,0,0) 0%, #000 100%);
  z-index: 1;
}


.footer .bg-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.3;
  filter: brightness(0.4);
}

.footer h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.social-icons img {
  width: 35px;
  height: 35px;
  cursor: pointer;
  transition: transform 0.3s ease;
  filter: brightness(0) invert(1); /* i bën të bardha */
}


.social-icons img:hover {
  transform: scale(1.2);
}

.contacts {
  position: relative;
  z-index: 1;
}

.contacts p {
  margin: 0.3rem 0;
  font-size: 0.95rem;
  color: #ccc;
}

.footer .copyright {
  margin-top: 3rem;
  font-size: 0.8rem;
  color: #777;
  position: relative;
  z-index: 1;
}


.cta-button {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 24px;
  background-color: #00ff88;
  color: black;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 30px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
  background-color: white;
  color: #000;
}


/* Responsive */
/* Për ekrane shumë të vegjël - telefonë */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.5rem;
    padding: 0 10px;
  }

  .rreth-nesh {
    padding: 4rem 1rem;
    height: auto;
  }

  .rreth-nesh .content {
    padding: 1rem;
  }

  .footer h2 {
    font-size: 1.4rem;
  }

  .footer .contacts p {
    font-size: 0.8rem;
  }

  .footer .social-icons {
    flex-wrap: wrap;
    gap: 10px;
  }

  .container {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .search-link {
    margin-right: 0;
  }
    .cta-button {
    padding: 10px 20px;
    font-size: 0.95rem;
    width: 90%;
    max-width: 300px;
    margin-top: 20px;
  }

}
