/* Reset & Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, html {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f5f5f5;
  color: #222;
  line-height: 1.6;
  font-size: 16px;
  height: 100%;
}

/* Headings: Dancing Script + increased sizes */
h1 {
  font-family: 'Dancing Script', cursive;
  font-weight: 700;
  font-size: 2.5rem;
}

h2 {
  font-family: 'Dancing Script', cursive;
  font-weight: 700;
  font-size: 4rem;
}

h3 {
  font-family: 'Dancing Script', cursive;
  font-weight: 700;
  font-size: 1.75rem;
}

h4, h5, h6 {
  font-family: 'Dancing Script', cursive;
  font-weight: 700;
  font-size: 1.5rem;
}



/* About Section */
.about {
  max-width: 800px;
  margin: 60px auto;
  padding: 30px 20px;
  text-align: center;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.06);
}


/* Sections */
section h2 {
  text-align: center;
  margin: 1px 0 15px;
  font-size: 2.2rem;
  color: #333;AC
}

.section {
  padding: 50px 20px;
  background-color: #fefefe;
}

section h2 {
  text-align: center;
  margin: 60px 0 30px;
  font-size: 2rem;
  color: #333;
}

.section:nth-child(even) {
  background-color: #f3f3f3;
}

.section-content {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

/* Footer */
footer {
  background-color: #222;
  color: #ccc;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  margin-top: 40px;
}

.footer-social a {
  font-size: 1.5rem;
  color: #ccc;
  margin: 0 10px;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.footer-contact-info a {
  color: #ccc;
  text-decoration: none;
  margin: 0 6px;
  transition: color 0.3s ease;
}

.footer-contact-info a:hover {
  color: #0077cc;
}

.footer-contact-info span {
  color: #ccc;
}

/* Accessibility Menu */`
.accessibility-menu {
  position: relative;
}

#accessibilityToggle {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #333;
  padding: 6px;
  cursor: pointer;
  transition: color 0.3s ease;
}

#accessibilityToggle:hover {
  color: #0077cc;
}


.accessibility-options {
  position: absolute;
  top: 120%;
  right: 0;
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 8px 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  z-index: 999;
  width: max-content;
}

.accessibility-options button {
  display: block;
  width: 100%;
  padding: 5px;
  font-size: 0.9em;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
}

.hidden {
  display: none;
}

body.high-contrast {
  background-color: #000 !important;
  color: #fff !important;
}

body.high-contrast a {
  color: #00ffff !important;
}


.accessibility-menu {
  position: relative;
}

/* Mobile styles */
@media (max-width: 768px) {
  .nav-right {
    display: none; /* hide nav links & accessibility by default */
    flex-direction: column;
    width: 100%;
    background-color: #fff;
    position: absolute;
    top: 60px; /* height of nav */
    right: 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 10px 20px;
  }

  .nav-right.active {
    display: flex;
  }

  /* Show hamburger button */
  #navToggle {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    gap: 12px;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  /* Accessibility menu spacing on mobile */
  .accessibility-menu {
    margin-top: 12px;
  }
}
