/* Reset and base styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #ffffff;
    }

    /* Top Social Bar */
    .top-social-bar {
      background-color: #ffffff; /* Burgundy */
      padding: 12px 20px;
      display: flex;
      justify-content: flex-end;
      align-items: center;
    }

    .social-icons a {
      color: #970303; /* Light cream */
      margin-left: 16px;
      font-size: 20px;
      text-decoration: none;
      transition: transform 0.3s ease, color 0.3s ease;
    }

    .social-icons a:hover {
      color: #ffd700; /* Gold */
      transform: scale(1.2);
    }

    /* Responsive */
    @media (max-width: 600px) {
      .top-social-bar {
        justify-content: center;
      }

      .social-icons a {
        margin-left: 12px;
        font-size: 18px;
      }
    }

    
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
}

.main-header {
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 15px 5%;
  position: sticky;
  top: 0;
  z-index: 999;
}

.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 40px;
}

.logo span {
  color: #800020;
  font-weight: 600;
  font-size: 1.4rem;
}

/* Nav */
.nav {
  display: flex;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #800020;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  display: none;
  flex-direction: column;
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  z-index: 999;
}

.dropdown:hover .dropdown-menu {
  display: flex;
}

.dropdown-menu li {
  padding: 10px 20px;
}

.dropdown-menu a {
  color: #333;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background-color: #f8f8f8;
  color: #800020;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 1.8rem;
  color: #800020;
  cursor: pointer;
}

/* Mobile */
@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 70px;
    left: 0;
    background: #fff;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
  }

  .nav.show {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    gap: 20px;
  }

  .dropdown:hover .dropdown-menu {
    position: static;
    box-shadow: none;
    background: #f9f9f9;
  }

  .dropdown-menu {
    position: static;
    display: none;
    width: 100%;
  }

  .dropdown:hover .dropdown-menu {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}




/* policies.css */

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  background-color: #fdfdfd;
  color: #333;
}
/* HERO SECTION FOR POLICIES */
.policies-hero {
  position: relative;
  height: 70vh;
  background: linear-gradient(
      rgba(128, 0, 32, 0.7), 
      rgba(0, 0, 0, 0.7)
    ),
    url('images/Clarus\ Academy\ School\ -NJS-69.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  animation: zoomFade 10s infinite ease-in-out;
  color: #f8f8f8;
}

@keyframes zoomFade {
  0% {
    background-size: 100%;
    opacity: 1;
  }
  50% {
    background-size: 105%;
    opacity: 0.95;
  }
  100% {
    background-size: 100%;
    opacity: 1;
  }
}

.hero-section {
  color: #fff;
}
.hero-overlay {
  color: white;
  padding: 0 2rem;
  max-width: 800px;
  animation: fadeUp 1.2s ease forwards;
  opacity: 0;
}

@keyframes fadeUp {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}


.policies-hero .hero-overlay {
  
  padding: 2rem;
  width: 100%;
}

.policies-hero .hero-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #fff; /* Ensures title is white */
}

.policies-hero .hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #fff; /* Ensures subtitle is white */
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.hero-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 5px;
  background-color: #d4af37;
  margin: 0.5rem auto 0;
  border-radius: 3px;
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  color: #f0f0f0;
}

/* Responsive */
@media (max-width: 768px) {
  .policies-hero {
    height: 60vh;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }
}



/* Page Title */
.policies-hero {
  text-align: center;
  background-color: #fff8f0;
  padding: 4rem 2rem 2rem;
  border-bottom: 5px solid #d4af37;
}

.policies-hero h1 {
  font-size: 2.8rem;
  color: #800020;
  margin-bottom: 0.5rem;
}

.policies-hero p {
  font-size: 1.2rem;
  color: #444;
}

/* Section Styles */
.policy-section {
  padding: 3rem 2rem;
  max-width: 1000px;
  margin: auto;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.policy-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #800020;
  position: relative;
}

.policy-section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #d4af37;
  border-radius: 10px;
  margin-top: 0.5rem;
}

.policy-section p,
.policy-section ul,
.policy-section li {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1rem;
}

.policy-section ul {
  padding-left: 1.2rem;
  list-style: disc;
}

/* Animated fade-in effect */
@keyframes fadeInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.policy-section {
  animation: fadeInUp 0.6s ease-in-out;
}



/* Responsive Design */
@media (max-width: 768px) {
  .policies-hero h1 {
    font-size: 2rem;
  }

  .policy-section {
    padding: 2rem 1rem;
  }

  header {
    flex-direction: column;
    align-items: flex-start;
  }

  header nav {
    margin-top: 1rem;
  }
}



.download-section {
  background-color: #f9f7f1;
  padding: 60px 20px;
  text-align: center;
}

.download-container {
  max-width: 1100px;
  margin: auto;
}

.download-heading {
  font-size: 2.5rem;
  color: #800020; /* Burgundy */
  margin-bottom: 10px;
  position: relative;
}

.download-heading::after {
  content: "";
  width: 70px;
  height: 4px;
  background-color: #d4af37; /* Gold */
  display: block;
  margin: 10px auto;
  border-radius: 5px;
}

.download-description {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #333;
}

.download-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.download-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.download-card i {
  font-size: 2.2rem;
  color: #d4af37;
  margin-bottom: 15px;
}

.download-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #800020;
}

.download-card a {
  display: inline-block;
  padding: 8px 15px;
  background-color: #800020;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-size: 0.95rem;
  transition: background-color 0.3s ease;
}

.download-card a:hover {
  background-color: #a02c3c;
}

/* Responsive */
@media (max-width: 768px) {
  .download-heading {
    font-size: 2rem;
  }

  .download-card h3 {
    font-size: 1rem;
  }

  .download-card i {
    font-size: 1.8rem;
  }
}

.clarus-footer {
  background-color: #800020; /* Burgundy */
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 60px 20px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-section {
  flex: 1 1 300px;
  min-width: 280px;
}

/* Map */
.footer-section.map {
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
}

/* Center */
.footer-section.center h2 {
  font-size: 1.8rem;
  color: #ffd700;
  margin-bottom: 5px;
}

.footer-section.center .motto {
  font-style: italic;
  font-size: 1rem;
  margin-bottom: 15px;
  color: #fdf6e3;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  color: #f0f0f0;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #ffd700;
}

.footer-socials a {
  color: #fff;
  font-size: 1.2rem;
  margin-right: 12px;
  transition: 0.3s ease;
}

.footer-socials a:hover {
  color: #ffd700;
  transform: scale(1.2);
}

/* Newsletter */
.footer-section.newsletter h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: #ffd700;
}

.footer-section.newsletter p {
  font-size: 0.9rem;
  margin-bottom: 12px;
  color: #eee;
}

.footer-section.newsletter form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-section.newsletter input {
  padding: 10px;
  border: none;
  border-radius: 6px;
  flex: 1;
  min-width: 180px;
}

.footer-section.newsletter button {
  padding: 10px 18px;
  background-color: #ffd700;
  border: none;
  border-radius: 6px;
  color: #800020;
  cursor: pointer;
  transition: 0.3s ease;
}

.footer-section.newsletter button:hover {
  background-color: #ffdb4d;
}

/* Bottom */
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 0.85rem;
  color: #ccc;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-section.map {
    width: 100%;
    height: 250px;
  }

  .footer-section.newsletter form {
    flex-direction: column;
  }

  .footer-section.newsletter input,
  .footer-section.newsletter button {
    width: 100%;
  }

  .footer-socials {
    justify-content: center;
  }
}
