/* General Styles */
body {
  font-family: 'Georgia', serif;
  line-height: 1.6;
  color: #3E3E3E; /* Dark gray for text */
  background-color: #F5F5F5; /* Light gray background */
  margin: 0;
  padding: 0;
    overflow-x: hidden; /* Prevent horizontal scrolling */

}

h1, h2 {
  font-family: 'Helvetica Neue', sans-serif;
  color: #FFFFFF; /* Warm brown for headings */
}


h3, h4, h5, h6 {
  font-family: 'Helvetica Neue', sans-serif;
  color: #5C4033; /* Warm brown for headings */
}

a {
  color: #8B0000; /* Deep red for links */
  text-decoration: none;
}

a:hover {
  color: #A0522D; /* Sienna brown for hover effect */
}

/* Hero Section */
.hero {
  position: relative;
  text-align: center;
  color: white;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
  overflow: hidden; /* Crop the image */
  height: 60vh; /* Responsive height based on viewport */
  margin: 0;
  padding: 0;
  
}

.hero-text {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  width: 180px; /* Adjust size as needed */
  height: auto; /* Keeps aspect ratio */
  margin: 0 auto 0; /* Center horizontally & add space below */
}

.hero h1 {
  font-size: 3rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  margin: 0;
}

.hero h2 {
  font-size: 1.5rem;
  margin: 0.5rem 0 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

h3 a {
    text-decoration: underline; /* Add underline */
    text-decoration-color: white; /* Make the underline white */
}

#adbis {
  text-align: center;
}




@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.2rem; /* Reduce size */
  }
  
  .hero h2 {
    font-size: 0.7rem;
  }
}



/* Navigation */
nav {
  background-color: #8B0000; /* Deep red for navigation */
  padding: 1rem;
  text-align: center;
  margin-top: -4px; /* Adjust as needed */  
}

nav a {
  color: white;
  margin: 0 1rem;
  font-weight: bold;
}

nav a:hover {
  color: #FFD700; /* Gold for hover effect */
}

/* Main Content */
main {
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

section {
  margin-bottom: 2rem;
  background-color: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

section h2 {
  color: #A0522D; /* Sienna brown for section headings */
  border-bottom: 2px solid #8B0000; /* Deep red underline */
  padding-bottom: 0.5rem;
}

/* Footer */
footer {
  background-color: #5C4033; /* Warm brown for footer */
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

footer a {
  color: #FFD
  }
