@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  --primary-color: #e5834c;
}
a {
  color: inherit;
  text-decoration: none;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  padding: 20px;
  z-index: 9;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar {
  display: flex;
  gap: 20px;
  list-style: none;
}
.logo img {
  max-height: 80px;
}
.navbar li a {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  color: #ffffff;
}

.hero-section {
  background-image: url(../images/bgg\ 1.jpg);
  background-size: cover;
  background-position: center;
  height: 100dvh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.hero-section-div {
  position: relative;
  text-align: center;
}
.hero-section-div h1 {
  color: #fff;
  font-style: normal;
  font-weight: 700;
  font-size: 62px;
  line-height: 93px;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}
.hero-section-div h1::before {
  position: absolute;
  content: "";
  height: 3px;
  width: 100%;
  background-color: #fff;
  bottom: 10px;
  left: 220px;
}
.hero-section-div h1 span {
  color: #e5834c;
  display: inline-block;
  position: relative;
}
.hero-section-div h1 span::before {
  position: absolute;
  content: "";
  height: 3px;
  width: 100%;
  background-color: #e5834c;
  bottom: 10px;
}
.hero-section-div p {
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;

  color: #ffffff;
}
.div-btn a {
  font-weight: 700;
  font-size: 20px;
  line-height: 42px;
  color: #e5834c;
  background-color: #fff;
  padding: 10px 25px;
  border-radius: 8px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.div-btn a img {
  max-height: 28px;
}
.div-btn {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 15px;
}
.about-btn {
  color: #fff !important;
  background-color: #e5834c !important;
}
.btn-active {
  color: #fff !important;
  background-color: #e5844cb5 !important;
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #d9d9d9;
  height: 80%;
  width: 100%;
  display: block;
  z-index: 999;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 800px;
  padding: 50px;
  border-radius: 20px;
}

.modal h1 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 25px;
  line-height: 39px;
  color: #000000;
  text-align: center;
}
.modal h2 {
  position: absolute;
  width: 1918px;
  height: 1081px;
  background: #d9d9d9;
  border-radius: 68px;
}
.modal p {
  max-width: 1350px;
  margin: auto;
  line-height: 30px;
}
.continue-btn {
  background: none;
  border: none;
  position: absolute;
  right: -50%;
  left: -50%;
  margin-top: 10px;
  background-color: var(--primary-color);
  border-radius: 12px;
  max-width: 100px;
  margin: 20px auto;
  padding: 10px;
  color: #fff;
}

.openinng-letter {
  border: 1px solid #e5834c;
}

.close-modal {
  display: none;
}

.container {
  padding-left: 20px;
  padding-right: 20px;
  max-width: 1350px;
  margin: auto;
  width: 100%;
}

.img-logo {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 10px 0;
  height: 200px;
}

.history-card {
  max-width: 1350px;
  margin: auto;
  border: #e5834c 1px solid;
  padding: 20px;
  border-radius: 12px;
}

.history-card h2 {
  color: var(--primary-color);
  font-size: 25px;
  margin-bottom: 20px;
}

.history-card p {
  color: #000;
  border-radius: 12px;
  line-height: 30px;
}

.toggle-btn {
  border: none;
  background: none;
  cursor: pointer;
  color: #e5834c;
  position: absolute;
  right: 25%;
  margin-bottom: 10px;
}

.hidden-text {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.hidden-text.show {
  display: inline;
  opacity: 1;
}

.overflow-hidden {
  overflow: hidden;
  position: relative;
}

.act-title h1 {
  color: var(--primary-color);
  max-width: 1350px;
}

.activitiy-cards {
  display: flex;
  gap: 20px;
}

.activitiy-cards img {
  width: 100%;
}

.activity-card a {
  background-color: var(--primary-color);
  color: #fff;
  margin: 10px 0;
  padding: 10px 10px;
  display: inline-block;
  border-radius: 6px;
}

.activity-card img {
  border-radius: 10px;
}
.overflow-hidden {
  overflow: hidden;
}

.school-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.school-logo img {
  max-height: 60px;
  margin-right: 20px;
}

footer {
  background-color: #e5834c;
  padding: 20px;
  color: #fff;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.footer-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 10px 0;
}

.footer-info img {
  max-height: 30px;
  margin-right: 20px;
}

.bashkpuntoret h4 {
  margin-bottom: 10px;
}
.bashkpuntoret img {
  max-height: 40px;
}

.copyright {
  text-align: center;
}

iframe {
  border-radius: 12px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1350px;
  margin: 0 auto;
  padding: 70px 20px;
}
.team-box img {
  width: 100%;
  max-height: 415px;
}

.about-header {
  background-color: #1b2e2d;
}

.name-box {
  display: flex;
}

.hidden-team {
  display: none;
}

#toggle-team-btn {
  border: none;
  background: none;
  cursor: pointer;
  color: #e5834c;
  width: 80%;
  text-align: right;
  margin-bottom: 10px;
}

.staff {
  padding-top: 200px;
  color: #e5834c;
  text-align: center;
}

.staff p {
  font-size: 60px;
  line-height: 30px;
}

.hr-staff {
  border: 1px solid #e5834c;
  width: 10%;
  margin: 20px auto;
}

.team-box h3 {
  text-align: center;
}

.name-box {
  display: flex;
  width: 50%;
  justify-content: space-between;
}

.name-box h4 {
  text-align: center;
}

.name-box h3 {
  color: #e5834c;
}

.drejtimet {
  max-width: 400px;
  margin: auto;
  color: #e5834c;
  text-align: center;
}

.drejtimet-box h2 {
  margin-bottom: 20px;
}

.drejtimet-box {
  margin: auto;
  border: 0.5px solid #e5834c;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.hr-drejtimi {
  border: 1px solid #e5834c;
  max-width: 80%;
  margin: auto;
}

.drejtimi h3 {
  padding: 20px;
}

.rregullorja-hero-section {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  padding-top: 120px; /* accounts for fixed header */
}

.rregullore-header {
  text-align: center;
}

.rregullore-header h1 {
  font-size: 20px;
  line-height: 1.6;
}

.titulli h1 {
  margin-top: 50px;
  color: black;
  font-size: 50px;
  text-decoration: underline var(--primary-color);
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
  text-align: center;
}

.rregullore-tekst p {
  font-family: "Inter";
  font-weight: 600;
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.6;
  text-align: left;
}

.nenet {
  font-family: "Inter";
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}
.nenet h1 {
  text-decoration: underline var(--primary-color);
}
.nenet p {
  font-family: "Inter";
  font-weight: 600;
}

.last-paragraph {
  margin-bottom: 100px;
}
.aktivitetet-btn {
  padding-top: 150px;
  max-width: 1350px;
  margin: auto;
  padding-bottom: 30px;
  display: flex;
  justify-content: space-around;
  gap: 80px;
  text-align: center;
}
.aktivitetet-btn .about-btn,
.aktivitetet-btn .btn-active {
  color: #fff !important;
  padding: 20px 60px;
  width: 100%;
  border-radius: 12px;
}

.menu-toggle {
  display: none;
}

.bashkpunimi {
  width: 100%;
  margin-top: 50px;
}

.col-photo-logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0;
}

.bashkpunimi-text {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 30px;
  color: #000000;
}

.bashkpunimi hr {
  border: 1px solid #e5834c;
  margin: auto;
  margin: 30px 0;
}

.aktivitetet-shkollore {
  width: 100%;
  margin: 0;
  padding: 0;
}

.aktivitetet-shkollore-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.aktivitetet-shkollore-images img {
  width: 100%;
  flex: 1 0 100%;
  object-fit: cover;
  display: block;
}

.shetitja-title {
  text-align: center;
  margin: 50px 0;
}

.shetitja-title h3 {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 64px;
  line-height: 78px;
  color: #e5834c;
}

.shetitja-text p {
  font-style: normal;
  font-weight: 500;
  font-size: 30px;
  line-height: 39px;
  text-align: center;
  color: #000000;
  margin-bottom: 50px;
}

.hendboll p {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 32px;
  text-align: center;
  color: #000000;
}
.basketboll p {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 32px;
  text-align: center;
  color: #000000;
}

html {
  scroll-behavior: smooth;
}

.nav-link-logo img {
  cursor: pointer;
}

.map {
  width: 500px;
  height: 450px;
}

@media (max-width: 1024px) {
  .navbar {
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: #1b2e2d;
    padding-top: 60px;
    gap: 20px;
    transition: right 0.3s ease;
    z-index: 999;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    justify-content: center;
    padding: 20px;
  }

  .navbar.active-view {
    right: 0;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1000;
  }

  .menu-toggle span {
    width: 30px;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s;
    z-index: 1000;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .team-grid {
    padding: 70px 20px 10px 20px;
  }

  #toggle-team-btn {
    margin: 10px 0 50px 0;
  }

  .aktivitetet-btn {
    flex-direction: column;
    gap: 20px;
    margin: auto;
  }

  .hendboll p {
    font-size: 18px;
    line-height: 25px;
  }

  .basketboll p {
    font-size: 18px;
    line-height: 25px;
  }

  .hendboll img {
    max-width: 100%;
    height: auto;
  }
  .basketboll img {
    max-width: 100%;
    height: auto;
  }

  .col-photo-logo {
    justify-content: space-around;
  }

  .col-photo-logo img {
    max-height: 200px;
  }

  .shetitja-text p {
    font-size: 17px;
    line-height: 25px;
  }

  .shetitja-title h3 {
    font-size: 50px;
  }
}

@media (max-width: 768px) {
  .hero-section-div h1 {
    font-size: 45px;
    margin-bottom: 0;
  }

  .hero-section-div h1::before {
    left: 160px;
  }

  .hero-section-div p {
    font-size: 20px;
  }

  .div-btn a {
    padding: 8px 20px;
  }

  .img-logo {
    height: 150px;
  }

  .history-card {
    margin: 0 10px;
  }

  .history-card h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .toggle-btn {
    right: 10%;
  }

  .act-title h1 {
    font-size: 25px;
  }
  .activity-card a {
    padding: 8px 8px;
  }
  footer {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .map {
    max-width: 300px;
    height: 400px;
    margin: auto;
  }

  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .drejtimi h3 {
    font-size: 15px;
  }

  .drejtimet-box {
    max-width: 350px;
  }

  .rregullore-header h1 {
    font-size: 16px;
    line-height: 1.6;
  }

  .titulli h1 {
    font-size: 30px;
    margin: 20px 0;
  }

  .rregullorja-hero-section {
    gap: 20px;
  }

  .nenet h1 {
    font-size: 25px;
  }

  .nenet p {
    font-size: 15px;
    margin-bottom: 15px;
  }

  .col-photo-logo {
    flex-direction: column;
    gap: 10px;
  }

  .bashkpunimi-text {
    font-size: 15px;
    line-height: 25px;
    margin-top: 20px;
  }

  .col-photo-logo img {
    max-height: 155px;
  }

  .shetitja-title h3 {
    font-size: 40px;
  }
}

@media (max-width: 480px) {
  .modal h1 {
    font-size: 17px;
  }
  .modal p {
    font-size: 11px;
  }
  .hero-section-div h1 {
    font-size: 32px;
  }

  .hero-section-div h1::before {
    left: 140px;
  }

  .div-btn a {
    font-size: 15px;
  }

  .div-btn a {
    padding: 5px 14px;
  }

  .div-btn a img {
    max-height: 20px;
  }

  .activitiy-cards {
    flex-direction: column;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rregullore-header h1 {
    font-size: 11px;
    margin-top: 30px;
  }

  .titulli h1 {
    font-size: 25px;
    margin: 10px 0;
  }

  .nenet h1 {
    font-size: 22px;
    margin: 10px 0;
  }

  .nenet p {
    font-size: 15px;
    margin-bottom: 15px;
  }

  .hendboll p {
    font-size: 15px;
    line-height: 22px;
  }

  .basketboll p {
    font-size: 15px;
    line-height: 22px;
  }

  .shetitja-title h3 {
    font-size: 30px;
  }
}
.overflow-hidden::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}
