/* RESET & GLOBAL STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: Arial, sans-serif;
  color: #333;
  min-height: 100%;
  width: 100%;
}

/* COLOR VARIABLES (Adjust as needed) */
:root {
  --primary-color: #003366;   /* Navy */
  --accent-color: #0099cc;    /* Light Blue */
  --background-color: #f7f7f7;
  --text-color: #333;
}

/* HEADER */
header {
  background: var(--primary-color);
  color: #fff;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}

.logo span {
  margin-left: 10px;
  font-size: 1.5em;
  font-weight: bold;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

/* HERO SECTION */
.hero {
  position: relative;
  width: 100%;
  height: 70vh; /* Adjust as needed or use min-height if you prefer */
  background: url('hero_optimized_1920.webp') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Dark overlay for better text visibility */
.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
  color: #fff;
}

.hero-content h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.btn {
  background: var(--accent-color);
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #007aa3;
}

/* INFO SECTIONS */
.info-section {
  padding: 60px 20px;
  text-align: center;
  background: var(--background-color);
}

.info-section h2 {
  margin-bottom: 20px;
  font-size: 2em;
  color: var(--primary-color);
}

.info-section p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1em;
  line-height: 1.6;
}

/* FOOTER */
footer {
  background: var(--primary-color);
  color: #fff;
  text-align: center;
  padding: 20px;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 10px;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .hero {
    height: auto; /* Let content dictate height on smaller screens */
    padding: 40px 0;
  }

  .hero-content h1 {
    font-size: 1.8em;
  }

  .hero-content p {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .buttons {
    flex-direction: column;
    gap: 10px;
  }
}
