/* Base Styles & Variables */
:root {
  --dark-blue: #101318;
  --light-gray: #F3F5FA;
  --accent-blue: #47B2E4;
  --white: #FFFFFF;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Figtree", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}


body {
  background-color: var(--light-gray);
  color: var(--dark-blue);
  line-height: 1.6;
  overflow-x: hidden;
}



.container, .container1, .container2 {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 20px;
  color: var(--dark-blue);
}

h1 {
  font-size: 3rem;
  font-weight: 700;
}

h2 {
  font-size: 2.2rem;
  font-weight: 600;
}

h3 {
  font-size: 1.8rem;
  font-weight: 600;
}

p {
  margin-bottom: 15px;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background-color: var(--accent-blue);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(71, 178, 228, 0.2);
}

/* Header */
header {
  background-color: var(--dark-blue);
  position: fixed;
  width: 100vw;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}


.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  height: 60px;
  width: auto;
  border-radius: 10%;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

nav ul li a:hover {
  color: var(--accent-blue);
}

.hamburger {
  display: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

/* Hero Section */
#hero {
  background-color: var(--dark-blue);
  color: var(--white);
  padding: 180px 0 100px;
  text-align: center;
  position: relative;
  z-index: 1;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  filter: hue-rotate(200deg) saturate(0.5);
  opacity: 0.3;
  z-index: -1;
}



#hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}

#hero h2 {
  color: var(--accent-blue);
  font-size: 1.5rem;
  margin-bottom: 40px;
  font-weight: 400;
}

#hero .heroContainer {
  max-width: 800px;
}

.cta-button {
  margin-top: 30px;
}



/* About Section */
#about {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  color: var(--dark-blue);
}

.about-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.about-image {
  flex: 1;
  padding: 20px;
  min-width: 300px;
}

.founder-img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.founder-name {
  text-align: center;
  margin-top: 10px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark-blue);
}

.about-text {
  flex: 1;
  padding: 20px;
  min-width: 300px;
}




/* Mission Section */
#mission {
  background-color: var(--white);
  padding: 80px 0;
}

.mission-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.card {
  background-color: var(--light-gray);
  border-radius: 30px;
  padding: 30px;
  width: calc(33.33% - 20px);
  min-width: 300px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card h3 {
  color: var(--accent-blue);
  margin-bottom: 15px;
}

.verse {
  margin-top: 20px;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--dark-blue);
  opacity: 0.8;
}



#mission .container1 {
  display: block;
}
#mission .container2 {
  display: none;
}

@media (min-width: 769px) {
  #mission .container1 {
    display: none;
  }
  #mission .container2 {
    display: block;
  }

.secondcard {
  animation-delay: 200ms;
}
.thirdcard {
  animation-delay: 400ms;
}
}

.flip-left {
  animation: flipLeft 0.8s ease-out;
} 

@keyframes flipLeft {
  from {
      transform: rotateY(-90deg);
      opacity: 0;
  }
  to {
      transform: rotateY(0);
      opacity: 1;
  }
} 
 


/* Anthem Section */
#anthem {
  padding: 80px 0;
  margin-bottom: 100px;
}

.anthem-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-container {
  width: 100%;
  max-width: 800px;
  margin-bottom: 40px;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-container video {
  width: 100%;
  display: block;
}

.audio-player {
  width: 100%;
  max-width: 600px;
  margin-bottom: 40px;
  text-align: center;
}

.audio-player h4 {
  margin-bottom: 15px;
  color: var(--accent-blue);
}

.audio-player audio {
  width: 100%;
  margin-top: 10px;
}

.lyrics {
  width: 100%;
  max-width: 800px;
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.lyrics h4 {
  color: var(--accent-blue);
  text-align: center;
  margin-bottom: 20px;
}

.lyrics-content {
  max-height: 300px;
  overflow-y: auto;
  padding-right: 15px;
}


/* Events Section */
#events {
  background-color: var(--white);
  padding: 80px 0;
}

.event-box {
  background-color: var(--light-gray);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}


#events img {
  display: block;
  border-radius: 8%;
  width: 75%;
  height: auto;
  margin-left: 10%;
  margin-bottom: 20px;
}


.event-box h3 {
  color: var(--accent-blue);
  margin-bottom: 20px;
}

#events p {
  text-align: left;
}



.event-box .btn-primary {
  margin-top: 20px;
}

/* Contact Section */
#contact {
  padding: 80px 0;
}

.social-links {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin: 0 10px;
  color: var(--white);
  background-color: var(--accent-blue);
  border-radius: 50%;
  font-size: 20px;
  transition: all 0.3s ease;
  text-decoration: none; 
}

.social-icon:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(71, 178, 228, 0.3);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
  text-align: center;
  margin-bottom: 30px;
  color: var(--accent-blue);
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(16, 19, 24, 0.1);
  border-radius: 5px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 10px rgba(71, 178, 228, 0.2);
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

.contact-form .btn-primary {
  width: 100%;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

/* Footer */
footer {
  background-color: var(--dark-blue);
  color: var(--white);
  padding: 50px 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.logo-small {
  height: 50px;
  width: auto;
  margin-bottom: 10px;
  border-radius: 10%;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--accent-blue);
}

.footer-contact p {
  margin-bottom: 10px;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  opacity: 0.8;
}


@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInUp {
  from {
      transform: translateY(50px);
      opacity: 0;
  }
  to {
      transform: translateY(0);
      opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
      transform: translateX(-50px);
      opacity: 0;
  }
  to {
      transform: translateX(0);
      opacity: 1;
  }
}

@keyframes slideInRight {
  from {
      transform: translateX(50px);
      opacity: 0;
  }
  to {
      transform: translateX(0);
      opacity: 1;
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  h1 {
      font-size: 2.5rem;
  }

  h2 {
      font-size: 2rem;
  }

  nav ul li {
      margin-left: 20px;
  }
}

@media (max-width: 768px) {
  nav ul {
      flex-direction: column;
      position: absolute;
      top: 100%;
      right: 0;
      left: 0;
      width: 100%;
      background-color: var(--dark-blue);
      height: 0;
      padding: 20px 0;
      overflow: hidden;
      transition: height 0.3s ease;
      box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  }

  nav ul.active {
      height: auto;
      padding: 20px 0;
      display: block;
  }

  nav ul li {
      margin: 15px 0;
      text-align: center;
  }

  
  /* Hamburger Menu Styles */
  .hamburger {
      display: block;
  }
  

  .mission-cards {
      flex-direction: column;
  }
  
  .card {
      width: 100%;
      margin-bottom: 20px;
  }
  
  .about-content {
      flex-direction: column;
  }
  
  .social-links {
      flex-wrap: wrap;
  }
  
  .social-icon {
      margin-bottom: 10px;
  }
  
  .footer-content > div {
      width: 100%;
      margin-bottom: 30px;
      text-align: center;
  }
}

@media (max-width: 576px) {
  h1 {
      font-size: 2rem;
  }

  h2 {
      font-size: 1.8rem;
  }
  
  #hero {
      padding: 150px 0 80px;
  }
}





/* CSS Animations for Replacing AOS */
.fade-down {
  animation: fadeDown 0.8s ease-out;
}

@keyframes fadeDown {
  from {
      transform: translateY(-20px);
      opacity: 0;
  }
  to {
      transform: translateY(0);
      opacity: 1;
  }
}

.zoom-in {
  animation: zoomIn 0.8s ease-out;
}

@keyframes zoomIn {
  from {
      transform: scale(0.8);
      opacity: 0;
  }
  to {
      transform: scale(1);
      opacity: 1;
  }
}

.fade-up {
  animation: fadeUp 0.8s ease-out;
}

@keyframes fadeUp {
  from {
      transform: translateY(20px);
      opacity: 0;
  }
  to {
      transform: translateY(0);
      opacity: 1;
  }
}

.fade-right {
  animation: fadeRight 0.8s ease-out;
}

@keyframes fadeRight {
  from {
      transform: translateX(20px);
      opacity: 0;
  }
  to {
      transform: translateX(0);
      opacity: 1;
  }
}

.fade-left {
  animation: fadeLeft 0.8s ease-out;
}

@keyframes fadeLeft {
  from {
      transform: translateX(-20px);
      opacity: 0;
  }
  to {
      transform: translateX(0);
      opacity: 1;
  }
}

.swing-round {
  animation: swingRound 0.8s ease-out;
}

@keyframes swingRound {
  from {
      transform: rotate(-45deg);
      opacity: 0;
  }
  to {
      transform: rotate(0deg);
      opacity: 1;
  }
}


.out {
  animation: slide-fade-out 0.6s ease-out forwards;
}

@keyframes slide-fade-out {
  from {
      opacity: 1;
      transform: translateX(0);
  }
  to {
      opacity: 0;
      transform: translateX(50px);
  }
}




.bolding {
  font-weight: bold;
  font-style: italic;
  color: #595959;
}




/* Last Edition*/


#lastedition {
  display: grid;
  grid-template-columns: 1fr; 
  gap: 20px;
  padding: 20px;
  background-color: var(--white);

}

.div1, .div2 {
  width: 100%;
  padding: 20px;
}

.div2 img {
  width: 100%; 
  border-radius: 5px;
}


@media (min-width: 769px) {
  #lastedition {
    grid-template-columns: 2fr 3fr;
    align-items: center;
  }
}


/*Catalogue*/

.swiper {
  width: 80vw;
  height: 80vw;
  display: flex;
  align-items: center;
}

@media (min-width: 769px) {
  .swiper {
    width: 80vh;
    max-height: 80vh;

  }
  .swiper-slide {
    width: 60vh;
    max-height: 60vh;
  }


}

.swiper-slide img {
  width: 100%;
  height: auto;
  overflow-x: hidden;
  border-radius: 10%;
}

.swiper-slide {
  width: 80vw;
  height: 80vw;

}

.swiper-slide {
  opacity: 0.5;
  transform: scale(0.8);
  transition: transform 0.5s ease, opacity 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide-active {
  opacity: 1; 
  transform: scale(1);
}

.swiper-slide:hover img {
  transform: scale(1.05);
  border-radius: 20%;
}


.swiper-button-next,
.swiper-button-prev {
  color: var(--accent-blue);
  background: var(--white);
  width: 50px !important;
  height: 50px !important;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  outline: 2px solid var(--accent-blue);

}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-weight: bolder !important;
  font-size: 20px !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--accent-blue);
  color: var(--white);
  transform: scale(1.1);
  outline: 4px solid var(--white);
  transition: all 0.3s ease;
}
