﻿
/*required-label*/
.required-label::after {
    content: " *";
    color: red;
    margin-left: 2px;
}

.text-error {
    color: red;
    font-size: 0.85rem;
    margin-top: 2px;
}


/*navbar styles*/
.fixed-top,
.fixed-top .navbar {
    visibility: visible !important;
}

    .site-name h2 {
        transition: all 0.3s ease;
        cursor: pointer;
    }

.site-name:hover h2 {
    transform: translateY(-5px) scale(1.05);
    text-shadow: 0 0 8px #FF6F0F;
    color: #FF6F0F;
}

    .site-name:hover h2 span {
        color: #fff;
    }

.contact-info {
    color: #ffffff;
    font-size: 14px;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: default;
}

    .contact-info:hover {
        color: #ffa64d;
        transform: translateY(-4px) scale(1.1);
        text-shadow: 0 0 5px #ffa64d;
    }

.social-icon {
    color: #ffffff;
    font-size: 18px;
    display: inline-block;
    transition: all 0.3s ease;
}

    .social-icon:hover {
        color: #ffa64d;
        transform: translateY(-8px) scale(1.4);
        text-shadow: 0 0 8px #ffa64d;
    }


.nav-item.dropdown:hover > .dropdown-menu {
    display: block;
}

.dropdown-submenu {
    position: relative;
}

    .dropdown-submenu > .submenu {
        display: none;
        position: absolute;
        top: 0;
        left: 100%;
        margin-top: -1px;
        background: #fff;
    }

    .dropdown-submenu:hover > .submenu {
        display: block;
    }

@media (max-width: 992px) {
    .dropdown-submenu > .submenu {
        display: none;
        position: static;
        top: 0;
        left: 100%;
        margin-top: -1px;
        background: #464c52;
        transition: max-height 0.3s ease;
    }

        .dropdown-submenu > .submenu.show {
            max-height: 1000px; 
        }

}

.dropdown-menu,
.submenu {
    border-radius: 10px;
    padding: 10px;
    border: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: all 0.2s ease-in-out;
}

.dropdown-item {
    padding: 8px 16px;
    font-weight: 500;
    transition: background 0.2s;
}

    .dropdown-item:hover {
        background: #f1f5f9;
        color: #0d6efd;
        border-radius: 6px;
    }

.submenu {
    min-width: 220px;
}

@media (max-width: 615px) {
    .site-name h1 {
        font-size: 22px;
    }
}

.btn-outline-orange {
    color: #FF6F0F;
    border-color: #FF6F0F;
}

    .btn-outline-orange:hover {
        color: #fff;
        background-color: #FF6F0F;
        border-color: #FF6F0F;
    }



/*Index Page styles*/

html {
    scroll-padding-top: 140px;
}


/*Index Page Carousel*/

.custom-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255,255,255,0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #f86d10;
    transition: all 0.3s ease;
}

    .custom-arrow:hover {
        background-color: #f56c0f;
        color: #fff;
        transform: scale(1.2);
    }

.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: none;
}

.carousel-img {
    width: 100%;
    height: 1000px; 
    object-fit: cover; 
}


@import url('https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css');


/*Events & News*/

.text-truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-item {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

    .blog-item:hover {
        transform: translateY(-6px);
        box-shadow: 0px 8px 20px rgba(0,0,0,0.12);
    }

.swiper-button-prev,
.swiper-button-next {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.3); 
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.9);
    font-size: 14px;
    color: #fff;
}

.swiper:hover .swiper-button-prev,
.swiper:hover .swiper-button-next {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: rgba(0, 0, 0, 0.6);
    transform: scale(1.1);
}

.swiper-button-prev {
    left: 8px;
}

.swiper-button-next {
    right: 8px;
}

    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-size: 12px; 
    }


.fixed-card {
    height: 450px;
    display: flex;
    flex-direction: column;
}

    .fixed-card img {
        height: 200px;
        object-fit: cover;
    }

/*Priest*/
.team-item img {
    width: 100%;
    height: 445px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    border-radius: 5px;
}

/*What we do carousal*/
.text-orange {
    color: #ff6600 !important;
}

.bg-orange {
    background-color: #ff6600 !important;
}

.btn-outline-orange {
    border: 2px solid #ff6600;
    color: #ff6600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

    .btn-outline-orange:hover {
        background: #ff6600;
        color: #fff;
    }

.service-card {
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    max-width: 1000px;
}

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

.icon-box i {
    color: #ff6600;
    transition: all 0.3s ease;
}

.service-card:hover .icon-box i {
    color: #cc3300;
    transform: scale(1.2);
}

.custom-arrow-getinvolved {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ff6600;
    color: #fff;
    border: none;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

    .custom-arrow-getinvolved:hover- {
        background: #cc3300;
    }

    .custom-arrow-getinvolved i {
        font-size: 22px;
    }


/*st-antony page*/

body {
    font-family: 'Georgia', serif;
    background-color: #faf9f7;
    color: #2c2c2c;
    line-height: 1.7;
}

.hero-section {
    height: 45vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInDown 1.5s ease;
}

    .hero-content h1 {
        font-size: 2.8rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
    }

    .hero-content p {
        font-size: 1.2rem;
        margin-top: 0.5rem;
        color: #e0e0e0;
    }

.section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #ff7f2a;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

    .section-title::after {
        content: "";
        display: block;
        width: 60px;
        height: 3px;
        background: #ff7f2a; 
        margin: 0.5rem auto 0;
    }

section {
    padding: 4rem 0;
}

    section:nth-of-type(odd) {
        background: #ffffff;
    }

    section:nth-of-type(even) {
        background: #fff4ef;
    }

.magazine-img {
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: transform 0.4s ease;
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

    .magazine-img:hover {
        transform: scale(1.03);
    }

.legacy-img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 12px 28px rgba(0,0,0,0.25);
    border: 5px solid #fff;
    margin-top: 2rem;
    background: #fff;
}

.dropcap:first-letter {
    float: left;
    font-size: 3rem;
    line-height: 1;
    padding: 0 12px;
    color: #ff7f2a;
    font-weight: bold;
}

.pull-quote {
    font-size: 1.3rem;
    font-style: italic;
    color: #ff7f2a;
    margin: 2rem auto;
    text-align: center;
    position: relative;
    max-width: 700px;
    padding: 1rem 2rem;
    border-left: 4px solid #ff7f2a;
    background: #fff4ef;
    border-radius: 10px;
}

.section-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #aaa, transparent);
    margin: 2rem auto;
    width: 80%;
}

@keyframes fadeInDown {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.btn-outline-orange {
    color: #FF6F0F;
    border-color: #FF6F0F;
}

    .btn-outline-orange:hover {
        color: #fff;
        background-color: #FF6F0F;
        border-color: #FF6F0F;
    }



/*Shrine Page*/

body {
    background-color: #f5f5f5;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.history-header {
    position: relative;
    background-image: url("assets/Pictures/St Antony 4.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 20px;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

    .history-header::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 0;
    }

    .history-header .container {
        position: relative;
        z-index: 1;
    }

    .history-header h1 {
        font-size: 3rem;
        font-weight: bold;
        margin-bottom: 15px;
        text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
    }

    .history-header p {
        font-size: 1.2rem;
        max-width: 700px;
        margin: 0 auto;
        text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    }

.history-section {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 50px 0;
}


.history-card {
    max-width: 80%;
    margin: 30px auto;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

    .history-card::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, rgba(255,111,15,0.1), rgba(255,111,15,0));
        transform: rotate(0deg);
        transition: all 0.5s ease;
        z-index: 0;
    }

    .history-card:hover::before {
        transform: rotate(180deg);
    }

    .history-card:hover {
        transform: scale(1.03);
        box-shadow: 0 12px 25px rgba(255,111,15,0.25);
    }

    .history-card h2 {
        color: #FF6F0F;
        margin-bottom: 20px;
        position: relative;
        z-index: 1;
        transition: all 0.3s ease;
    }

    .history-card:hover h2 {
        letter-spacing: 1px;
    }

    .history-card p,
    .history-card ul {
        font-size: 1.1rem;
        line-height: 1.8;
        text-align: justify;
        margin-bottom: 15px;
        position: relative;
        z-index: 1;
    }

    .history-card ul {
        margin-left: 20px;
    }



/* Parish page*/

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
    background-color: #fdfdfd;
    color: #333;
}

section {
    padding: 80px 20px;
}


.section-title-parish {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 40px;
    text-align: center;
    color: #FF6F0F;
    position: relative;
}

    .section-title-parish::after {
        content: '';
        width: 60px;
        height: 4px;
        background: #FF6F0F;
        display: block;
        margin: 10px auto 0 auto;
        border-radius: 2px;
    }

.card-custom-parish {
    background: #fff;
    border-radius: 50px;
    padding: 30px;
    margin: 20px auto;
    max-width: 100%;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    text-align :center;
}

    .card-custom-parish:hover {
        transform: translateY(-5px);
    }

.mass-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    max-width: 700px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

    .mass-table th, .mass-table td {
        padding: 15px;
        border-bottom: 1px solid #eee;
        text-align: left;
    }

    .mass-table th {
        background-color: #FF6F0F;
        color: #fff;
    }

    .mass-table tr:last-child td {
        border-bottom: none;
    }

.highlight {
    font-weight: bold;
    color: #FF6F0F;
}

@media (max-width: 768px) {
    section {
        padding: 60px 15px;
    }
}

.main-heading {
    font-family: 'Georgia', serif;
    font-size: 2.5rem;
    text-align: center;
    color: #FF6F0F;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.associations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.small-card {
    padding: 20px;
    border-radius: 30px;
    text-align: left;
}

    .small-card .section-title {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .small-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    }

    .small-card p {
        font-size: 0.95rem;
        line-height: 1.6;
        color: #555;
        margin-bottom: 12px;
        text-align: justify;
    }

        .small-card p .highlight {
            font-weight: bold;
            color: #FF6F0F;
        }

        .small-card p em {
            font-style: italic;
            color: #FF6F0F;
        }

        .small-card p.blockquote {
            font-style: italic;
            border-left: 4px solid #FF6F0F;
            padding-left: 12px;
            color: #333;
            background: #fff8f2;
        }




/*Volunteer*/

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fdfdfd;
    color: #333;
    scroll-behavior: smooth;
}

.text-orange {
    color: #FF6F0F;
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    background: #fff;
    margin-bottom: 20px;
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

.section {
    padding: 80px 20px;
}

.section-title-volunteer {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    color: #FF6F0F;
    margin-bottom: 40px;
    position: relative;
}

    .section-title-volunteer::after {
        content: '';
        width: 60px;
        height: 4px;
        background: #FF6F0F;
        display: block;
        margin: 10px auto 0 auto;
        border-radius: 2px;
    }

.card-custom {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    max-width: 900px;
    margin: 20px auto;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

    .card-custom:hover {
        transform: translateY(-5px);
    }

.highlight {
    color: #FF6F0F;
    font-weight: bold;
}

@media (max-width: 768px) {
    .section {
        padding: 60px 15px;
    }
}

.text-orange {
    color: #FF6F0F;
}

.card {
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

.accordion-button {
    background-color: #fff;
    color: #FF6F0F;
    font-weight: 500;
}

.section-title-prayer {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 2rem;
    font-weight: bold;
    color: #FF6F0F;
    text-align: center;
    text-transform: uppercase;
    margin: 2rem 0;
    padding: 0.5rem 1rem;
    border-bottom: 3px solid #FF6F0F;
    letter-spacing: 1px;
}

.section-title-prayer {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}



/*Gallery Page*/


.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 0 20px 50px 20px;
}

.card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .card img {
        width: 100%;
        display: block;
        border-radius: 12px;
        transition: transform 0.5s ease;
    }

    .card:hover img {
        transform: scale(1.1);
    }

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 1.2rem;
    text-align: center;
    padding: 10px;
}

.card:hover .overlay {
    opacity: 1;
}

