  /* Global Styles */
 

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


/* Full-Width Hero Section with Overlay */
#home {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 100vh;
  background-image: url('dolphins.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  color: #fff;
  position: relative;
  width: 100%;
}

#home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay */
  z-index: 1;
}

  /* Content within Hero Section */
  #home h3, #home h1, #home h2, .btn-primary, .scroll-indicator {
    position: relative;
    z-index: 2; /* Ensures content sits above the overlay */
  }

/* Scroll Indicator Styling */
.scroll-indicator {
  margin-top: 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-indicator svg {
  width: 24px;
  height: 24px;
  fill: #fff;
  margin-top: 5px;
}

/* Button Styling */
.btn-primary {
  padding: 12px 24px;
  color: #333;
  background-color: #fff;
  border-radius: 3px;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
  text-decoration:none;
}

.btn-primary:hover {
  background-color: #ddd;
}

/* Fixed Top Navigation with White Background */
.top-nav {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #ffffff;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  z-index: 1000;
}

.top-nav .logo img {
  height: 70px;
}

.top-nav nav {
  display: flex;
  gap: 15px;
}


.top-nav .contact-info {
  display: flex;
  gap: 15px;
}


nav a {
    color: black;           /* Sets the text color to black */
    text-decoration: none;  /* Removes the underline */
}


/* Main Content Adjustment for Fixed Navigation */
main {
  padding-top: 80px;
  max-width: 1000px;
  margin: 0 auto;
}

section {
  padding: 20px;
  text-align: center;
}

section h2 {
  margin-bottom: 10px;
}

.btn-primary, .btn-secondary {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  color: white;
  background-color: #333;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn-primary:hover, .btn-secondary:hover {
  background-color: #555;
}

/* Main Content Area */
  main {
    max-width: 100%;
    padding-top: 80px;
  }

  section {
    padding: 20px;
  }

  section h2 {
    margin-bottom: 10px;

  }

/* Footer Styling */
footer {
  background-color: #000;
  color: white;
  padding: 20px 0;
}

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

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

/* Responsive Text Sizing */
@media (max-width: 768px) {

  .top-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .top-nav nav {
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    margin-top: 10px;
  }


  .top-nav .contact-info {
    flex-direction: column;
    align-items: flex-start;
  }

}

@media (max-width: 480px) {
  .top-nav nav {
    gap: 10px;
  }

  .top-nav .logo img {
    height: 30px;
  }

  .btn-primary, .btn-secondary {
    padding: 8px 16px;
    font-size: 14px;
  }
  
  
}
