/* General */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #fff;
  color: #222;
}


h1, h2, h3 {
  font-weight: 600;
  letter-spacing: 1px;
}

a {
  text-decoration: none;
  color: inherit;
}

.hidden {
  display: none;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 15px 40px;
  border-bottom: 2px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .logo {
  display: flex;
  align-items: center;
  font-size: 1.5em;
  font-weight: bold;
}

header .logo img {
  height: 40px;
  margin-right: 10px;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

header nav ul li a {
  padding: 8px 15px;
  border: 1px solid #000;
  border-radius: 5px;
  color: #000;
  transition: all 0.3s ease;
}

header nav ul li a:hover {
  background: #000;
  color: #fff;
}

/* Sections */
section {
  padding: 60px 40px;
  text-align: center;
}

.hero {
  padding: 100px 40px;
}

.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #000;
  color: #fff;
  border-radius: 5px;
  transition: 0.3s;
}

.btn:hover {
  background: #444;
}

/* Our Work Gallery */
#ourWork {
  background: #fff;
}

.work-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.work-header button {
  padding: 8px 15px;
  background: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.gallery img {
  width: 100%;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  padding-top: 60px;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 80%;
}

#caption {
  text-align: center;
  color: #ccc;
  margin-top: 10px;
}

#closeModal {
  position: absolute;
  top: 20px; right: 35px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 16px;
  color: white;
  font-size: 40px;
  user-select: none;
}

.prev { left: 20px; }
.next { right: 20px; }

body {
    margin: 0;
    padding: 0;
    background: url(bg77.jpg) repeat;
    background-size: auto; /* ose provo cover nëse do ta mbushë */
    font-family: Arial, sans-serif;
}
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
body {
  margin: 0;
  padding: 0;
  background: url("brick-wall-white.png") repeat;
  font-family: Arial, sans-serif;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.8); /* shtresë e bardhë 80% transparencë */
  z-index: -1;
}
