 /* Reset */
    
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
     body {
      font-family:'DM sans' , sans-serif;
      background-color: #333;
    }


    
   
    nav {
      background-color: rgb(164, 37, 37);
      color: #fff;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
    }
    .nav-container {
      max-width: 1200px;
      margin: auto;
      padding: 0 50px;
      height: 80px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    /* Logo */
    .logo {
      display: flex;
      align-items: center;
      position: relative;
      right: 50px;
    }

    .logo h1{
      font-size: 23px;
      position: relative;
      top: 3px;
      right: 15px;
    }
    .logo img {
      height: 55px;
      width: 100px;

    }
   
    /* Links */
    .nav-links {
      display: flex;
      list-style: none;
    }
    .nav-links li {
     
      margin-left: 10px;
    }
    .nav-links a {
      text-decoration: none;
      color:#f0f0f0;
      font-weight: 500;
      transition: color 0.3s;
      letter-spacing: 2px;
    }
    .nav-links a:hover {
      color:#fff ;
    }
 
    
     .hero{
          text-align: center;  
         }
    
#home {
  display: flex; 
  justify-content: center; 
  align-items: center; 
  height: 100vh; 
}
    #home h1 {
        font-family: 'Anton';
        color: #fff;
      display: flex;
      font-size: 60px;  
      line-height: 70px;
      position: relative;
    justify-content: center;
    padding-top: 250px;
    }    

    .hero{
      position: relative;
      text-align: center;
    }
    
    .hero a{
      position: relative;
      top: 40px;
      font-family: 'DM sans';
      background-color:rgb(197, 24, 24);
      color: #fff;
      border-radius: 50px;
      padding: 15px 40px;
      text-decoration: none;
      font-size: 15px;
      font-weight: bold;
      letter-spacing: 2px;
    
    
    }

     .hero a:hover{
       background-color:   rgb(164, 37, 37);
     }
     
     .mission {
  position: absolute;
  top: 180px; /* adjust as needed */
  left: 50%;
  transform: translateX(-50%);
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  color: #fff;
  border: 1px solid rgba(197, 24, 24, 0.8) ;
  background: rgba(197, 24, 24, 0.1);
  padding: 8px 16px;
  border-radius: 30px;
  text-transform: uppercase;
}


      .video-container {
            position: relative; 
            width: 100%;   
            height: 100%; 
            margin: auto;
            overflow: hidden
      }

    #myVideo {
            position: absolute;
            /* Expand the video beyond container boundaries */
            top: -10%;
            left: -10%;
            width: 120%;
            height: 120%;
            object-fit: cover; 
            z-index: -1;
            filter: blur(9px);
            transform: scale(1.05);
        }

        #myVideo1{
          display: none;
        }

        .icon{
          color: white;
          font-size: 20px;
        }

   
    .give{
      border: 2px solid white;
      border-radius: 20px;
      padding: 0.3rem 1rem;
      position: relative;
      left: 40px;
    }

    a.give:hover{
      background-color: white;
      color:rgb(197, 24, 24);
    }

     section {
      height: 100%;
    }

   #about{
    background-color: #fdf8df;
   }
    .about-us h1{
      color:rgb(164, 37, 37) ;
      font-size: 40px;
      text-align: center;
      font-family: 'Anton';
      padding-top: 50px;
    }

    
    .card-container {
      display: grid;
      justify-content: center;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 10px;
      padding-top: 20px;
      margin: 0 30px;
    }

    /* Card style */
    .card {
     
      background: #1e293b;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 18px rgba(0,0,0,0.3);
      transition: transform 0.3s ease;
      margin: 10px;
    }
    .card:hover {
      transform: translateY(-6px);
    }

    /* Image */
    .card img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      display: block;
    }

    /* Card content */
    .card-body {
      padding: 16px;
      color: #e2e8f0;
    }
    .card-title {
      font-size: 1.1rem;
      margin: 0 0 8px;
    }
    .card-text {
      font-size: 0.9rem;
      color: #94a3b8;
    }

  
   #accordion{
    background-color: #333;
    height: 100vh;
    text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: center;     

  text-align: center;

   }

   .christ h1{
      color:rgb(164, 37, 37) ;
      font-size: 50px;
      text-align: center;
      font-family: 'Anton';
      padding-top: 50px;
   }

#accordion p{
  text-align: center;
  font-family: 'Dm sans';
  font-size: 20px;
  color: #fdf8df;
}

    .accordion {
      position: relative;
      top: 30px;
      max-width: 700px;
      margin: auto;
      border-radius: 8px;
      overflow: hidden;
      text-align: center;
      
    }

    .accordion-item {
      border-bottom: 1px solid #ddd;
    }

    .accordion-header {
      background: rgb(164, 37, 37) ;
      color: white;
      padding: 15px 20px;
      cursor: pointer;
      font-size: 18px;
      font-weight: bold;
      transition: background 0.3s;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .accordion-header:hover {
      background: rgb(197, 24, 24);
    }

 
    .accordion-button {
      font-size: 20px;
      font-weight: bold;
      transition: transform 0.3s;
    }

    .accordion-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s ease;
      background: #333;
      padding: 0 20px;
      
    }

    .accordion-content p{
      margin: 15px 0;
   
    }

      .italic{
       position: relative;
       top: 20px;
      }


    .accordion-item.active .accordion-content {
      max-height: 200px; /* adjust depending on content */
      padding: 15px 20px;
    }

    .accordion-item.active .accordion-button {
      content: "-";
    }


    .location-btn{
      
      text-align: center;
      margin-top: 30px;
    }

    button.btn{
      font-size: 20px;
      padding: 1rem 1rem;
      border-radius: 15px;
      cursor: pointer;
      transition: 0.3s;
      border-color:rgb(164, 37, 37) ;
      text-transform: uppercase;
    }

    .btn:hover{
      color: white;
      background-color:rgb(164, 37, 37) ;
    }

    .states{
      padding-top: 30px;
       padding-bottom: 30px;
    }
    .hidden {
      display: none; 
    }
    .btn:active {
      transform: scale(0.95)
    }

    .btn-more{
      display: block;
  margin: 0 auto;
      
    }
     .parishes{
     background-color: #fdf8df;
    height: 100%;

   }

    .parishes h1{
      color:rgb(164, 37, 37) ;
      font-size: 40px;
      text-align: center;
      font-family: 'Anton';
      padding-top: 50px;
    }

  .parishes h2{
      color:rgb(164, 37, 37) ;
      font-size: 30px;
      font-family: 'Anton';
      padding-left: 50px;
    }



     .grid-container {
      display: grid;
      grid-template-columns: repeat(3, 1fr); 
      gap: 20px;
    }

    .box {
      margin: 5px 20px;
      background: white;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      outline: none;
      
    }

    .box h3 {
      font-size: 1.5rem;
      margin-bottom: 10px;
    }

    .box h4 {
      font-size: 1.0rem;
      margin-bottom: 8px;
      color: #555;
    }

    .box p {
      font-size: 1rem;
      color: #666;
      line-height: 1.5;
    }
     /* Hamburger */
    .menu-btn {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 20px;
      height: 15px;
      cursor: pointer;
    }
    .menu-btn div {
      height: 3px;
      background: #333;
      border-radius: 5px;
      transition: 0.3s;
    }
  footer {
            background: linear-gradient(135deg, rgb(164, 37, 37) 0%, rgb(140, 30, 30) 100%);
            padding: 60px 20px 30px;
            margin-top: 30px; 
            color: white;
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
          
        }

        .footer-container {
            display: grid;
            grid-template-columns: 2fr 1fr 1.5fr 1fr;
            gap: 40px;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        /* Logo Section */
        .flex-logo {
            display: flex;
            align-items: center;
            gap: 20px;
            position: relative;
            top: -95px;
            
        }

        .flex-logo img {
            height: 120px;
            width: 120px;
            object-fit: contain;
            position: relative;
            left: 3rem;
           
          
        }

        .flex-logo h2 {
            font-size: 22px;
            font-weight: 700;
            line-height: 1;
            letter-spacing: 0.5px;
            position: relative;
            top: 4px;
           
        }

        /* Menu Section */
        .footer-menu h3 {
            margin-bottom: 25px;
            font-size: 20px;
            font-weight: 600;
            color: #fff;
            position: relative;
            padding-bottom: 10px;
        }


     
    
        

        .footer-menu ul {
            list-style: none;
            padding: 0;
        }

        .footer-menu ul li {
            margin-bottom: 15px;
        }

        .footer-menu ul li a {
            text-decoration: none;
            color: rgba(255, 255, 255, 0.9);
            font-size: 16px;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 8px 0;
            display: inline-block;
            position: relative;
        }

        .footer-menu ul li a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #fdf8df);
            transition: width 0.3s ease;
        }

        

        .footer-menu ul li a:hover::before {
            width: 100%;
        }

        /* Contact and Social Sections */
        .footer-container > div h3 {
            margin-bottom: 20px;
            font-size: 20px;
            font-weight: 600;
            color: #fff;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-container > div h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, #fdf8df);
            border-radius: 2px;
        }

        .footer-container p {
            font-size: 16px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 400;
        }

        /* Social Media */
        .socials {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .socials a {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 16px;
            font-weight: 500;
            text-decoration: none;
            color: rgba(255, 255, 255, 0.9);
            transition: all 0.3s ease;
            padding: 10px 15px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
        }

       .socials a:hover{
        background: rgba(255, 255, 255, 0.5);
       }

        .f-contact a{
          text-decoration: none;
          color: #fff;
         margin-bottom: 20px;
        }

  .seeMoreBtn {
  margin: 30px auto 20px auto; /* Reduced top margin */
  display: block;
  padding: 10px 20px;
  border: 1px solid rgb(197, 24, 24);
  background: transparent;
  color: rgb(197, 24, 24);
  border-radius: 50px;
  cursor: pointer;
}

    


.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4); /* dark overlay */
  z-index: 1;
}

.content {
  position: relative;
  z-index: 2; /* keeps text above blur + overlay */
  padding: 20px;
  text-align: center;
}

.content p{
  letter-spacing: 10px;
  color: #fff;
  margin-bottom: 40px; /* space below */
  margin-top: -40px;  
  
}
.content h1 {
  font-family: "Anton", sans-serif;
  font-size: 50px;
  line-height: 60px;
  color: white;
}

.motto {
  display: inline-block;
  margin-bottom: 20px; 
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  color: #fff;
  border: 1px solid rgb(249, 249, 249);
  background: rgba(197, 24, 24, 0.2);
  padding: 8px 16px;
  border-radius: 30px;
  text-transform: uppercase;
}

.motto-section {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .motto-section .parallax-bg {
            position: absolute;
            top: -10%;
            left: -10%;
            width: 120%;
            height: 120%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .motto-section .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 1;
        }

        .motto-section .content {
            position: relative;
            z-index: 10;
            text-align: center;
            color: #fff;
            padding: 40px;
        }


  
.fixed-header {
            position: sticky;
            top: 50px;
            left: 0;
            width: 100%;
            text-align: center;
            padding: 60px 20px 40px;
            z-index: 100;

             }

        .fixed-header h1 {
            font-family: "Anton";
            font-size: 3rem;
            font-weight: 400;
            color:#fff ;
            text-transform: uppercase;

        }

        .parallax-section {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .parallax-bg {
            position: absolute;
            top: -10%;
            left: -10%;
            width: 120%;
            height: 120%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            transition: transform 0.5s ease-out;
        }

        .content-wrapper {
            position: relative;
            z-index: 10;
            max-width: 800px;
            padding: 40px;
          
            margin: 30px;
            text-align: center;
            background:rgb(164, 37, 37);
           
            border-radius: 20px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.4);
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .parallax-section.active .content-wrapper {
            opacity: 1;
            transform: translateY(0);
        }

        .content-wrapper h2 {
            font-size: 2.5rem;
            font-family: "Anton";
            line-height: 43px;
            color: #fdf8df;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .content-wrapper p {
            font-size: 1.2rem;
            color: #fdf8df;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .scroll-indicator {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 100;
            animation: bounce 2s infinite;
        }

        .scroll-indicator::before {
            content: '⌄';
            font-size: 3rem;
            color: #fff;
            opacity: 0.7;
        }

         .leaders-section {

            background: linear-gradient(135deg, #981d1d 0%, #941c1c 100%);
            padding: 100px 20px;
            color: #fff;
        }

        .leaders-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .leaders-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .leaders-header h2 {
            font-family: 'Anton';
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #fdf8df;
        }

       

        /* Founder Card */
        .founder-card {
            background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 20px;
            padding: 30px 30px;
            margin-bottom: 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .founder-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .founder-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px #1816064d;
        }

        .founder-badge {
            display: inline-block;
            text-align: center;
            background: linear-gradient(135deg, #791b1b  );
            color: #ffffff;
            padding: 10px 30px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
            letter-spacing: 2px;
            margin-bottom: 25px;
            text-transform: uppercase;
        }

        .founder-card h3 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }

    
        /* Officers Grid */
        .officers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .officer-card {
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .officer-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            transition: left 0.5s ease;
        }

        .officer-card:hover::before {
            left: 100%;
        }

        .officer-card:hover {
            transform: translateY(-5px);
            border-color: rgba(255,255,255,0.3);
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
        }

        .officer-position {
            background: linear-gradient(135deg, #791b1b );
    
            padding: 10px 30px;
            border-radius: 50px;
            font-size: 0.9rem;
            color:#fff;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .officer-card h4 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #fff;
            line-height: 1.4;
        }

        .divider {
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, transparent, #ffd700, transparent);
            margin: 50px auto;
        }

       

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(-20px);
            }
            60% {
                transform: translateX(-50%) translateY(-10px);
            }
        }


/* Update existing mobile media query and add new responsive rules */
@media (max-width: 768px) {
  /* Navigation improvements */
  .nav-container {
    padding: 0 20px;
    height: 70px;
  }
  
  .logo {
    right: 0;
  }
  
  .logo h1 {
    font-size: 16px;
    right: 10px;
  }

  h1 span{
    display: block;
  }
  
  .logo img {
    height: 40px;
    width: 70px;
  }
  
  .nav-links {
    position: absolute;
    top: 70px;
    left: -100%;
    width: 100%;
    background: rgb(164, 37, 37);
    flex-direction: column;
    text-align: center;
    transition: left 0.3s ease-in-out;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  }
  
  .nav-links li {
    margin: 15px 0;
  }
  
  .nav-links a {
    font-size: 18px;
    padding: 10px;
    display: block;
  }
  
  .give {
    left: 0;
    margin: 10px 20px;
  }
  
  .nav-links.show {
    left: 0;
  }
  
  .menu-btn {
    display: flex;
    
  }
  
  .menu-btn div {
    background: #fff;
     
  }

  /* Hero section mobile */
  

   .hero{
    margin-top: 150px;
   }
  
  .hero a {
    font-size: 14px;
    padding: 0.2rem 1rem;
    
  }

  /* About section mobile */
  .about-us h1 {
    font-size: 28px;
    padding: 30px 20px 0 20px;
  }
  
  .card-container {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 30px;
  }
  
  .card img {
    height: 200px;
  }

  .card-body{
    text-align: center;
  }
  

  /* Accordion section mobile */
  #accordion {
    height: auto;
    min-height: 70vh;
    padding-bottom: 50px;
  }
  
  
  
  #accordion p {
    font-size: 12px;
    padding: 10 20px;
  }
  
  .accordion {
    margin: 20px;
    max-width: none;
  }
  
  .accordion-header {
    font-size: 16px;
    padding: 12px 15px;
  }
  
  .accordion-content {
    font-size: 14px;
  
  }

  /* Parishes section mobile */
  .parishes {
    height: auto;
    min-height: 100vh;
    padding-bottom: 50px;
  }
  
  .parishes h1 {
    font-size: 28px;
    padding: 30px 20px 0 20px;
  }
  
  .parishes h2 {
    font-size: 24px;
    padding-left: 20px;
    text-align: center;
  }
  
  .location-btn {
    margin-top: 20px;
    padding: 0 10px;
  }
  
  .btn {
    font-size: 14px;
    padding: 0.8rem 1rem;
    margin: 5px;
    display: inline-block;
  }
  
  .grid-container {
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 0 20px;
  }
  
  .box {
    margin: 5px 0;
  }
  
  .box h3 {
    font-size: 1.2rem;
  }
  
  .box h4 {
    font-size: 0.9rem;
  }
  
  .usa {
    max-width: none;
    margin: 0px 10px;
  }

  
  /* Footer mobile */
  footer {
    height: auto;
    padding: 50px 20px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

.flex-logo img {
    position: relative;
    left: 10px;
}

  .footer-logo{
    top: 30px;
    text-align: center;
  }
  .flex-logo{
    padding-top: 10px;
    display: block;
  }

  .flex-logo h1{
   text-align: center;
  }
  .footer-container h2,
  .footer-container h3 {
    color: white;
    margin-bottom: 15px;
  }
  
  .footer-container p {
    color: white;
  }
  
  .socials {
    margin-top: 10px;
  }
  
  .socials a {
    display: inline-block;
    margin: 5px 10px;
  }
  .footer-container > div h3::after {
    display: none;
  }
.footer-container > div h3 {
  color:#fdf8df;
}
}

/* Tablet styles (between mobile and desktop) */
@media (max-width: 1024px) and (min-width: 769px) {
  .nav-container {
    padding: 0 30px;
  }
  
  .logo h1 {
    font-size: 20px;
  }
  
  #home h1 {
    font-size: 48px;
    line-height: 55px;
  }
  
  .card-container {
    grid-template-columns: repeat(2, 1fr);
    margin: 0 40px;
  }
  
  .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  
}
/* Ultra-narrow devices (320px wide) */
@media (max-width: 360px) {
  

  
  #accordion p {
    font-size: 14px;
    padding: 10px;
  }
  
}

/* Small mobile devices */
@media (max-width: 480px) {

   button.btn {
    font-size: 12px;
    padding: 0.6rem 0.8rem;
    margin: 3px;
  }
   .officers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
  .mission{
    top: 40px;
  color: #fff;
  border: 1px solid rgb(189, 34, 34)  ;
  }
  #myVideo{
    display: none;
  }
  #myVideo1 {
            display: block;
            position: absolute;
            /* Expand the video beyond container boundaries */
            top: -10%;
            left: -10%;
            width: 120%;
            height: 120%;
            object-fit: cover; 
            z-index: -1;
            filter: blur(9px);
            transform: scale(1.05);
        }
  .nav-container {
    padding: 0 15px;
    height: 60px;
  }
  
  .logo h1 {
    font-size: 12px;
  }
  
  .logo img {
    height: 35px;
    width: 60px;
  }
  
  #home h1 {
    font-size: 40px;
    line-height: 50px;
    padding: 80px 15px 0 15px;
  }
  
  .hero a {
    font-size: 14px;
    padding: 1rem 1rem;
    letter-spacing: 5px;
  }
  
  #accordion p{
        font-size: 20px;
        padding: 20px;
    }
  }

  .parishes h1 {
    font-size: 38px;
    line-height: 40px;
    text-align: center;
  }

  .christ h1{
     font-size: 38px;
    line-height: 40px;
    text-align: center;
  }
  .btn {
    font-size: 12px;
    padding: 0.6rem 0.8rem;
    margin: 3px;
  }
  
  .accordion {
    margin: 15px;
  }
   .accordion-item.active .accordion-content {
      max-height: 500px; /* adjust depending on content */
      padding: 15px 20px;
    }
  .card-container,
  .grid-container {
    margin: 15px;
  }
.about-us h1,
  .parishes h1 {
    font-size: 35px;
  }
  .content h1 {
  font-family: "Anton", sans-serif;
  font-size: 42px;
 
  color: white;
}

 .content-wrapper p {
            line-height: 25px;
        }






