@font-face {
  font-family: 'Lato-Regular';
  src: url('../fonts/Lato-Regular.ttf') format('truetype');
  font-style: normal;
}

@font-face {
  font-family: 'Lato-Bold';
  src: url('../fonts/Lato-Bold.ttf') format('truetype');
  font-style: normal;
}

body
 {
    margin: 0px;
}


/* ---------- HEADER WRAPPER ---------- */
.header {
      font-family: 'Lato-Regular';
  width: 100%;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background: white;
  box-sizing: border-box;
}

/* ---------- LOGO ---------- */
.header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header .logo img {
height: 80px;
    width: auto;
}

/* ---------- RIGHT SIDE INFO ---------- */
.header-info {
  display: flex;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.info-block {
  text-align: left;
}

.info-block h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.info-block p {
  margin: 3px 0 0;
  font-size: 15px;
  color: #333;
}

.hero {
    font-family: 'Lato-Bold';
  position: relative;
  width: 100%;
  height: 80vh; /* Full screen height */
  overflow: hidden;
}

/* HERO IMAGE */
.hero picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
      object-position: bottom;
}

/* DARK OVERLAY */
.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* adjust darkness */
}

/* CENTERED TEXT + BUTTON */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  width: 90%;
  max-width: 100vw;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 25px;
}

/* BUTTON */
.hero-btn {
  padding: 14px 35px;
  font-size: 18px;
  border: none;
  background: #27ab8e;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
}

.custom-footer {
  background: #40484E;
  color: #d8dee4;
  padding: 60px 80px;
  font-family: 'Lato-Regular';
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  width: 180px;
  margin-bottom: 30px;
}

/* Legal Links */
.legal-links a {
  display: block;
  margin-bottom: 10px;
  color: #d8dee4;
  text-decoration: none;
  font-size: 16px;
}

/* Column Titles */
.footer-col h3 {
  font-size: 22px;
  margin-bottom: 25px;
  color: white;
}

/* Navigation Links */
.footer-links {
  display: flex;
  gap: 60px;
}

.footer-links a {
  display: block;
  margin-bottom: 12px;
  font-size: 17px;
  color: #d8dee4;
  text-decoration: none;
}

/* Contact Icons */
.footer-contact span {
  margin-right: 10px;
  font-size: 18px;
}

.footer-contact {
  margin: 10px 0;
  font-size: 17px;
}


/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {

  .header {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .header-info {
    flex-direction: column;
    gap: 15px;
    margin-top: 0px;
  }

  .info-block {
    text-align: center;
  }

   .hero {
    height: 70vh; /* smaller height for mobile */
  }
  
  .hero-content h1 {
    font-size: 45px;
    margin-bottom: 1rem;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-btn {
    font-size: 16px;
    padding: 12px 28px;
  }

   .footer-container {
    flex-direction: column;
    gap: 40px;
  }

  .footer-links {
    flex-direction: column;
    gap: 20px;
  }

  .footer-col {
    text-align: left;
  }
}