body{
    background-image: 
    linear-gradient(rgba(166, 54,145, 0.7), rgba(0, 0, 0, 0.7)), 
    url(./images/background2.jpeg) ;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    margin: 0;
    color: white;
}
body h1, h2, h3, h4, h5, h6{
    font-family: heading;
}
body p, li, a{
    font-family: body;
}
@font-face {
  font-family: 'body';
  src: url('./font/body.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'heading';
  src: url('./font/headingfont.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
.navbar {
  box-shadow: 0 6px 12px rgba(0,0,0,0.8);
  transition: box-shadow 0.3s ease;
}

.navbar:hover {
  box-shadow: 0 8px 16px rgba(0,0,0,0.9);
}
.hero-section{
    margin-top: 200px;
}
.intro-head{
    font-size: 3.3rem;
    font-family: heading;
    font-weight: bold;
}
.intro-text{
    font-size: 1.6rem;
    font-family: body;
}
.card{
   background-color: rgb(94, 26, 85);
    box-shadow: 0 4px 8px rgba(0,0,0,0.5);
    transition: box-shadow 0.3s ease;
}
.card-text{
    font-family: body;
  font-size: 20px;
}
.fly-card {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease-out;
}

.fly-card.show {
  opacity: 1;
  transform: translateY(0);
}
.fly-left {
  transform: translateX(-80px);
}
.fly-right {
  transform: translateX(80px);
}
.fly-up {
  transform: translateY(60px);
}

.bold{
    font-weight: 900;
}
.gallery-section {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0;
}

.gallery-section img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #000000;
}
#back{
  position: fixed;
  top: 0;
  left: 0;
  color: white;
  text-decoration: none;
  font-size: 24px;
  font-family: body;
}
@media (max-width: 850px) {
        body{
             background-size: 100% 100%;
        }    
        .navbar-brand{
            font-size: small;
            font-weight: 900;
        }
        .hero-section{
            margin-top: 100px;
        }
        .navbar-toggler{
          padding: 0;
          border: none;
        }
}
@media (max-width: 500px){
  .fly-left {
  transform: translateY(60px);
}
.fly-right {
  transform: translateY(60px);
}
#contact-email{
  font-size: 2.3rem !important;
}
}
@media (max-width: 600px){
  .mission{
    width: 300px !important;
  }
}