/* 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;
  }
}


.hero-student-life {
  position: relative;
  background: radial-gradient(circle at center, #8a0303, #4a0000);
  color: white;
  padding: 7rem 2rem;
  text-align: center;
  overflow: hidden;
  z-index: 1;
}

.hero-student-life::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('/images/Clarus\ Academy\ School\ -NJS-67.jpg') center/cover no-repeat;
  opacity: 0.15;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: auto;
  animation: fadeInDrop 1.2s ease-in-out both;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.hero-content p {
  font-size: 1.25rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
  color: #fff9f2;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  z-index: 1;
}

.floating-shape.one {
  width: 200px;
  height: 200px;
  background: #f4d03f;
  top: 10%;
  left: -5%;
  animation: floatBlob 8s ease-in-out infinite;
}

.floating-shape.two {
  width: 150px;
  height: 150px;
  background: #ffffff;
  bottom: 15%;
  right: -5%;
  animation: floatBlob 10s ease-in-out infinite;
}

@keyframes fadeInDrop {
  0% {
    transform: translateY(-30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes floatBlob {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .floating-shape.one,
  .floating-shape.two {
    display: none;
  }
}






/* Student Experience Overview */
.student-experience-section {
  background: linear-gradient(to bottom right, #fff9f2, #fdf6e3);
  padding: 4rem 2rem;
  animation: fadeInUp 1s ease-in-out;
}

.experience-wrapper {
  max-width: 900px;
  margin: auto;
  background: white;
  padding: 3rem 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform 0.3s ease-in-out;
}

.experience-wrapper:hover {
  transform: scale(1.01);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #b30000;
  margin-bottom: 1.5rem;
  text-align: center;
}

.lead-text {
  font-size: 1.15rem;
  color: #333;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.student-experience-section p {
  font-size: 1rem;
  line-height: 1.75;
  color: #444;
  margin-bottom: 1.2rem;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile responsiveness */
@media (max-width: 600px) {
  .experience-wrapper {
    padding: 2rem 1.5rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .lead-text,
  .student-experience-section p {
    font-size: 0.95rem;
  }
}





/* Extracurricular Activities Section */
.extracurricular-section {
  background-color: #fff9f2;
  padding: 5rem 1.5rem;
}

.activities-wrapper {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #b30000;
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #f4d03f;
  margin: 0.5rem auto 2rem;
  border-radius: 5px;
  animation: slideIn 1s ease-in-out;
}

.section-intro {
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: #333;
  line-height: 1.8;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.activity-item {
  background-color: #fff;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.activity-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.activity-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.activity-item:hover .activity-icon {
  transform: scale(1.2) rotate(5deg);
}

.activity-item h3 {
  color: #b30000;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.activity-item p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

/* Animations */
@keyframes slideIn {
  0% {
    width: 0;
    opacity: 0;
  }
  100% {
    width: 80px;
    opacity: 1;
  }
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .section-title {
    font-size: 1.8rem;
  }

  .section-intro {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .activity-item {
    padding: 1.5rem;
  }

  .activity-item h3 {
    font-size: 1.1rem;
  }

  .activity-item p {
    font-size: 0.95rem;
  }
}




/* Student Clubs & Leadership Section */
.leadership-section {
  background-color: #fff9f5;
  padding: 4rem 1rem;
  color: #222;
  font-family: 'Poppins', sans-serif;
}

.leadership-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  color: #b30000;
  margin-bottom: 1rem;
  animation: fadeInDown 1s ease;
}

.section-intro {
  text-align: center;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: #444;
  animation: fadeInUp 1s ease;
}

.leadership-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.leadership-column {
  flex: 1 1 45%;
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  animation: fadeInUp 1.2s ease;
}

.leadership-column:hover {
  transform: translateY(-6px);
}

.leadership-column h3 {
  color: #b30000;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.club-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1rem;
}

.club-list li {
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 1.05rem;
  position: relative;
  padding-left: 1.2rem;
}

.club-list li::before {
  content: '•';
  color: #f4d03f;
  position: absolute;
  left: 0;
  font-size: 1.3rem;
  top: 0.05rem;
}

/* Testimonials */
.leadership-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial-item {
  background: #fff0f0;
  padding: 1.5rem;
  border-left: 6px solid #b30000;
  border-radius: 10px;
  font-style: italic;
  transition: background 0.3s;
  animation: fadeIn 1.5s ease;
}

.testimonial-item:hover {
  background: #fdf4f4;
}

.testimonial-name {
  display: block;
  margin-top: 0.75rem;
  font-weight: 600;
  font-style: normal;
  color: #b30000;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  } to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  } to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  } to {
    opacity: 1;
  }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .leadership-content {
    flex-direction: column;
  }

  .leadership-column {
    flex: 1 1 100%;
  }

  .section-title {
    font-size: 2rem;
  }
}







/* School Culture & Support Services */
.culture-support-section {
  background: #fff9f5;
  padding: 5rem 1.5rem;
}

.culture-support-wrapper {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: #b30000;
  margin-bottom: 1.5rem;
  position: relative;
}

.section-title::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #f4d03f;
  display: block;
  margin: 0.5rem auto 2rem;
  border-radius: 3px;
}

.section-intro {
  font-size: 1.125rem;
  max-width: 800px;
  margin: auto;
  color: #333;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.culture-support-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.culture-point {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.culture-point:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.culture-point h3 {
  color: #0a2239;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.culture-point p {
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
}

.culture-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  position: relative;
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s ease-in-out;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item span {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(255, 255, 255, 0.85);
  color: #b30000;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .section-intro {
    font-size: 1rem;
  }

  .gallery-item span {
    font-size: 0.75rem;
    padding: 4px 10px;
  }
}




/* Events & Celebrations Section */
.events-celebrations-section {
  background-color: #fff9f2;
  padding: 4rem 1.5rem;
  text-align: center;
}

.events-wrapper {
  max-width: 1200px;
  margin: auto;
}

.section-title {
  font-size: 2.5rem;
  color: #b30000;
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: #f4d03f;
  margin: 0.5rem auto 2rem auto;
  border-radius: 2px;
}

.section-intro {
  font-size: 1.1rem;
  color: #333;
  max-width: 700px;
  margin: 0 auto 3rem auto;
  line-height: 1.8;
}

.event-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Force 4 columns */
  gap: 2rem;
}

/* Responsive: Stack on small screens */
@media screen and (max-width: 1024px) {
  .event-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .event-cards {
    grid-template-columns: 1fr;
  }
}



.event-card {
  background-color: #ffffff;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.event-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.event-content {
  padding: 1.5rem;
}

.event-content h3 {
  margin: 0 0 0.75rem 0;
  color: #b30000;
  font-size: 1.25rem;
}

.event-content p {
  margin: 0;
  color: #444;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Responsive */
@media screen and (max-width: 600px) {
  .section-title {
    font-size: 2rem;
  }

  .section-intro {
    font-size: 1rem;
  }

  .event-content h3 {
    font-size: 1.1rem;
  }

  .event-content p {
    font-size: 0.9rem;
  }
}





/* Testimonials Section */
.student-testimonials {
  background: #fff9f2;
  padding: 4rem 1rem;
  text-align: center;
}

.student-testimonials h2 {
  font-size: 2.5rem;
  color: #b30000;
  margin-bottom: 0.5rem;
}

.student-testimonials .intro {
  font-size: 1rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.testimonial-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid #b30000;
}

blockquote {
  font-style: italic;
  color: #333;
  margin: 0 0 1rem;
  line-height: 1.6;
  position: relative;
  padding-left: 1.2rem;
}

blockquote::before {
  content: "“";
  font-size: 2rem;
  position: absolute;
  left: 0;
  top: -10px;
  color: #b30000;
}

.name {
  font-weight: 600;
  color: #444;
  font-size: 0.95rem;
}

@media screen and (max-width: 600px) {
  .student-testimonials h2 {
    font-size: 1.75rem;
  }

  .testimonial-img {
    width: 60px;
    height: 60px;
  }

  blockquote {
    font-size: 0.95rem;
  }
}




.cta-student-life {
  background: linear-gradient(135deg, #b30000 0%, #6e0000 100%);
  color: #fff;
  text-align: center;
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

.cta-content {
  max-width: 800px;
  margin: auto;
  animation: fadeSlideUp 1.2s ease-in-out both;
}

.cta-student-life h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.cta-student-life p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.cta-btn {
  background-color: #fff;
  color: #b30000;
  padding: 0.9rem 2rem;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.cta-btn:hover {
  background-color: #f4d03f;
  color: #000;
}

.cta-btn.highlight {
  background-color: #f4d03f;
  color: #000;
}

.cta-btn.highlight:hover {
  background-color: #fff;
  color: #b30000;
}

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width: 600px) {
  .cta-student-life {
    padding: 3rem 1rem;
  }

  .cta-student-life h2 {
    font-size: 1.75rem;
  }

  .cta-student-life p {
    font-size: 1rem;
  }

  .cta-btn {
    width: 100%;
    padding: 0.9rem;
    text-align: center;
  }
}



.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;
  }
}
