* {
  box-sizing: border-box;
  font-family: "Font", sans-serif;
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "Font";
  src: url("fonts/bpg-nino-mtavruli-bold-webfont.ttf");
  font-weight: normal;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #333;
  background-color: white;
}

/* LINKS */
a {
  text-decoration: none;
  color: inherit;
}

/* HEADER */
.main-header {
  background-color: white;
  border-bottom: 1px solid lightgray;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.main-header .logo img {
  height: 55px;
  transition: transform 0.3s;
}

.main-header .logo img:hover {
  transform: scale(1.05);
}

.main-header nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-header nav a {
  margin-left: 12px;
  font-weight: 500;
  font-size: 14px;
  color: #444;
  transition: color 0.25s;
  position: relative;
  padding-bottom: 2px;
}

.main-header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1.5px;
  background: #007bff;
  transition: width 0.25s ease;
}

.main-header nav a:hover {
  color: #007bff;
}

.main-header nav a:hover::after {
  width: 100%;
}

.hero {
  position: relative;
  text-align: center;
  overflow: hidden;
}
.hero img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  display: block;
  filter: brightness(35%);
}

/* flag icon */
.fi {
  font-size: 18px;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 900px;
  color: whitesmoke;
  text-align: center;
  padding: 20px;
  border-radius: 25px;
  animation: heroIntro 2s ease;
}
.hero-text h1 {
  font-size: 42px;
  margin-bottom: 10px;
}
.hero-text p {
  font-size: 18px;
  margin-bottom: 20px;
}

/* BUTTON */
.cta-btn {
  background-color: #007bff;
  color: white;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.3s;
}

.cta-btn:hover {
  background-color: #0056b3;
  transform: scale(1.05);
}

.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  padding: 70px 20px;
  gap: 30px;
  background-color: #f9f9f9;
}

.services h2 {
  width: 100%;
  flex-basis: 100%;
  text-align: center;
  font-size: 34px;
}

.service {
  background-color: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 300px;
  text-align: center;
  transition: 0.3s;
}

.service:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.videos {
  text-align: center;
  padding: 60px 20px;
  margin-bottom: 100px;
}

.geflag {
  text-align: center;
}

.geflag img {
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
  padding: 0;
  margin: 25px auto;
  object-fit: cover;
  border-radius: 12px;
}

.video-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.video-item {
  width: 100%;
  display: flex;
  justify-content: center;
  cursor: pointer;
}

.video-item video {
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
}

/* GALLERY */
.gallery {
  padding: 60px 20px;
  text-align: center;
  background-color: #f9f9f9;
}

.gallery h2 {
  margin-bottom: 40px;
  font-size: 28px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  max-width: 1200px;
  margin: auto;
  cursor: pointer;
}
.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;
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.gallery-grid img:hover {
  transform: scale(1.05);
}
/* ABOUT */
.about {
  padding: 70px 20px;
  text-align: center;
  background: #f7f7f7;
}

.about h2 {
  font-size: 34px;
  margin-bottom: 40px;
}

.about h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: auto;
}

.video-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.video-modal video {
  width: 80%;
  max-width: 900px;
  border-radius: 10px;
}

.video-modal .close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: white;
}

.about-card {
  background: white;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.about-card h3 {
  margin-bottom: 10px;
}

.about-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

/* CONTACT */
.contact {
  padding: 60px;
  background-color: #f9f9f9;
  text-align: center;
}

.contact form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact input,
.contact textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  width: 100%;
}

.buttonsubmit button {
  padding: 12px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.buttonsubmit button:hover {
  background-color: #0056b3;
}

/* FOOTER */
.footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

@keyframes heroIntro {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .main-header {
    flex-direction: column;
    align-items: center;
  }

  .hero-text h1 {
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
    font-size: 30px;
    line-height: 1.2;
  }

  .hero-text {
    min-width: 0;
  }
  .main-header nav {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 3px;
    flex-wrap: nowrap;
    max-width: 100%;
    padding: 0 5px;
  }

  .main-header nav a {
    white-space: nowrap;
    flex: 0 auto;
    font-size: 14px;
  }

  .main-header nav::-webkit-scrollbar {
    display: none;
  }

}
