/* ===== GENERAL ===== */
html {
  scroll-behavior: smooth;
}

body, h1, h2, h3, h4, h5, h6 {
  font-family: "Lato", sans-serif;
  margin: 0;
  padding: 0;
}

h1, .navbar a, button {
  font-family: "Montserrat", sans-serif;
}

body {
  color: #494949;
  line-height: 1.6;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #F6AF2A;
  z-index: 100;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px;
}

.nav-logo {
  color: white;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  padding: 14px 0;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 26px;
  cursor: pointer;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 10px;
  margin: 0;
}

.nav-links li a {
  display: block;
  color: white;
  text-decoration: none;
  padding: 16px 20px;
  font-size: 16px;
  transition: 0.3s;
}

.nav-links li a:hover {
  background: white;
  color: #F6AF2A;
}

.nav-links li a.active {
  background: white;
  color: #F6AF2A;
}

.flag-icon {
  width: 28px;   /* adjust size as needed */
  height: auto;
  vertical-align: middle;
  border-radius: 3px; /* optional: rounded corners */
  cursor: pointer;
  transition: transform 0.2s;
}

.flag-icon:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #F6AF2A;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li a {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.3);
  }
}

/* ===== HEADER ===== */
.header {
  background: #F6AF2A;
  color: white;
  text-align: center;
  padding: 128px 16px;
  margin-top: 50px;
}

.header .logo {
  max-width: 700px; 
  width: 100%;       
  height: auto;
  margin-bottom: 20px;
}

.header h1 {
  font-size: 32px;
  margin: 0 0 10px;
}

.header p {
  font-size: 24px;
  margin-bottom: 30px;
}

.btn {
  background: #00A6EB;
  color: white;
  border: none;
  padding: 16px 32px;
  font-size: 18px;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.btn:hover {
  background: #333;
}

/* ===== SECTIONS ===== */
.section {
  padding: 64px 16px;
}

.section.light {
  background: #f1f1f1;
}

.content {
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.content.reverse {
  flex-direction: row-reverse;
}

.text {
  flex: 1.5;
  min-width: 400px; 
}

.icon {
  flex: 1.5; 
  text-align: center;
  min-width: 400px; 
}

.icon img.section-img {
  width: 100%;
  height: auto;
  display: block;
  margin: auto;
  border-radius: 8px;
  max-width: none;
}

/* ===== TEXT STYLING ===== */
.subtext {
  font-size: 18px;
  margin-bottom: 20px;
}

.muted {
  color: #555;
}

/* ===== QUOTE ===== */
.quote {
  background: #00A6EB;
  color: white;
  text-align: center;
  padding: 64px 16px;
  opacity: 0.9;
}

.quote h2 {
  font-size: 24px;
}

/* ===== FOOTER ===== */
.footer {
  background: #00A6EB;
  color: white;
  text-align: center;
  padding: 40px 16px;
  font-size: 16px;
  line-height: 1.6;
}

.footer .contact-info p {
  margin: 5px 0;
}

.footer .logo {
  max-width: 500px; 
  width: 100%;       
  height: auto;
  margin-bottom: 20px;
}

.footer .logo2 {
  max-width: 300px; 
  width: 100%;       
  height: auto;
  margin-bottom: 0px;
  margin-top: 20px;
}

/* ===== RESPONSIVE CONTENT ===== */
@media (max-width: 1200px) {
  .content {
    gap: 50px;
  }
}

@media (max-width: 1024px) {
  .content {
    gap: 40px;
  }
}

@media (max-width: 800px) {
  .content, .content.reverse {
    flex-direction: column;
    text-align: center;
  }

  .icon img.section-img {
    max-width: 90%;
    margin: 20px auto;
  }
}
