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

body {
    font-family: sans-serif;
    line-height: 1.6;
    background: #f5f5f5;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
.main-header {
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 1rem 0;
    color: white;
}

.main-header .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 250px;
    width: auto;
}

.logo-container {
    position: relative;
    display: inline-block;
}

.logo-overlay-text {
    position: absolute;
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
    top: 75%; /* Adjust this value to move the text vertically */
    pointer-events: none;
}

.highlight {
    color: #007a66;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-menu li a {
    color: white;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: #007a66;
    text-shadow: 0 0 15px #00baff, 0 0 30px #00baff;
}

/* Hero */
.hero {
    background: url('../images/logo.jpg') no-repeat center center/cover;
    height: 120vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 2rem;
    padding-top: 150px;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.6);
}

/* For non-home pages */
.hero {
    height: 104vh; /* shorter height to hide bottom text */
    overflow: hidden; /* ensures hidden part doesn't show */
    background-position: center 43%;
    background-size: cover;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* ======================
   CONTACT SECTION
====================== */
.contact-section {
  padding: 60px 20px;
  background: #fff;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  align-items: flex-start;
}

.contact-info {
  flex: 1 1 300px;
}

.contact-info h3 {
  font-size: 1.8rem;
  color: #007a66;
  margin-bottom: 15px;
}

.contact-info p {
  margin-bottom: 20px;
  color: #555;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info ul li {
  margin-bottom: 12px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info i {
  color: #007a66;
  font-size: 1.2rem;
}

/* Contact form */
.contact-form {
  flex: 1 1 400px;
  background: #f5f5f5;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #007a66;
  outline: none;
  box-shadow: 0 0 5px rgba(0,122,102,0.3);
}

.btn {
  background: #007a66;
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn:hover {
  background: #005e4f;
}

.form-message {
  margin-top: 15px;
  font-size: 0.9rem;
  color: #007a66;
}

/* Footer */
.footer {
  background-color: #007a66;
  color: #fff;
  padding: 40px 20px;
  margin-top: 60px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-column {
  flex: 1 1 220px;
  margin: 10px 20px;
}

.footer-column h4 {
  font-size: 18px;
  margin-bottom: 15px;
  border-bottom: 2px solid #007a66;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #fff;
}

.footer-logo {
  width: 200px;
  margin-bottom: 10px;
}

.footer-subtext {
  font-size: 10px;
  color: #ccc;
  margin-left: 65px;
  margin-top: -60px;
}

.footer-bottom {
  background-color: #002620; /* darker than footer */
  color: #aaa;
  text-align: center;
  padding: 15px 10px;
  font-size: 14px;
  border-top: 1px solid #00453b;
}