/* --------------------------------------------------
   Global Resets & Basic Styles
-------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  position: relative;
  font-family: "Open Sans", Arial, sans-serif;
  background-color: #FAFAFA;
  color: #333;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* --------------------------------------------------
   Watermark with Blended Edges
-------------------------------------------------- */
body::before {
  content: "";
  position: fixed;
  top: 100px;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle, transparent 60%, #FAFAFA 100%),
    url("../images/henneberg-shield2.jpg") no-repeat center center;
  background-size: 500px auto;
  opacity: 0.1;
  z-index: -1;
}

/* --------------------------------------------------
   Header (Hero) Section
-------------------------------------------------- */
.header-section {
  background: #2C3E50;
  text-align: center;
  padding: 4rem 1rem;
  color: #FFFFFF;
}

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

.main-title {
  font-family: "Georgia", serif;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #FFFFFF;
}

.subtitle {
  font-size: 1.2rem;
  color: #BDC3C7;
}

/* --------------------------------------------------
   Fade-In Animation for Text Boxes
-------------------------------------------------- */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --------------------------------------------------
   About Section
-------------------------------------------------- */
.about-section {
  max-width: 800px;
  margin: 3rem auto;
  padding: 0 1rem;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  opacity: 0;
  animation: fadeIn 2s ease forwards;
  animation-delay: 0.7s;
}

.about-section h2 {
  font-family: "Georgia", serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #2C3E50;
}

.about-section p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #333;
  text-align: justify;
}

/* --------------------------------------------------
   Contact Section
-------------------------------------------------- */
.contact-section {
  max-width: 800px;
  margin: 3rem auto;
  padding: 0 1rem;
  text-align: center;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  opacity: 0;
  animation: fadeIn 2s ease forwards;
  animation-delay: 1.4s;
}

.contact-section h2 {
  font-family: "Georgia", serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #2C3E50;
}

.contact-section p {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.contact-section a {
  color: #2980B9;
  text-decoration: none;
}

/* --------------------------------------------------
   Professional Link Styling
-------------------------------------------------- */
.professional-link {
  color: #2980B9;
  text-decoration: none;
  border-bottom: 1px dashed #2980B9;
  transition: color 0.3s ease, border-bottom 0.3s ease;
}

.professional-link:hover {
  color: #1A5276;
  border-bottom: 1px solid #1A5276;
}

/* --------------------------------------------------
   Footer
-------------------------------------------------- */
.footer-section {
  background-color: #2C3E50;
  text-align: center;
  padding: 1.5rem 0;
  opacity: 0;
  animation: fadeIn 2s ease forwards;
  animation-delay: 1.9s;
}

.footer-section p {
  color: #FFFFFF;
  font-size: 0.9rem;
}

/* --------------------------------------------------
   Responsive Styles
-------------------------------------------------- */
@media (max-width: 600px) {
  .header-section {
    padding: 3rem 1rem;
  }
  
  .main-title {
    font-size: 2rem;
  }
  
  .subtitle {
    font-size: 1rem;
  }
  
  .about-section, .contact-section {
    margin: 2rem auto;
    padding: 1rem;
  }
}
