@charset "utf-8";
/* CSS Document */

/* style.css */

/*–– Variables ––*/
:root {
  --navy: #002855;
  --blue-contrast: #005f99;
  --white: #ffffff;
  --font-sans: 'Arial', sans-serif;
}

/*–– Reset & Base ––*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: var(--font-sans);
  line-height: 1.6;
  color: var(--navy);
  background: var(--white);
}

/*–– Top Bar ––*/
.top-bar {
  background: var(--navy);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}
.top-bar a {
  color: var(--white);
  text-decoration: none;
}
.top-bar a:hover {
  text-decoration: underline;
}

/*–– Main Header & Nav ––*/
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: var(--white);
  border-bottom: 2px solid var(--blue-contrast);
}
.main-header .logo img {
  max-height: 60px;
}
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.main-nav a {
  color: var(--navy);
  text-decoration: none;
  font-weight: bold;
}
.main-nav a:hover {
  color: var(--blue-contrast);
}

/*–– Modal ––*/
.modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: none;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
  z-index: 999;
}
.modal-content {
  background: var(--white);
  padding: 2rem;
  max-width: 400px;
  width: 90%;
  position: relative;
  border-radius: 4px;
}
.modal-content h2 {
  margin-bottom: 1rem;
}
.modal-content label {
  display: block;
  margin: 0.5rem 0 0.25rem;
}
.modal-content input,
.modal-content textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 2px;
}
.modal-content button {
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background: var(--navy);
  color: var(--white);
  border: none;
  cursor: pointer;
}
.close-btn {
  position: absolute;
  top: 0.5rem; right: 0.75rem;
  font-size: 1.5rem;
  cursor: pointer;
}

/*–– Footer ––*/
.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 2rem 1rem;
}
.footer-widgets {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}
.footer-widgets .widget {
  flex: 1 1 200px;
}
.footer-widgets h3 {
  margin-bottom: 0.75rem;
}
.footer-widgets a {
  color: var(--white);
  text-decoration: none;
}
.footer-widgets a:hover {
  text-decoration: underline;
}
.copyright-bar {
  text-align: center;
  padding: 1rem;
  background: var(--blue-contrast);
  margin-top: 1rem;
}
.social-icons a {
  margin-left: 0.5rem;
  color: var(--white);
}

/*–– Chat Floater ––*/
#chat-floater {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  animation: float 3s ease-in-out infinite;
}
#chat-btn {
  background: var(--blue-contrast);
  color: var(--white);
  border: none;
  padding: 0.75rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/*–– Responsive ––*/
@media (max-width: 768px) {
  .main-nav ul { flex-direction: column; gap: 1rem; }
  .footer-widgets { flex-direction: column; }
}
/* in style.css */
.page-header {
  background: url('/assets/images/about-banner.jpg') center/cover no-repeat;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-header h1 {
  color: #fff;
  background: rgba(0,0,0,0.5);
  padding: 1rem 2rem;
  border-radius: 4px;
}
