/* (C) 2024 Asher Bond Ventures. All Rights Reserved. */

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

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background-color: #2e0066; /* Deep Indigo Background */
  color: #fff;
  line-height: 1.6;
}

/* Sticky Header Styling */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #2e0066;
  padding: 1rem 1.5rem;
  position: sticky; /* Make header sticky */
  top: 0; /* Stick to the top */
  width: 100%;
  z-index: 100;
  box-sizing: border-box;
}

header img {
  max-width: 180px;
  height: auto;
  vertical-align: middle;
}

/* Navigation Styling */
nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

nav ul li a {
  color: #D8DBFF; /* Updated link color for navigation */
  text-decoration: underline; /* Underline to indicate clickable */
  font-size: 1rem;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #9d00ff; /* Hover color for navigation links */
}

/* Dynamic Section Offset */
section {
  margin-top: 4rem; /* Offset to ensure content doesn't hide behind the sticky header */
  padding: 2rem 1rem;
  min-height: 100vh;
  text-align: center;
}

/* General Link Styling in Sections */
section a {
  color: #D8DBFF; /* Apply link color to all links within sections */
  text-decoration: underline; /* Underline to indicate clickable */
  transition: color 0.3s ease;
}

section a:hover {
  color: #9d00ff; /* Hover color for section links */
}

/* Info Section Styling */
.info-section {
  background-color: rgba(20, 0, 50, 0.9);
  padding: 1.5rem;
  margin: 0 auto;
  border-radius: 0.5rem;
  max-width: 700px;
  color: #dcdcdc;
  text-align: left;
}

/* Responsive h2 Styling */
.info-section h2 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-top: 0; /* Avoid additional margin */
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.3;
}

.info-section p {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

/* Ordered List within Info Section */
.info-section ol {
  background-color: rgba(20, 0, 50, 0.8);
  padding: 1.5rem;
  border-radius: 0.5rem;
  list-style: none;
  counter-reset: list-counter;
}

.info-section ol li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1.6;
  color: #dcdcdc;
}

.info-section ol li::before {
  content: counter(list-counter) ".";
  counter-increment: list-counter;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  color: #9d00ff;
  font-size: 1.2rem;
}

/* Contact Section */
.contact-section {
  background-color: #240054;
  padding: 1.5rem;
  margin: 0 auto;
  border-radius: 0.5rem;
  max-width: 600px;
}

.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #9d00ff;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  background-color: #2e0066;
  color: #fff;
  border: 1px solid #9d00ff;
  border-radius: 0.3rem;
}

.contact-form input[type="submit"] {
  background-color: #9d00ff;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form input[type="submit"]:hover {
  background-color: #fff;
  color: #9d00ff;
}

/* Call-to-action buttons */
.cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #9d00ff;
  color: #fff;
  font-size: 1rem;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s ease;
  margin: 0.5rem;
}

.cta-button:hover {
  background-color: #fff;
  color: #9d00ff;
}

/* Responsive Adjustments for Small Devices */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .info-section h2,
  .contact-section h2 {
    font-size: 1.75rem;
  }

  .info-section p {
    font-size: 1rem;
  }

  .cta-button {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

/* Footer */
footer {
  background-color: #2e0066;
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
}

footer p {
  color: #666;
}

