* {
  box-sizing: border-box;
  font-family: 'Fonti';
}

@font-face {
  font-family: 'Fonti';
  src: url('fonts/bpg-nino-mtavruli-bold-webfont.ttf');
}

body {
  margin: 0;
  color: #333;
  background-color: #C7E3ED;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ================= HEADER ================= */

.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: white;
  border-bottom: 1px solid lightgray;
  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);
}

/* NAV */
.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;
}

/* underline */
.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%;
}

/* flag icon */
.fi {
  font-size: 18px;
}

/* ================= CONTACT ================= */

.contact-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 40px 20px;
  gap: 30px;
  font-size: 20px;
  background-color: #C7E3ED;
  animation: fadeUp 0.6s ease forwards;
}

.contact-section iframe {
  flex: 1;
  min-height: 400px;
  border: 0;
  border-radius: 10px;
  max-width: 600px;
  animation: fadeUp 0.7s ease forwards;
}

.contact-section .contact-info {
  flex: 1;
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  text-align: center;
  animation: fadeUp 0.7s ease forwards;
}

.contact-section .contact-info h2 {
  margin-bottom: 15px;
  color: #007BFF;
}

.contact-section .contact-info p {
  margin: 10px 0;
  padding: 6px;
}

/* ================= FOOTER ================= */

footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= RESPONSIVE ================= */

* {
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
}

@media (max-width: 768px) {

  .main-header {
    flex-direction: column;
    align-items: center;
  }

  .main-header nav {
    margin-top: 10px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 3px;
    width: 100%;
    overflow-x: auto;
    padding: 0 5px;
    box-sizing: border-box;
  }

  .main-header nav a {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 14px;
  }

  .main-header nav::-webkit-scrollbar {
    display: none;
  }
}