/* Global styles */
* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

h1 {
    font-size: 6rem;
}


h2 {
  font-size: 4rem;
}


h1, h2, h3, h4 {
  font-family: "Libre Baskerville", serif;
}

a {
  text-decoration: none;
  color: #1A92E6;
}

a:hover {
  color: #B237E6;
}

/* Section Spacing */
.section-spacing {
  margin: 0 0 3rem 0;
}

.mid-spacing {
  margin: 1rem 0;
}


/* Buttons */
.btn {
  background-color: #1A92E6;
  color: white;
  text-transform: uppercase;
  font-weight: bold;
}

.btn:hover {
  background-color: #B237E6;
  color: white;
}

/* Accessibility: visually-hidden-focusable */
.visually-hidden-focusable {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px solid #1A92E6;;
  height: 1px solid #1A92E6;;
  overflow: hidden;
}
.visually-hidden-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 1rem 0;
  padding: 0.5rem;
  background-color: #f8f9fa;
  color: #000;
  z-index: 9999;
}

/* Navbar Enhancements */
header div {
  border-bottom: 1px solid #1A92E6;
}



.nav-link {
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.navbar-brand img {
  height: 50px !important;
}

.form-control {
  height: 50px;
  border: 1px solid #1A92E6;
}

.nav-item a {
  color: #1A92E6;
  text-decoration: none;
}

.nav-item a:hover,
.nav-item a:focus {
  color: #B237E6;
}

/* Active link style */
.nav-link.active {
  font-weight: bold;
  border-bottom: 2px solid #1A92E6;
}

/* Smooth dropdown animation */
.dropdown-menu.fade {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.dropdown-menu.fade.show {
  opacity: 1;
}

.navbar-toggler-icon {
  background-image: url("./assets/img/menu.webp");
}

.dropdown-menu {
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  background-color: white;
}


/* Footer */
footer ul {
  border-bottom: 1px solid #1A92E6;
}


@media (max-width: 1500px) {
    
   h1 {
    font-size: 3rem;
   }

   h2 {
    font-size: 2rem;
   }

}             