/* main.css */

:root {
  --primary-blue: #4DA9FF;    /* Bright, clean blue */
  --secondary-blue: #0078E7;  /* Slightly darker blue for contrast */
  --accent-blue: #E1F2FF;     /* Very light blue for backgrounds */
  --nav-hover: #83C0FF;       /* Lighter blue for hover states */
  --text-dark: #333333;
  --text-light: #ffffff;
  --section-alt: #F8FCFF;     /* Very subtle blue tint */
  --footer-bg: #F0F8FF;       /* Alice blue for footer */
  --btn-primary: #4DA9FF;
  --btn-hover: #3E97EA;
}

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: var(--text-dark);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header styling */
header {
  background-color: var(--primary-blue);
  color: var(--text-light);
  padding: 1.25rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}

header h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1.5rem;
}

nav a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s;
}

nav a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--text-light);
  transition: width 0.3s;
}

nav a:hover {
  color: var(--text-light);
}

nav a:hover:after {
  width: 100%;
}

/* Modern Hero Section that doesn't require a background image */
.hero-banner {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  color: var(--text-light);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.hero-banner:before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.hero-banner:after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

/* Optional decorative element */
.window-icon {
  margin-bottom: 1.5rem;
  font-size: 3rem;
}

/* Alternative split hero layout */
.split-hero {
  display: flex;
  align-items: center;
  padding: 0;
}

.hero-text-container {
  flex: 1;
  padding: 4rem 2rem 4rem 0;
}

.hero-image-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-container img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Sections styling */
.section {
  padding: 4rem 0;
}

.section.alt {
  background-color: var(--section-alt);
}

.section h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--secondary-blue);
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--secondary-blue);
}

.section h3 {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  color: var(--secondary-blue);
  position: relative;
  padding-bottom: 0.75rem;
}

.section h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary-blue);
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  margin-bottom: 1.25rem;
  line-height: 1.6;
  position: relative;
  padding-left: 1.5rem; /* creates space for checkmark */
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-blue);
  font-weight: bold;
}

.feature-list li strong {
  display: inline;
  font-weight: 600;
  color: var(--secondary-blue);
}

/* Regular lists */
ul:not(.feature-list):not(nav ul) {
  list-style: disc outside;
  padding-left: 1.5rem;
}

ul:not(.feature-list):not(nav ul) li {
  margin-bottom: 0.75rem;
}

/* Call to action button */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--btn-primary);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  transition: background-color 0.3s, transform 0.2s;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.btn:hover {
  background-color: var(--btn-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* FAQ section */
.faq-item {
  margin-bottom: 1.5rem;
}

.faq-question {
  font-weight: 600;
  color: var(--secondary-blue);
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: var(--text-dark);
}

/* Card layout for features */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.card-content {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--secondary-blue);
}

/* Footer styling */
footer {
  background-color: var(--footer-bg);
  padding: 2rem 0;
  color: var(--text-dark);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-links {
  margin-top: 1rem;
  font-size: 0.9rem;
}

.footer-links a {
  color: var(--secondary-blue);
  text-decoration: none;
  margin: 0 0.75rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary-blue);
  text-decoration: underline;
}

/* Social media links in footer */
.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-blue);
  color: var(--text-light);
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--secondary-blue);
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Hamburger Menu Styles */
.hamburger-menu {
  display: none;
  width: 40px;
  height: 30px;
  cursor: pointer;
  justify-content: center;
  align-items: center;
}

.hamburger-icon {
  width: 30px;
  height: 22px;
  position: relative;
}

.hamburger-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--text-light);
  border-radius: 3px;
  margin: 5px 0;
  transition: 0.4s;
}

.hamburger-icon span:nth-child(1) {
  top: 0px;
}

.hamburger-icon span:nth-child(2) {
  top: 8px;
}

.hamburger-icon span:nth-child(3) {
  top: 16px;
}

.hamburger-menu.active .hamburger-icon span:nth-child(1) {
  top: 8px;
  transform: rotate(135deg);
}

.hamburger-menu.active .hamburger-icon span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.hamburger-menu.active .hamburger-icon span:nth-child(3) {
  top: 8px;
  transform: rotate(-135deg);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hamburger-menu {
    display: flex; 
    z-index: 100;
  }
  
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--primary-blue);
    padding: 80px 20px 20px;
    transition: right 0.3s ease;
    z-index: 90;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
  }
  
  nav.active {
    right: 0;
  }
  
  nav ul {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  nav li {
    margin-bottom: 15px;
  }
  
  /* Add this to create an overlay when menu is open */
  .menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 80;
  }
  
  .menu-overlay.active {
    display: block;
  }

  .split-hero {
    flex-direction: column;
  }
  
  .hero-text-container {
    padding: 3rem 0 1.5rem 0;
  }
  
  .hero-content h2 {
    font-size: 2rem;
  }
  
  .card-grid {
    grid-template-columns: 1fr;
  }

  .bio-container {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center; /* Centers the image on mobile */
  }
    
}

/* Page-specific styles */
.hero {
  background-color: var(--primary-blue);
  color: var(--text-light);
  padding: 3rem 0;
  text-align: center;
}

.hero h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

/* About page */
.bio-container {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}

.bio-image {
  flex: 0 0 auto;
  width: 280px; /* Fixed width of 280px on all screen sizes */
  height: 280px; /* Maintaining the aspect ratio */
}

.bio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.bio-content {
  flex: 1;
}

/* 404 not found page */
.not-found {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-color: var(--section-alt);
  text-align: center;
  flex-direction: column;
}

.not-found h1 {
  font-size: 5rem;
  color: var(--secondary-blue);
  margin-bottom: 0.5rem;
}

.not-found p {
  font-size: 1.25rem;
  margin: 1rem 0 2rem;
}

/* Contact form styling */
.contact-info {
  margin-bottom: 2rem;
}

.contact-method {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.contact-icon {
  color: var(--primary-blue);
  font-size: 1.25rem;
  margin-right: 1rem;
}

/* Additional styles specific to policy pages */
.policy-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.policy-content h2 {
  color: var(--secondary-blue);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.policy-content h3 {
  color: var(--secondary-blue);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.policy-content p {
  margin-bottom: 1rem;
}

.policy-content ul {
  margin-bottom: 1.5rem;
}

.last-updated {
  margin-top: 3rem;
  font-style: italic;
  color: #666;
  font-size: 0.9rem;
}

.pdf-download {
  display: inline-flex;
  align-items: center;
  margin-top: 1.5rem;
  padding: 0.5rem 1rem;
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: var(--secondary-blue);
  text-decoration: none;
  transition: all 0.2s ease;
}

.pdf-download:hover {
  background-color: #e9e9e9;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.pdf-download i {
  margin-right: 0.5rem;
  color: #e74c3c;
}  