body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: #f8fafb;
  color: #333;
}

/* Header */
header {
  background: #0074A9;
  color: white;
  padding: 15px;
  text-align: center;
  position: relative;
}

nav {
  margin-top: 10px;
}

nav a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
  font-weight: 500;
}

nav a.active, nav a:hover {
  text-decoration: underline;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 22px;
  color: white;
}

/* Hero Section */
.hero {
  background: url('images/fishfarm.jpg') no-repeat center/cover;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.hero h2 {
    color: blueviolet;
}

.btn {
  display: inline-block;
  background: #006080;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 15px;
}

.btn:hover {
  background: #004d66;
}

/* Content */
.content {
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
}
#more {
  display: none;
}

#myBtn {
  background: #006994;
  color: white;
  border: none;
  padding: 8px 15px;
  margin-top: 10px;
  border-radius: 5px;
  cursor: pointer;
}

#myBtn:hover {
  opacity: 0.8;
}


.blog-post {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 15px;
}

.blog-post img {
  width: 180px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
}

.blog-text {
  flex: 1;
}

/* Gallery Section */
.gallery {
  background: #eaf5fb;
  padding: 40px 20px;
  text-align: center;
}

.gallery h2 {
  margin-bottom: 20px;
  color: #0074A9;
}

.gallery-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.gallery-container img {
  width: 280px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.gallery-container img:hover {
  transform: scale(1.05);
}

/* Form */
form {
  display: flex;
  flex-direction: column;
}

input, textarea {
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  background: #0074A9;
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 5px;
}

button:hover {
  background: #005d84;
}

/* Footer */
footer {
  text-align: center;
  background: #0074A9;
  color: white;
  padding: 20px 10px;
}

footer .social a {
  color: white;
  text-decoration: none;
  margin: 0 5px;
}

footer .social a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    background: #006080;
    padding: 10px;
  }

  nav a {
    display: block;
    margin: 10px 0;
  }

  .menu-toggle {
    display: block;
  }

  .blog-post {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .blog-post img {
    width: 100%;
    height: auto;
  }

  .gallery-container img {
    width: 100%;
    max-width: 320px;
  }
}
