* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f5f5f5;
  color: #222;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 90%;
  max-width: 1150px;
  margin: auto;
}

/* HEADER */
.header {
  background: white;
  border-bottom: 3px solid #b91c1c;
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid #1d4ed8;
  object-fit: contain;
}

.logo-text h1 {
  font-size: 18px;
  color: #1e3a8a;
}

.logo-text p {
  font-size: 13px;
  color: #666;
}

.menu {
  display: flex;
  gap: 18px;
}

.menu a {
  font-weight: bold;
  color: #1d4ed8;
  transition: 0.2s;
}

.menu a:hover {
  color: #b91c1c;
}

.menu a.active {
  color: #b91c1c;
}

/* MOBILE */
.menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 30px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: white;
  border-top: 1px solid #ddd;
}

.mobile-menu a {
  padding: 12px;
  border-bottom: 1px solid #eee;
  font-weight: bold;
  color: #1d4ed8;
}

.mobile-menu a:hover {
  background: #f1f1f1;
  color: #b91c1c;
}

/* SLIDER */
.slider {
  position: relative;
  width: 100%;
  height: 430px;
  overflow: hidden;
}

.slides {
  height: 100%;
}

.slide {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
}

.slide.active {
  display: block;
}

.slide img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  filter: brightness(70%);
}

.slide-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  width: 80%;
}

.slide-text h2 {
  font-size: 38px;
  margin-bottom: 10px;
}

.slide-text p {
  font-size: 18px;
  margin-bottom: 18px;
}

.btn {
  display: inline-block;
  background: #1d4ed8;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: bold;
  color: white;
  transition: 0.2s;
}

.btn:hover {
  background: #1e3a8a;
}

/* Slider dots */
.slider-controls {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 13px;
  height: 13px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: white;
}

/* MAIN SECTIONS */
.welcome {
  background: white;
  padding: 30px;
  margin-top: 30px;
  border-radius: 14px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.welcome h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #1e3a8a;
}

/* EVENTS */
.events-preview {
  margin-top: 40px;
  margin-bottom: 50px;
}

.events-preview h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #1e3a8a;
}

.events-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.event-card {
  background: white;
  border-radius: 14px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.event-date {
  background: #1d4ed8;
  color: white;
  padding: 18px;
  text-align: center;
  width: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-date .day {
  font-size: 28px;
  font-weight: bold;
}

.event-date .month {
  font-size: 14px;
  font-weight: bold;
}

.event-content {
  padding: 18px;
}

.event-content h3 {
  color: #b91c1c;
  margin-bottom: 8px;
  font-size: 20px;
}

.event-content p {
  color: #444;
  margin-bottom: 10px;
}

.read-more {
  font-weight: bold;
  color: #1d4ed8;
}

.read-more:hover {
  color: #b91c1c;
}

/* Button secondary */
.btn-secondary {
  display: inline-block;
  background: #b91c1c;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: bold;
  color: white;
  transition: 0.2s;
}

.btn-secondary:hover {
  background: #7f1d1d;
}

/* FOOTER */
.footer {
  background: #0f172a;
  color: white;
  padding: 40px 0;
  margin-top: 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.footer h3 {
  margin-bottom: 10px;
  color: #93c5fd;
}

.footer p {
  color: #ddd;
  font-size: 14px;
}

.footer a {
  color: white;
  font-weight: bold;
}

.footer a:hover {
  color: #f87171;
}

.footer-bottom {
  margin-top: 25px;
  text-align: center;
  font-size: 13px;
  color: #aaa;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 15px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .menu {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .slide-text h2 {
    font-size: 26px;
  }

  .slide-text p {
    font-size: 15px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}
/* GALERI E MADHE */
.gallery-section {
  margin-top: 30px;
  margin-bottom: 50px;
}

.gallery-grid2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 25px;
}

.gallery-grid2 img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  cursor: pointer;
  transition: 0.2s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.gallery-grid2 img:hover {
  transform: scale(1.03);
}

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 14px;
  border: 3px solid white;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 35px;
  font-size: 45px;
  color: white;
  cursor: pointer;
}

/* Responsive galeria */
@media (max-width: 900px) {
  .gallery-grid2 {
    grid-template-columns: 1fr;
  }

  .gallery-grid2 img {
    height: 250px;
  }
}
/* CONTACT PAGE */
.contact-page {
  margin-top: 30px;
  margin-bottom: 50px;
}

.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 20px;
}

.contact-info,
.contact-form-box {
  background: white;
  padding: 22px;
  border-radius: 14px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.contact-info h3,
.contact-form-box h3 {
  color: #1e3a8a;
  margin-bottom: 10px;
}

.contact-info p {
  margin-bottom: 10px;
}

.contact-info a {
  color: #1d4ed8;
  font-weight: bold;
}

.map-box {
  background: white;
  padding: 22px;
  border-radius: 14px;
  margin-top: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.map-box h3 {
  color: #1e3a8a;
}

/* Responsive kontakt */
@media (max-width: 900px) {
  .contact-box {
    grid-template-columns: 1fr;
  }
}

