:root {
    /* Primary Colors !*/
    --primary-color: #FFCC31;
    --secondary-color: #6c757d;
    --dark-grey-color: #2D2D2D;
    --light-grey-color: #A1A1A1;
    --lighter-grey-color: #F5F5F5;

    /* Background Colors */
    --bg-light: #f8f9fa;
    --bg-dark: #343a40;
    --bg-violet-dark: #171633;
    --bg-violet-medium: #3d348d;
    --bg-violet-light: #7678ed;
    --bg-grey-dark: #1E1E1E;

    /* Text Colors */
    --text-ultralight: #fff;
    --text-light: #414141;
    --text-medium: #696969;
    --text-dark: #000000;
    --text-accent-yellow: #FFCD31;
    --text-grey-dark: #1E1E1E;
}

body {
    font-family: Noto Sans Armenian;
    font-weight: 500;
    font-size: 1.125rem;
    letter-spacing: 0%;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

h1 {
    font-size: 3.75rem;
}

h2 {
    font-size: 3rem;
}

h3 {
    font-size: 2.25rem;
}

h4 {
    font-size: 1.75rem;
}

h5 {
    font-size: 1.5rem;
}

p {
    font-weight: 400;
    color: var(--text-light);
}

.col-md-auto {
    flex: 0 0 auto;
    width: auto;
}
.logo-image {
    max-width: 481px;
    width: 100%;
    height: auto;
}

.container-fluid {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
}

/* NAVIGATION*/
/* Smooth Slide Down Animation */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    animation: slideDown 0.3s ease-in-out;
}

.dropdown-menu {
    width: 100%;
    border: 0;
    background: #fecd3e;
}

.navbar {
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0%;
    color: var(--text-medium);
    padding: 0;
}

.navbar .container-fluid {
    margin-right: 0;
    padding-right: 0;
}

.nav-link {
    color: var(--text-medium);
}

.navbar-nav .nav-item {
    margin-right: 1.5rem;
}

/* CONTAINER*/
.container-custom {
    max-width: 1670px;
    margin: 0 auto;
}

.container100-dark {
    background: var(--bg-grey-dark);
    color: var(--bg-light);
}

.container-quote {
    background: var(--lighter-grey-color);
    border-radius: 1rem;
    padding: 1rem;
    font-size: 1.875rem;
}

.container-light {
    background: var(--bg-light);
}

.rounded-1 {
    border-radius: 1rem;
}

/* BUTTONS */

.btn {
    border-radius: 1rem;
    border: none;
    font-weight: 800;
    box-shadow: 0px 4px 4px 0px #FFF7F740 inset;
    box-shadow: 0px -4px 4px 0px #00000012 inset;
    padding: 1rem 3rem;
    transition: 0.3s;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--bg-violet-medium);
}

.btn-secondary {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background-color: var(--bg-violet-medium);
    color: var(--text-ultralight);
}

.btn-xl {
    font-size: 1.5rem;
    padding: 1.5rem 3.5rem;
}

.bg-primary-wd {
    background: #1E1E1E !important;
}

.btn-sm-overlay {
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.7rem;
    border-radius: 1.219rem;
    padding: 0.438rem 3.125rem;
}

/* Alert Message */

.icon-container {
    min-width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }


.header-alert-message {
    background: #EBEBEB;
    border-radius: 6px;
    padding: 1rem;
    text-align: left;
    position: relative;
}

.header-alert-message i {
    margin-top: 1px;
    color: #000;
    font-size: 1.4rem;
}

.header-alert-message p {
    padding: 0 2.2rem;
}

.header-alert-link {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background: var(--primary-color);
    display: flex;
    justify-content: center; 
    align-items: center;     
}

/* Text */
.text-primary {
    color: var(--text-accent-yellow) !important;
}

/* Hero */
.hero-section {
     position: relative;
     color: white;
     text-align: center;
 }
.hero-section img {
    width: 100%;
    height: auto;
}
.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*background: rgba(0, 0, 0, 0.5);*/
    padding: 20px;
    border-radius: 8px;
    width: 70%;
}

.hero-secondary-text {
    position: absolute;
    top: 30%;
    left: 40%;
    transform: translate(-50%, -50%);
    /* background: rgba(0, 0, 0, 0.5); */
    padding: 20px;
    border-radius: 8px;
    width: 70%;
    text-align: left;
}

.hero-secondary-text h1, h2 {
    font-size: 3.75rem;
}

.hero-contact {
    position: absolute;
    bottom: 0;
    left: 10%;
    background: rgb(0 0 0 / 47%);
    padding: 3rem 3rem;
    width: 80%;
    text-align: left;
    z-index: 1;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 0.5rem;
}

.hero-contact p {
    color: white;
}

.hero-text h1 {
    font-size: 4.375rem;
}

.hero-overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.29); /* Semi-transparent black overlay */
    z-index: 0; /* Keeps it behind the text and other elements */
}

/* Seperator */

.c-seperator {
    height: 6.25rem;
    clear: both;
}

.container-seperator h2 {
    font-weight: 700;
    font-size: 3.75rem;
    line-height: 5rem;
    letter-spacing: 0;
}

/* Cards*/

.card {
    padding: 1.25rem;
    border: none;
    background:var(--dark-grey-color);
    border-radius: 1rem;
    color: var(--bg-light);
    transition: all 0.3s ease-in-out;
    transform: translateY(0);
}

.card-light .card {
    background:var(--bg-light);
    color: var(--text-dark);
}

.card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

.card-body {
    padding: 0 !important;
    text-align: left;
}

.btn-group a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1rem;
}

.card-pre-title {
    font-size: 1rem; 
    color: var(--primary-color);
    margin-top: 1rem;
    margin-bottom: 0;
    padding: 0;
    font-weight: 700;
}

.card-title {
    font-size: 2.15rem;
    font-weight: 700;
    padding: 0;
    margin: 0;
    line-height: 2.979rem;
}


  .cards-wrapper {
    padding-bottom: 1rem;
  }
  
  .cards-wrapper::-webkit-scrollbar {
    display: none; /* hide scrollbar for cleaner look */
  }
  
  .cards-wrapper {
    -ms-overflow-style: none;  /* IE and Edge scrollbar removal */
    scrollbar-width: none;  /* Firefox scrollbar removal */
  }

  .card-keyword {
      color: var(--text-accent-yellow);
      font-weight: 700;
      margin-top: 2rem;
  }

.text-body-secondary {
    color: var(--light-grey-color) !important;
    font-weight: 700;
}

/* Footer */
footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

footer h5 {
    font-weight: 700;
}

.social-media-icons i {
    font-size: 1.5rem;
    padding: 0.3rem;
}

/* Blockquote */
.container-quote {
    background-image: url('../../images/quote.png');
    background-position: 3% 40%;
    background-repeat: no-repeat; 
    padding: 3rem;
}

.container-quote figure {
    padding: 0 8em;
    font-size: 1.875rem;
}

.blockquote {
    font-size: 1.875rem;
}

.blockquote-footer {
    margin-top: -1rem;
    margin-bottom: 1rem;
    color: var(--text-grey-dark);
    font-weight: 400;
}

.cards-with-btn a {
    background: #514D4D;
    color: #FFF;
    padding: 0.4rem 2rem;
    border-radius: 4px;
    transition: 0.3s;
}


.cards-with-btn.card-light a {
    background: #DBDBDB;
    color: #000;
    font-weight: 700;
    padding: 0.4rem 2rem;
    border-radius: 4px;
    transition: 0.3s;
}

.cards-with-btn a:hover {
    background: var(--primary-color);
    color: #000;
}

.how-we-are p {
    font-size: 1.25rem;
    padding: 1rem 12rem;
}

.container-address {
    border-radius: 1rem;
    font-weight: 700;
    font-size: 1.25rem;
}

/* Parishes */
.parish-menu {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.parish-menu li {
    margin-right: 0.5%;
}

.parish-menu li a {
    text-decoration: none;
    color: var(--text-dark);
    padding: 0.6rem;
    border-radius: 2.25rem;
    transition: 0.3s;
    font-weight: 400;
    font-size: 1.25rem;
}

.parish-menu li a:hover {
    color: var(--primary-color);
    background: #F3AE011A;
    border-radius: 2.25rem;
    font-weight: 700;
}

.parish-menu li a.active {
    color: var(--primary-color);
    background: #F3AE011A;
    border-radius: 2.25rem;
    font-weight: 700;
}

/* Extra small devices (phones, portrait) */
@media only screen and (max-width: 576px) {

    .c-seperator {
        height: 3.25rem;
        clear: both;
    }

    .how-we-are p {
        font-size: 1.15rem;
        padding: 1rem 0.2rem;
    }

    h1 {
        font-size: 1.75rem;
    }

    .hero-text {
        width: 98%;
    }

    .hero-text h1 {
        font-size: 1.1rem;
    }

    .hero-secondary-text h1, h2 {
        font-size: 1.3rem !important;
    }

    .hero-secondary-text {
        top: 50%;
        left: 56%;
        width: 100%;
        padding: 0;
    }

    .hero-secondary-text .btn {
        font-size: 0.9rem;
        padding: 0.5rem 0.8rem;
    }

    .container-seperator h2 {
        font-weight: 700;
        font-size: 1.75rem;
        line-height: 2rem;
        letter-spacing: 0;
    }

    .card-title {
        font-size: 1.15rem;
        font-weight: 700;
        padding: 0;
        margin: 0;
        line-height: 1.579rem;
    }

    .container-quote figure {
        padding: 0.2em;
        font-size: 1rem;
    }

    .blockquote {
        font-size: 1rem;
    }

    .container-quote {
        background-image: url('../../images/quote.png');
        background-position: left bottom;
        background-repeat: no-repeat;
        background-size: 15%
    }

    .container-history .order-1 {
        padding-bottom: 2em;
    }

    .hero-contact {
        width: 100%;
        left: 0;
        font-size: 0.8rem;
    }

}

  /* Small devices (phones, landscape) */
  @media only screen and (min-width: 575px) and (max-width: 768px) {

    .c-seperator {
        height: 4.25rem;
        clear: both;
    }

    .hero-text {
        width: 90%;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

      .hero-secondary-text h1, h2 {
          font-size: 2.15rem;
      }
      .hero-secondary-text {
          top: 50%;
          left: 40%;
      }
    .container-seperator h2 {
        font-weight: 700;
        font-size: 1.75rem;
        line-height: 2rem;
        letter-spacing: 0;
    }

    .card-title {
        font-size: 1.15rem;
        font-weight: 700;
        padding: 0;
        margin: 0;
        line-height: 1.579rem;
    }

    .container-quote figure {
        padding: 0 8em;
        font-size: 1.1rem;
    }

    .blockquote {
        font-size: 1.1rem;
    }

    .container-quote {
        background-image: url('../../images/quote.png');
        background-position: left bottom;
        background-repeat: no-repeat;
        background-size: 20%
    }

      .how-we-are p {
          font-size: 1.15rem;
          padding: 1rem 0.2rem;
      }

      .hero-contact {
          width: 100%;
          left: 0;
          font-size: 0.8rem;
      }

      /*.container-custom {*/
      /*    display: flex;*/
      /*    flex-direction: column-reverse; !* Moves hero-contact below hero-section *!*/
      /*}*/
  }

  /* Medium devices (tablets, portrait) */
  @media only screen and (min-width: 768px) and (max-width: 992px) {
    /* Styles here */
    .hero-text {
        width: 90%;
    }
    .hero-text h1 {
        font-size: 2.375em;
    }
      .hero-secondary-text h1, h2 {
          font-size: 3.15rem;
      }
    .container-seperator h2 {
        font-weight: 700;
        font-size: 1.75rem;
        line-height: 2rem;
        letter-spacing: 0;
    }

    .container-quote figure {
        padding: 0 8em;
        font-size: 1.475rem;
    }

    .blockquote {
        font-size: 1.475rem;
    }

      .how-we-are p {
          font-size: 1.15rem;
          padding: 1rem 2rem;
      }

      .hero-contact {
          width: 100%;
          left: 0;
          font-size: 0.8rem;
      }

  }

  /* Large devices (tablets landscape, small laptops) */
  @media only screen and (min-width: 992px) and (max-width: 1200px) {
    .hero-text {
        width: 90%;
    }
    .hero-text h1 {
        font-size: 1.5em;
    }

    .hero-secondary-text h1, h2 {
        font-size: 3.15rem;
    }
    .container-seperator h2 {
        font-weight: 700;
        font-size: 2.75rem;
        line-height: 3rem;
        letter-spacing: 0;
    }

      .how-we-are p {
          font-size: 1.15rem;
          padding: 1rem 2rem;
      }
      .hero-contact {
          width: 100%;
          left: 0;
          font-size: 1rem;
      }

  }

  /* Extra large devices (desktops, large laptops) */
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .navbar {
        font-size: 1rem;
    }
    .navbar-nav .nav-item {
        margin-right: 1rem;
    }
    .hero-text {
        width: 90%;
    }
    .hero-text h1 {
        font-size: 2.375em;
    }
    .container-seperator h2 {
        font-weight: 700;
        font-size: 2.75rem;
        line-height: 3rem;
        letter-spacing: 0;
    }

  }

  @media only screen and (max-width: 1200px) {
    body {
        padding: 0 1rem;
    }

    .logo{
        order: 1;
    }

    .get-involved {
        order: 2;
        margin-top: 0.5rem;
    }

    .navbar  {
        order: 3;
        margin-left: 1rem;
        padding-top: 0.5rem;
    }

    .btn {
        padding: 0.5rem 1rem;
    }

    .logo-image {
        max-width: 281px;
        width: 80%;
        height: auto;
    }

    .events-section {
      font-size: 0.8rem;
    }

    .btn-group a {
      font-size: 0.8rem;
    }

    .cards-with-btn small {
        font-size: 0.8rem;
    }
    .cards-with-btn a {
        font-size: 0.7rem;
        padding: 0.4rem 0.5rem;
    }

      .hero-contact {
          position: unset;
          margin-top: 1rem;
          background: #000;
      }

  }

  /* XXL devices (large desktops and wide screens) */
  @media only screen and (min-width: 1400px) {

  }
  





