@font-face {
    font-family: 'Virtual';
    src: url('font/Virtual-Regular.otf')
  }
  @font-face {
    font-family: 'Poppins';
    src: url('font/Poppins-Regular.ttf')
  }
  @font-face {
    font-family: 'Anton';
    src: url('font/Anton-Regular.ttf')
  }
  @font-face {
    font-family: 'Bebas Neue';
    src: url('font/BebasNeue-Regular.ttf')
  }
  body {
    font-family: 'Poppins', sans-serif; 
    margin: 0;
  }

  /*?/////////////////////////////////////////////////////////// NAVBAR  ///////////////////////////////////////////////////////////////////////////////////*/
  .navbar {
    position: fixed; /*maam ikaw na po bahala dito if fixed or not hihi can't decide po e*/
    width: 100%;
    top: 0;
    background-color: #212529; 
    padding: 10px 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: padding 0.3s ease, background-color 0.3s ease;
    z-index: 9;
    color: #f8f9fa;
    font-family: "Poppins", sans-serif;
  }

  .navbar.shrink {
    padding: 5px 30px;
    background-color: #1a1e21

    ; 
  }

  .navbar .logo img {
    height: 100px;
    transition: height 0.3s ease;
  }

  .navbar.shrink .logo img {
    height: 70px;
  }

  .nav-links {
    display: flex;
    gap: 50px;
  }

  .nav-links a {
    text-decoration: none;
    color: #f8f9fa;
    font-size: 18px;
    position: relative;
    transition: color 0.3s ease;
  }
  
  .nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #f39c12;
    transition: width 0.3s ease;
  }
  
  .nav-links a:hover {
    color: #f39c12; 
  }
  
  .nav-links a:hover::after {
    width: 100%;
  }
  
  .icons {
    display: flex;
    gap: 15px;
  }
  
  .icons i {
    font-size: 18px;
    color: #f8f9fa;
    cursor: pointer;
    transition: color 0.3s ease;
  }
  
  .icons i:hover {
    color: #f39c12;
  }
  


/*?/////////////////////////////////////////////////////////// VIDEO SECTION ///////////////////////////////////////////////////////////////////////////////////*/
   .video-section {
    position: relative;
    width: 100%;
   /* height: 100vh; */
    overflow: hidden;
  }
  .video-section video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .video-overlay h2 {
    position: absolute;
    top: 10%;
    left: 0;
    right: 0;
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 80px;
    /* font-weight: 600; */
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    mix-blend-mode: screen;
    color: #cccccc;
  }

/*?/////////////////////////////////////////////////////////// LOGIN/SIGN UP SECTION ///////////////////////////////////////////////////////////////////////////////////*/

.hero-section {
    position: relative;
    height: 100vh;
    background: url('images/logn.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
/* DARK OVERLAY */
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .content {
    text-align: center;
    z-index: 2;
  }
  
  .content h1 {
    font-size: 110px;
    margin-bottom: 30px;
    font-family: 'Bebas Neue';
    color: white;
  }
  
  .content p {
    font-size: 1.2rem;
    margin-bottom:50px;
    color: white;

  }
  
  /* BTN DESIGN */
  .buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .btn {
    text-decoration: none;
    color: #fff;
    padding: 0.8rem 2rem;
    border: 1px solid #fff;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-align: center;
    width: 350px;
    margin: 0 auto;
  }
  
  
  .login {
    background-color: white;
    color:black;
  }
  
  .signup:hover {
    background-color: rgb(37 135 20 / 47%);
    color: #fff;
}
  
 .login:hover {
    background-color: rgb(254 151 1);
    color: #fff;
}

  /*?/////////////////////////////////////////////////////////// ABOUT US SECTION ///////////////////////////////////////////////////////////////////////////////////*/

 .about-us {
    padding: 5rem 2rem;
    background: url('images/abt-us.png') no-repeat center center/cover; 
    background-attachment: fixed;
    color: #fff;
    text-align: center;
    position: relative;
    height: 100vh;

  }
  .about-text {
    font-family: 'Virtual', sans-serif;
    font-size: 95px;
    color: #fff;
    margin: 0 auto;
    width: 70%;
    position: relative;
    z-index: 1; }

/*?/////////////////////////////////////////////////////////// ARTICLE SECTION ///////////////////////////////////////////////////////////////////////////////////*/

  #article {
    padding: 40px 0;
    margin-top: 70px;
    
  }
  
  .half {
    display: inline-block;
    width: 49%;
    vertical-align: middle;
  }
  
  .article-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  
  .line-and-text {
    display: flex;
    align-items: center;
    gap: 45px; 
  }
  
  .vertical-line {
    width: 10px; 
    height: 250px; 
    background-color: #000;  
    flex-shrink: 0; 
  }

  .article-img-with-line {
    display: flex;
    align-items: center;
    gap: 15px; 
    margin-left: 30px;
  }
  .text-content {
    display: flex;
    flex-direction: column;
  }
  
  .article-img {
    margin: 0 20px;
  }
  
  .article-img img {
    max-width: 100%;

  }

  .article-title {
    color: #232323;
    text-align: left;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 95px;
    
    
  }
  .article-content p {
    font-size: 25px;
    line-height: 35px;
    font-family: 'Roboto', sans-serif;
  }
  .font-header {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 50px;
    color: #232323;
    line-height: 60px;

  }
  
  .sub {
    font-size: 28px;
    color: #555;
  }
  
  .text-overflow {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #444;
  }

  /* BTN DESIGN */

  .button {
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    text-transform: uppercase;
    width: 150px; 
    text-align: center;
    margin-left: auto; 

  }
  
  .button:hover {
    background-color: #555;
  }

/*?/////////////////////////////////////////////////////////// PASTORAL TEAM ///////////////////////////////////////////////////////////////////////////////////*/

.pastoral-team {
  text-align: center;
  padding: 50px;
  background-color: #fff;

}

.pastoral-team h1 {
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 52px;
  text-align: center;
}

.team-grid {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.team-member {
  text-align: center;
  background-color: #fefefe;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 12px;
  width: 330px;
}

.team-member img {
  width: 100%;
  height: 400px; 
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1em;
}

.team-member h3 {
  font-size: 1.2em;
  margin: 0.5em 0;
}

.team-member p {
  color: #666;
  font-size: 0.9em;
  margin: 0;
}



/*?/////////////////////////////////////////////////////////// UPCOMMING EVENTS ///////////////////////////////////////////////////////////////////////////////////*/
.upcoming-events {
  text-align: center;
  padding: 3em 1em;
  background-image: url(images/EventsBG.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed ;
  height: auto;
}

.upcoming-events h1 {
  font-size: 95px;
  margin-bottom: 45px;
  font-family: 'Bebas Neue';
  color: white;

}

.events-grid {
  display: flex;
  justify-content: center;
  gap: 65px;
  flex-wrap: wrap;
}

.event-card {
  background-color: #fff; 
  color: #000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  width: 380px;
  height: 660px;

  text-align: center;
}

.event-card img {
  width: 100%;
  height: 370px;
  object-fit: cover;
}

.event-info {
  padding: 1em;
}

.event-info h3 {
  font-size: 45px;
  margin-bottom: 5px;
  margin-top: 60px;
  text-transform: uppercase;
  font-family: 'Bebas Neue';
}

.event-info p {
  font-size: 18px;
  margin-bottom: 20px;
  color: gray;
}

  /* BTN DESIGN */

.event-info button {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 0.5em 1em;
  font-size: 0.9em;
  cursor: pointer;
  width: 200px;
  transition: background-color 0.3s ease;
}

.event-info button:hover {
  background-color: #444;
}


/*?/////////////////////////////////////////////////////////// CHURCH GALLERY ///////////////////////////////////////////////////////////////////////////////////*/
.container h1{
  text-align: center;
  font-size: 90px;
  text-transform: uppercase;
  font-family: 'Bebas Neue';
}
.gallery-container{
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   margin: 40px 20px 0 20px;
   cursor: pointer;
   height: auto;
}
.gallery-container .gallery-box{
   display: flex;
   justify-content: space-between;
   flex-wrap: wrap;
}
.gallery-container .gallery-box .gallery-collection{
   display: flex;
   flex-direction: column;
   width: 32.5%;
}
.gallery-container .gallery-box .gallery-collection img{
   width: 100%;
   padding-bottom: 15px;
}
.gallery-container .gallery-box .gallery-collection img:hover{
   transform: scale(1.1);
   transition: all 0.8s;
}

/* BTN DESIGN */

.gallery-container .btn-more{
  background-color: #000;
  color: #fff;
  border: none;
  padding: 0.5em 1em;
  font-size: 0.9em;
  cursor: pointer;
  width: 200px;
  transition: background-color 0.3s ease;
  margin-bottom: 50px;
  margin-top: 20px;

}
.btn-more a{
  color: #fff;
  font-size: 20px;
  text-decoration: none;
}
.btn-more:hover{
  background-color: #555;

}
/*?/////////////////////////////////////////////////////////// STAY UP TO DATE ///////////////////////////////////////////////////////////////////////////////////*/


.stay-up-to-date {
  text-align: center;
  padding: 40px;
  background-color: #212529; 
}

.stay-up-to-date h2 {
  font-size: 90px;
  margin-bottom: 20px;
  color: white;
  text-transform: uppercase;
  font-family: 'Bebas Neue';
}

.stay-up-to-date p {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: white;

}

.social-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-button {
  text-decoration: none;
  color: #ffffff;
  padding: 10px 20px;
  font-size: 0.9em;
  border: 1px solid #ffffff; 
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: white;
}

.social-button i {
  margin-left: 10px;
  font-style: normal;
}


.social-button {
  transition: all 0.3s ease; 
}

.social-button:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); 
}

.social-button.facebook:hover {
  background-color: #2e4379; 
}

.social-button.instagram:hover {
  background: linear-gradient(45deg, #fd1d1d, #833ab4); 
}

.social-button.tiktok:hover {
  background: linear-gradient(45deg, #25f4ee, #000000); 
}





/*?/////////////////////////////////////////////////////////// CONTACT SECTION ///////////////////////////////////////////////////////////////////////////////////*/
.contact-section {
  position: relative;
  background: url('images/ContactBG.png'); 
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 50px 20px;
  color: white;
  
}

.contact-container {
  background: rgba(33, 37, 41, 0.8);  
  padding: 50px;
  width: 75%;
  margin: 0 auto;
  text-align: center;
}

.contact-container h4 {
  font-size: 20px;
  margin-bottom: 10px;
  padding-left: 5%;
  text-align: left;

}

.contact-container h2 {
  font-size: 80px;
  font-weight: bold;
  margin-bottom: 30px;
  font-family: 'Bebas Neue';
  padding-left: 5%;
  text-align: left;


}

.form-group {
  margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  background: transparent;
  border: none;
  border-bottom: 1px solid white;
  color: white;
  font-size: 16px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #cccccc;

}

.form-group input:focus,
.form-group textarea:focus {
  outline: none; 
  transition: all 0.3s ease; 
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
  visibility: hidden; 
}

.submit-btn {
  background: transparent;
  border: 1px solid white;
  color: white;
  padding: 5px;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 190px;
  margin-top: 15px;
}

.submit-btn:hover {
  background: white;
  color: black;
}

.line{
  width: 8px; 
  height: 110px; 
  background-color: white;  
  flex-shrink: 0; 
  position: absolute;
  /*left: 790px;*/
}



/*?/////////////////////////////////////////////////////////// FOOTER  ///////////////////////////////////////////////////////////////////////////////////*/
.footer {
  background-color: #212529; 
  color: #ffffff; 
  padding: 25px 0;
  text-align: center;
}

.footer-nav {
  display: flex;
  justify-content: center;
  padding: 5px 0;
  border-bottom: 2px solid #ffffff; 
  gap: 30px;
}


.footer-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 20px;
  position: relative;
  transition: color 0.3s ease;
  margin-bottom: 20px;
}

.footer-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px; 
  width: 0;
  height: 2px;
  background-color: #f39c12;
  transition: width 0.3s ease;
}

.footer-link:hover {
  color: #f39c12;
}

.footer-link:hover::after {
  width: 100%; 
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  padding: 20px;
}

.footer-section {
  flex: 1;
  padding: 10px;
  text-align: center;
}

.logo-section {
  text-align: center;
}

.footer-logo {
  width: 250px; 
}

.footer-btn {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
  padding: 10px 20px;
  font-size: 18px;
  cursor: pointer;
  width: 170px;
  transition: all 0.3s ease;
}

.footer-btn:hover {
  background-color: #ffffff;
  color: #000000;
}

.social-icons {
  margin-top: 10px;
}

.social-icons a {
  font-size: 18px;
  margin: 0 10px;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
  color: white;
}

.social-icons i::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px; 
  width: 0;
  height: 2px;
  background-color: #f39c12;
  transition: width 0.3s ease;
}

.social-icons i:hover {
  color: #f39c12;
}

.social-icons i:hover::after {
  width: 100%; 
}

.footer-bottom {
  padding: 10px !important;
  margin: 0 !important;
  background-color: white; 
  color: #ffffff;
  font-size: 14px;
  color: #000;
  letter-spacing: 5px;
  font-family: 'Poppins';
}

.footer-bottom p {
    margin-bottom:0 !important;
}

@media screen and (max-width: 1199px) {
  .about-text{
      font-size: 80px;
  }
  
  .article-title{
      font-size:80px;
  }
}

@media screen and (max-width: 991px) {
  .navbar.bg-dark .container{
      max-width: 100% !important;
      justify-content: center;
  }
  
  .navbarLinks{
    display: inline-block;
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  
  .navbarIcons {
      text-align: center !important;
  }
  .navbarLinks a{
      font-size: 15px !important;
  }
  
  #article .container{
      max-width: 100% !important;
  }
  
  .article-title{
      font-size:50px;
  }
  
  .about-text{
      width: 100% !important;
  }
  
  .team-member{
      width: 100% !important;
      max-width: 300px;
  }
  
  .events-grid{
      display:inline-block !important;
  }
  
  .event-card{
      margin: 15px;
  }
  
  .footer-nav{
      display: grid;
      gap: 0;
  }
  
  .footer-link {
      margin-bottom: 0;
  }
  
  .footer-content{
    display: inline-block;
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  
  .footer-section{
      text-align: center !important;
  }
  
  .footer-bottom{
      font-size: 10px;
  }
}

@media screen and (max-width: 767px) {
  .footer-nav {
    display: grid;
    gap: 0px;
  }
  

  
  .navbar{
      position: relative;
  }
  
  .content h1{
      font-size: 80px;
  }
  
  .about-text, .container h1, .stay-up-to-date h2,
  .contact-container h2{
    font-size: 50px;
}

.half{
    width: 100%;
}

.upcoming-events h1{
    font-size: 70px;
}

.social-buttons{
    display:inline-block;
    
}
.social-button{
    margin: 5px 0;
}
.contact-container{
    width: 100%;
    padding: 30px;
}

.footer-section{
    font-size: 13px;
}
}


@media screen and (max-width: 480px) {
  .myLogo small {
    font-size: 11px;
  }
  
  .navbar{
    padding: 5px;
  }
  
  .video-overlay h2{
    font-size: 30px;
    top: 0;
  }
  .content h1 {
    font-size: 50px;
}
.content p{
    font-size: 15px;
}

.btn{
    width: 100%;
}
.article-img {
    margin: 0;
}

.article-img-with-line{
    margin-left: 0;
    gap: 0;
}
.line-and-text{
    gap: 5px;
}

.pastoral-team{
    padding: 20px;
}

.pastoral-team h1 {
    font-size: 35px;
    margin-bottom: 20px;
}

.article-content p.coreTxt{
    font-size: 12px;
    line-height: 1.5;
}

.event-card{
    width: 100%;
}

.upcoming-events{
    padding: 5px;
}

.event-card {
    margin: 10px 0;
}

.stay-up-to-date{
    padding: 30px 15px;
}
    
}


