/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@600&family=Open+Sans:wght@400&display=swap");

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Open Sans", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

/* Navigation */
header {
  background: #003366;
  padding: 1rem;
}
nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
}
nav ul li {
  margin: 0 1rem;
}
nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
nav ul li a:hover {
  text-decoration: underline;
}

/* Hero */
#hero {
  background: url("ship.jpg") no-repeat center center/cover;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 2rem;
}
.hero-content {
  background: rgba(0, 51, 102, 0.7);
  padding: 2rem;
  border-radius: 8px;
}
#hero h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #ffcc00;
}
#hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}
#hero button {
  background: #ffcc00;
  color: #003366;
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
}
#hero button:hover {
  background: #e6b800;
}

/* Services */
#services {
  padding: 3rem 2rem;
  background: #fff;
}
#services h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #003366;
  font-family: "Montserrat", sans-serif;
}
#services article {
  margin-bottom: 1.5rem;
}
#services h3 {
  color: #006699;
}

/* About */
#about {
  padding: 3rem 2rem;
  background: #f0f4f8;
  text-align: center;
}
#about img {
  max-width: 300px;
  border-radius: 8px;
  margin-bottom: 1rem;
}

/* Contact */
#contact {
  padding: 3rem 2rem;
  background: #fff;
}
#contact h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #003366;
  font-family: "Montserrat", sans-serif;
}
form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
form label {
  margin: 0.5rem 0 0.25rem;
}
form input,
form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}
form button {
  margin-top: 1rem;
  background: #003366;
  color: #fff;
  border: none;
  padding: 0.75rem;
  cursor: pointer;
  border-radius: 4px;
}
form button:hover {
  background: #0055a5;
}

/* Footer */
footer {
  background: #003366;
  color: #fff;
  text-align: center;
  padding: 1rem;
}
footer a {
  color: #ffcc00;
  margin: 0 0.5rem;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (min-width: 768px) {
  #services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
