@import url('https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap');

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

body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

header {
  background: #08a4a7;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.nav-links li {
  display: inline-block;
  margin-left: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
}

.hero {
  position: relative;
  text-align: center;
  background-image: url('images/charleston-tides.jpg');
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  color: #fff;
  text-shadow: #850101 1px 0 10px;;
}

.hero-content {
  max-width: 600px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero h2 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: #08a4a7;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #555;
}

.hero-video {
  margin-top: 40px;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 100px 0;
  text-align: center;
}

section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
}

section p {
  font-size: 18px;
  margin-bottom: 30px;
}

.feature-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.feature {
  flex-basis: 30%;
  margin-bottom: 30px;
}

.feature img {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: block;
}

footer {
  background: #08a4a7;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

footer p {
  font-size: 14px;
}

/* Responsive CSS */
@media (max-width: 768px) {
  .nav-links li {
    display: block;
    margin: 10px 0;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero h2 {
    font-size: 24px;
  }

  .feature {
    flex-basis: 100%;
    margin-bottom: 60px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }

  .hero h2 {
    font-size: 20px;
  }
}