/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #34495e;
  background-color: #ffffff;
  line-height: 1.6;
}

/* Header */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.3);
}

/* Nav */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 1em 2em;
  background: transparent;
  position: relative;
  z-index: 100;
}


.nav-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav-logo img {
  width: 128px;
  height: auto;
  display: block;
}

/* .nav-text {
  color: #ffffff;
  align-items: center;
  font-size: 16px;
  line-height: 1.4;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
} */

.nav-text {
  display: flex;
  flex-direction: row;
  justify-content: center;
}


.nav-text p {
  color: #fff;
  align-items: center;
  font-size: 32px;
  line-height: 1.2;
  /* white-space: pre-wrap; */
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
}

.nav-text p b {
  font-size: 20px;
}

.nav-links {
  display: flex;
  gap: 2em;
  list-style: none;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Hamburger Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  z-index: 1001;
}

/* Sticky nav */
.sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: none;
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Hero */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-text {
  display: flex;
  align-items: center;     /* vertical centering */
  justify-content: center; /* horizontal centering */
  text-align: center;
  color: white;
  z-index: 2;
  height: 100%;            /* fills parent section */
  width: 100%;
  position: relative;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: 700;
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.5);
}

.hero-text h3 {
  font-size: 36px;
  font-weight: bold;
  color: #0074aa;
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.9);
}

.hero-text h5 {
  font-size: 32px;
  font-weight: normal;
  color: #ffffff;
  text-shadow:  1px 1px 0px rgba(0, 0, 0, 0.9);
}


/* Map */
#map {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0; left: 0;
  z-index: 0;
}

.map-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

/* Content Blocks */
.text-section {
  padding: 4em 2em;
  background-color: #f4f4f4;
}

.text-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  max-width: 1200px;
  margin: 0 auto;
}

.text-column {
  flex: 1;
  min-width: 300px;
  background: #fff;
  padding: 2em;
  border-radius: 12px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}

.text-column h3 {
  font-size: 28px;
  margin-bottom: 0.5em;
}

.text-column p {
  font-size: 18px;
  text-align: justify;
}

/* Images */
.bottom-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2em;
  max-width: 1200px;
  margin: 4em auto;
}

.column {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.column img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.column p {
  margin-top: 1em;
  font-size: 18px;
  color: #2c3e50;
}

.contact-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0.5rem 1rem;
}

.contact-section h2 {
  font-size: 32px;
  margin-bottom: 0.5rem;
  color: #34495e;
  text-align: center;
}

.contact-section input,
.contact-section textarea,
.contact-section button,
.contact-section label {
  font-family: inherit;
  font-size: 1.1rem;
  color: inherit;
}

.contact-section input,
.contact-section textarea {
  width: 100%;
  /* justify-content: center; */
  margin: 0 auto 1rem auto;
  padding: 0.50rem;
  margin-bottom: 0.25rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.contact-section label {
  font-family: inherit;
  font-size: 1.5rem;
  color: inherit;
  margin-bottom: 0.25rem; /* reduce vertical gap */
  display: block;
  font-weight: 500;
}


.contact-section button {
  background-color: #0074aa;
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
  display: block;
  margin: 0 auto; /* ← this centers the button horizontally */
}

.contact-section button:hover {
  background-color: #005f88;
}

.contact-section form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.contact-section .form-group {
  width: 100%;
  max-width: 400px;
  margin-bottom: 0.5rem;
  text-align: left;
}

/* Responsive */
@media (max-width: 868px) {
    .nav {
        flex-direction: row;
        align-items: stretch;
    }

    .nav-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    }

    .nav-logo img {
    width: 96px;
    height: auto;
    display: block;
    }

    .nav-text {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.4;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    }

    .nav-text p {
    display: none;
    color: #fff;
    align-items: center;
    font-size: 8px;
    line-height: 1.2;
    /* white-space: pre-wrap; */
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
}

  .menu-toggle {
    display: block;
    align-self: flex-end;
    margin-top: 0.5em;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #333;
    padding: 1em;
    gap: 0.5em;
  }

  .nav.active .nav-links {
    display: flex;
  }

  .nav-links a {
    font-size: 16px;
  }

  .hero-section {
    height: 100vh;
  }


  .hero-text h1 {
    font-size: 24px;
    font-weight: 700;
    
  }

  .hero-text h3 {
    font-size: 24px;
    font-weight: bold;
    
  }

  .hero-text h5 {
    font-size: 18px;
    font-weight: normal;

  }



  .text-columns {
    flex-direction: column;
  }

  .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1em;
    padding: 1em;
  }

  .column img {
    width: 100%;
  }

  .mobile-hide {
    display: none;
  }
}
