/* =====================================================
   ALL SAINTS JJANYI CHURCH
   PAPAL PURPLE THEME
===================================================== */

:root {

    --primary: #6A0DAD;
    --primary-dark: #43076F;
    --primary-deep: #30044F;
    --primary-light: #8E44AD;
    --primary-soft: #F4EAF8;

    --gold: #D4AF37;
    --gold-light: #E6C85C;

    --white: #ffffff;
    --black: #111111;

    --text: #3F3F46;
    --text-light: #737373;

    --background: #FAF8FC;
    --light: #F5F1F7;

    --border: #E6DDEB;

    --container: 1180px;

    --transition: 0.3s ease;

    --shadow:
        0 10px 30px rgba(67, 7, 111, 0.10);

    --shadow-lg:
        0 20px 50px rgba(67, 7, 111, 0.16);
}


/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: "DM Sans", sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}


img {
    max-width: 100%;
    display: block;
}


a {
    text-decoration: none;
    color: inherit;
}


button {
    font-family: inherit;
}


.container {
    width: min(92%, var(--container));
    margin: auto;
}


.section {
    padding: 100px 0;
}


/* =====================================================
   TOP BAR
===================================================== */

.top-bar {
    background: var(--primary-deep);
    color: var(--white);
    font-size: 13px;
}


.top-bar-content {
    min-height: 42px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


.top-info {
    display: flex;
    gap: 25px;
}


.top-info span {
    display: flex;
    align-items: center;
    gap: 7px;
}


.top-info i {
    color: var(--gold-light);
}


.top-social {
    display: flex;
    gap: 15px;
}


.top-social a {
    transition: var(--transition);
}


.top-social a:hover {
    color: var(--gold-light);
}


/* =====================================================
   HEADER
===================================================== */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.97);

    border-bottom: 1px solid var(--border);

    transition: var(--transition);
}


.header.scrolled {
    box-shadow: var(--shadow);
}


.nav-container {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =====================================================
   LOGO
===================================================== */

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}


.logo-image {
    width: 58px;
    height: 58px;

    border-radius: 50%;

    overflow: hidden;

    background: var(--white);

    border: 2px solid var(--gold);

    padding: 3px;

    flex-shrink: 0;
}


.logo-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    border-radius: 50%;
}


.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}


.logo-text strong {
    font-family: "Playfair Display", serif;

    color: var(--primary);

    font-size: 17px;

    letter-spacing: 1px;
}


.logo-text span {
    font-size: 13px;

    font-weight: 700;

    color: var(--black);

    letter-spacing: 1px;
}


.logo-text small {
    margin-top: 3px;

    color: var(--text-light);

    font-size: 10px;

    letter-spacing: 1.3px;
}


/* =====================================================
   NAVIGATION
===================================================== */

.navigation {
    display: flex;
    align-items: center;
    gap: 5px;
}


.nav-link {
    position: relative;

    padding: 10px 14px;

    color: var(--text);

    font-size: 14px;

    font-weight: 600;

    transition: var(--transition);
}


.nav-link::after {
    content: "";

    position: absolute;

    left: 14px;
    right: 14px;

    bottom: 3px;

    height: 2px;

    background: var(--primary);

    transform: scaleX(0);

    transition: var(--transition);
}


.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}


.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}


.nav-contact {
    background: var(--primary);

    color: var(--white) !important;

    border-radius: 30px;

    margin-left: 8px;

    padding: 10px 19px;
}


.nav-contact::after {
    display: none;
}


.nav-contact:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}


/* =====================================================
   MOBILE MENU
===================================================== */

.menu-toggle {
    display: none;

    width: 45px;
    height: 45px;

    border: 0;

    background: var(--primary-soft);

    color: var(--primary);

    border-radius: 8px;

    font-size: 20px;

    cursor: pointer;
}


/* =====================================================
   HERO
===================================================== */

.hero {
    position: relative;

    min-height: 720px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            135deg,
            rgba(48, 4, 79, 0.97),
            rgba(106, 13, 173, 0.90)
        );

    color: var(--white);

    overflow: hidden;
}


.hero::before {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    border: 1px solid rgba(255,255,255,0.12);

    border-radius: 50%;

    right: -220px;
    top: -200px;
}


.hero::after {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    border: 1px solid rgba(212,175,55,0.20);

    border-radius: 50%;

    left: -180px;
    bottom: -180px;
}


.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 80% 40%,
            rgba(142,68,173,0.35),
            transparent 40%
        );
}


.hero-content {
    position: relative;

    z-index: 2;

    max-width: 850px;

    text-align: center;

    margin: auto;
}


.hero-logo {
    width: 105px;
    height: 105px;

    padding: 7px;

    margin: 0 auto 25px;

    border-radius: 50%;

    background: var(--white);

    border: 3px solid var(--gold);

    box-shadow:
        0 10px 40px rgba(0,0,0,0.25);
}


.hero-logo img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    border-radius: 50%;
}


.hero-small {
    color: var(--gold-light);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 4px;

    margin-bottom: 12px;
}


.hero h1 {
    font-family: "Playfair Display", serif;

    font-size: clamp(48px, 7vw, 82px);

    line-height: 1.03;

    margin-bottom: 15px;
}


.hero h1 span {
    color: var(--gold-light);
}


.hero-location {
    font-size: 16px;

    font-weight: 600;

    margin-bottom: 20px;

    opacity: 0.95;
}


.hero-description {
    max-width: 680px;

    margin: auto auto 32px;

    font-size: 17px;

    opacity: 0.88;
}


.hero-buttons {
    display: flex;

    justify-content: center;

    gap: 15px;

    flex-wrap: wrap;
}


/* =====================================================
   BUTTONS
===================================================== */

.btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    min-height: 50px;

    padding: 0 25px;

    border-radius: 30px;

    font-size: 14px;

    font-weight: 700;

    border: 2px solid transparent;

    transition: var(--transition);

    cursor: pointer;
}


.btn-primary {
    background: var(--primary);

    color: var(--white);
}


.btn-primary:hover {
    background: var(--primary-dark);

    transform: translateY(-3px);

    box-shadow: var(--shadow);
}


.hero .btn-primary {
    background: var(--gold);

    color: var(--primary-deep);
}


.hero .btn-primary:hover {
    background: var(--gold-light);
}


.btn-outline {
    border-color: rgba(255,255,255,0.65);

    color: var(--white);
}


.btn-outline:hover {
    background: var(--white);

    color: var(--primary);
}


.btn-white {
    background: var(--white);

    color: var(--primary);
}


.btn-white:hover {
    background: var(--gold);

    color: var(--primary-deep);

    transform: translateY(-3px);
}


.full-width {
    width: 100%;
}


/* =====================================================
   HERO SCROLL
===================================================== */

.hero-scroll {
    position: absolute;

    bottom: 28px;
    left: 50%;

    transform: translateX(-50%);

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 5px;

    font-size: 11px;

    opacity: 0.7;

    z-index: 3;
}


.hero-scroll i {
    animation: scrollArrow 1.5s infinite;
}


@keyframes scrollArrow {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }

}


/* =====================================================
   SECTION HEADINGS
===================================================== */

.section-heading {
    max-width: 700px;

    margin-bottom: 50px;
}


.section-heading.center {
    text-align: center;

    margin-left: auto;
    margin-right: auto;
}


.section-label {
    color: var(--primary);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 3px;

    margin-bottom: 10px;
}


.section-heading h2,
.welcome-content h2,
.contact-content h2 {
    font-family: "Playfair Display", serif;

    color: var(--primary-deep);

    font-size: clamp(35px, 5vw, 52px);

    line-height: 1.15;

    margin-bottom: 15px;
}


.section-heading h2 span,
.welcome-content h2 span,
.contact-content h2 span {
    color: var(--primary);
}


.section-heading p {
    color: var(--text-light);

    max-width: 620px;
}


.section-heading.center p {
    margin-left: auto;
    margin-right: auto;
}


.section-line {
    width: 65px;
    height: 3px;

    background: var(--gold);

    margin: 20px 0;
}


/* =====================================================
   WELCOME
===================================================== */

.welcome {
    background: var(--white);
}


.welcome-grid {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 80px;

    align-items: center;
}


.welcome-image {
    position: relative;

    min-height: 430px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(
            135deg,
            var(--primary-soft),
            #ffffff
        );

    border-radius: 20px;

    overflow: hidden;
}


.welcome-image::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    border: 2px solid rgba(106,13,173,0.12);

    border-radius: 50%;
}


.welcome-image img {
    width: 220px;
    height: 220px;

    object-fit: contain;

    position: relative;

    z-index: 2;

    border-radius: 50%;

    background: var(--white);

    padding: 12px;

    box-shadow: var(--shadow-lg);
}


.welcome-badge {
    position: absolute;

    right: 25px;
    bottom: 25px;

    padding: 13px 20px;

    background: var(--primary);

    color: var(--white);

    border-radius: 10px;

    display: flex;

    flex-direction: column;

    text-align: center;

    line-height: 1.2;

    box-shadow: var(--shadow);
}


.welcome-badge strong {
    font-size: 13px;

    letter-spacing: 2px;
}


.welcome-badge span {
    color: var(--gold-light);

    font-size: 11px;

    letter-spacing: 3px;
}


.welcome-content > p:not(.section-label) {
    margin-bottom: 17px;

    color: var(--text-light);
}


.text-link {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-top: 10px;

    color: var(--primary);

    font-weight: 700;
}


.text-link:hover {
    color: var(--primary-dark);

    gap: 13px;
}


/* =====================================================
   ABOUT
===================================================== */

.about {
    background: var(--background);
}


.about-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}


.about-card {
    background: var(--white);

    padding: 30px 24px;

    border-radius: 15px;

    border: 1px solid var(--border);

    transition: var(--transition);
}


.about-card:hover {
    transform: translateY(-7px);

    box-shadow: var(--shadow);

    border-color: rgba(106,13,173,0.25);
}


.about-icon {
    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--primary-soft);

    color: var(--primary);

    border-radius: 12px;

    font-size: 22px;

    margin-bottom: 20px;
}


.about-card h3 {
    font-family: "Playfair Display", serif;

    font-size: 22px;

    color: var(--primary-deep);

    margin-bottom: 10px;
}


.about-card p {
    color: var(--text-light);

    font-size: 14px;
}


/* =====================================================
   FEATURED SERMON
===================================================== */

.featured-sermon {
    background: var(--primary-deep);

    color: var(--white);
}


.featured-sermon .section-heading h2 {
    color: var(--white);
}


.featured-sermon .section-heading p {
    color: rgba(255,255,255,0.7);
}


.featured-sermon .section-label {
    color: var(--gold-light);
}


.featured-grid {
    display: grid;

    grid-template-columns: 1.2fr 0.8fr;

    gap: 55px;

    align-items: center;
}


.video-container {
    position: relative;

    overflow: hidden;

    border-radius: 18px;

    background: #000;

    box-shadow: 0 20px 50px rgba(0,0,0,0.3);

    aspect-ratio: 16 / 9;
}


.video-container iframe {
    width: 100%;
    height: 100%;

    border: 0;
}


.sermon-tag {
    display: inline-block;

    color: var(--gold-light);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 12px;
}


.featured-content h3 {
    font-family: "Playfair Display", serif;

    font-size: 34px;

    margin-bottom: 18px;
}


.featured-content p {
    color: rgba(255,255,255,0.72);

    margin-bottom: 15px;
}


.featured-content .sermon-speaker {
    color: var(--white);

    font-weight: 700;

    margin-bottom: 2px;
}


.sermon-speaker i {
    color: var(--gold-light);

    margin-right: 7px;
}


/* =====================================================
   SERMONS
===================================================== */

.sermons {
    background: var(--white);
}


.sermon-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}


.sermon-card {
    position: relative;

    padding: 35px;

    border-radius: 16px;

    border: 1px solid var(--border);

    background: var(--white);

    overflow: hidden;

    transition: var(--transition);
}


.sermon-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: var(--primary);
}


.sermon-card:hover {
    transform: translateY(-7px);

    box-shadow: var(--shadow);
}


.sermon-card-icon {
    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--primary-soft);

    color: var(--primary);

    border-radius: 50%;

    margin-bottom: 22px;

    font-size: 21px;
}


.sermon-card > span {
    font-size: 10px;

    font-weight: 800;

    color: var(--primary);

    letter-spacing: 2px;
}


.sermon-card h3 {
    font-family: "Playfair Display", serif;

    font-size: 25px;

    color: var(--primary-deep);

    margin: 8px 0 12px;
}


.sermon-card p {
    color: var(--text-light);

    font-size: 14px;

    margin-bottom: 22px;
}


.sermon-card a,
.news-content a {
    color: var(--primary);

    font-size: 13px;

    font-weight: 700;

    display: inline-flex;

    align-items: center;

    gap: 8px;
}


/* =====================================================
   NEWS
===================================================== */

.news {
    background: var(--background);
}


.news-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}


.news-card {
    display: grid;

    grid-template-columns: 75px 1fr;

    gap: 22px;

    background: var(--white);

    border: 1px solid var(--border);

    padding: 25px;

    border-radius: 15px;

    transition: var(--transition);
}


.news-card:hover {
    transform: translateY(-5px);

    box-shadow: var(--shadow);
}


.news-date {
    width: 70px;
    height: 78px;

    background: var(--primary);

    color: var(--white);

    border-radius: 10px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;
}


.news-date strong {
    font-family: "Playfair Display", serif;

    font-size: 26px;

    line-height: 1;
}


.news-date span {
    color: var(--gold-light);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-top: 5px;
}


.news-category {
    color: var(--primary);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.news-content h3 {
    color: var(--primary-deep);

    font-family: "Playfair Display", serif;

    font-size: 21px;

    margin: 5px 0 7px;
}


.news-content p {
    color: var(--text-light);

    font-size: 13px;

    margin-bottom: 13px;
}


/* =====================================================
   LEADERSHIP
===================================================== */

.leadership {
    background: var(--white);
}


.leaders-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 28px;
}


.leader-card {
    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 18px;

    overflow: hidden;

    transition: var(--transition);
}


.leader-card:hover {
    transform: translateY(-7px);

    box-shadow: var(--shadow);
}


.leader-image {
    height: 350px;

    background: var(--primary-soft);

    overflow: hidden;
}


.leader-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}


.leader-card:hover .leader-image img {
    transform: scale(1.04);
}


.leader-info {
    padding: 24px;
}


.leader-info span {
    font-size: 10px;

    color: var(--primary);

    font-weight: 800;

    letter-spacing: 2px;
}


.leader-info h3 {
    font-family: "Playfair Display", serif;

    font-size: 24px;

    color: var(--primary-deep);

    margin: 5px 0;
}


.leader-info p {
    color: var(--text-light);

    font-size: 13px;
}


/* =====================================================
   SERVICES
===================================================== */

.services {
    background: var(--background);
}


.services-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}


.service-card {
    text-align: center;

    background: var(--white);

    border: 1px solid var(--border);

    padding: 32px 22px;

    border-radius: 16px;

    transition: var(--transition);
}


.service-card:hover {
    background: var(--primary);

    color: var(--white);

    transform: translateY(-6px);

    box-shadow: var(--shadow-lg);
}


.service-icon {
    width: 62px;
    height: 62px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: 0 auto 18px;

    border-radius: 50%;

    background: var(--primary-soft);

    color: var(--primary);

    font-size: 23px;
}


.service-card:hover .service-icon {
    background: rgba(255,255,255,0.14);

    color: var(--gold-light);
}


.service-card h3 {
    font-family: "Playfair Display", serif;

    color: var(--primary-deep);

    font-size: 21px;

    margin-bottom: 10px;
}


.service-card:hover h3 {
    color: var(--white);
}


.service-card p {
    color: var(--text-light);

    font-size: 13px;

    margin-bottom: 15px;
}


.service-card:hover p {
    color: rgba(255,255,255,0.78);
}


.service-card span {
    color: var(--primary);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;
}


.service-card:hover span {
    color: var(--gold-light);
}


/* =====================================================
   CTA
===================================================== */

.cta {
    position: relative;

    padding: 110px 0;

    background:
        linear-gradient(
            135deg,
            var(--primary-deep),
            var(--primary)
        );

    color: var(--white);

    text-align: center;

    overflow: hidden;
}


.cta::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 50%;

    left: -200px;
    top: -200px;
}


.cta-content {
    position: relative;

    z-index: 2;

    max-width: 700px;
}


.cta-logo {
    width: 85px;
    height: 85px;

    background: var(--white);

    border: 3px solid var(--gold);

    padding: 5px;

    border-radius: 50%;

    margin: 0 auto 25px;
}


.cta-logo img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    border-radius: 50%;
}


.cta .section-label {
    color: var(--gold-light);
}


.cta h2 {
    font-family: "Playfair Display", serif;

    font-size: clamp(38px, 5vw, 55px);

    line-height: 1.1;

    margin-bottom: 18px;
}


.cta h2 span {
    color: var(--gold-light);
}


.cta p:not(.section-label) {
    color: rgba(255,255,255,0.78);

    margin-bottom: 28px;
}


/* =====================================================
   CONTACT
===================================================== */

.contact {
    background: var(--white);
}


.contact-grid {
    display: grid;

    grid-template-columns: 1fr 0.8fr;

    gap: 80px;

    align-items: center;
}


.contact-content > p:not(.section-label) {
    color: var(--text-light);

    max-width: 600px;

    margin-bottom: 30px;
}


.contact-items {
    display: grid;

    gap: 22px;
}


.contact-item {
    display: flex;

    align-items: flex-start;

    gap: 15px;
}


.contact-icon {
    width: 45px;
    height: 45px;

    background: var(--primary-soft);

    color: var(--primary);

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    flex-shrink: 0;
}


.contact-item strong {
    color: var(--primary-deep);

    font-size: 14px;
}


.contact-item p {
    color: var(--text-light);

    font-size: 13px;

    line-height: 1.5;
}


.contact-card {
    padding: 40px;

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            var(--primary-deep),
            var(--primary)
        );

    color: var(--white);

    text-align: center;

    box-shadow: var(--shadow-lg);
}


.contact-card-logo {
    width: 100px;
    height: 100px;

    padding: 7px;

    border-radius: 50%;

    background: var(--white);

    border: 3px solid var(--gold);

    margin: 0 auto 20px;
}


.contact-card-logo img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    border-radius: 50%;
}


.contact-card h3 {
    font-family: "Playfair Display", serif;

    font-size: 25px;
}


.contact-card > p {
    color: rgba(255,255,255,0.7);

    font-size: 13px;
}


.contact-divider {
    width: 60px;
    height: 2px;

    background: var(--gold);

    margin: 22px auto;
}


.contact-address {
    margin-bottom: 25px;
}


/* =====================================================
   FOOTER
===================================================== */

.footer {
    background: #25033D;

    color: var(--white);
}


.footer-grid {
    padding: 70px 0;

    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1fr;

    gap: 50px;
}


.footer-logo {
    width: 75px;
    height: 75px;

    background: var(--white);

    padding: 5px;

    border-radius: 50%;

    border: 2px solid var(--gold);

    margin-bottom: 18px;
}


.footer-logo img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    border-radius: 50%;
}


.footer-brand h3 {
    font-family: "Playfair Display", serif;

    font-size: 22px;

    margin-bottom: 8px;
}


.footer-brand > p {
    max-width: 330px;

    color: rgba(255,255,255,0.65);

    font-size: 13px;
}


.footer-social {
    display: flex;

    gap: 10px;

    margin-top: 22px;
}


.footer-social a {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,0.08);

    color: var(--white);

    transition: var(--transition);
}


.footer-social a:hover {
    background: var(--gold);

    color: var(--primary-deep);
}


.footer-column {
    display: flex;

    flex-direction: column;

    gap: 9px;
}


.footer-column h4 {
    color: var(--gold-light);

    font-size: 13px;

    letter-spacing: 1.5px;

    margin-bottom: 8px;
}


.footer-column a,
.footer-column p {
    color: rgba(255,255,255,0.62);

    font-size: 13px;

    transition: var(--transition);
}


.footer-column a:hover {
    color: var(--gold-light);

    padding-left: 4px;
}


.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
}


.footer-bottom-content {
    min-height: 70px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


.footer-bottom p {
    color: rgba(255,255,255,0.48);

    font-size: 11px;
}


/* =====================================================
   BACK TO TOP
===================================================== */

.back-to-top {
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 48px;
    height: 48px;

    border: none;

    border-radius: 50%;

    background: var(--primary);

    color: var(--white);

    display: flex;

    align-items: center;
    justify-content: center;

    cursor: pointer;

    box-shadow: var(--shadow);

    opacity: 0;

    visibility: hidden;

    transform: translateY(15px);

    transition: var(--transition);

    z-index: 900;
}


.back-to-top.show {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}


.back-to-top:hover {
    background: var(--primary-dark);

    transform: translateY(-3px);
}


/* =====================================================
   RESPONSIVE — TABLET
===================================================== */

@media (max-width: 1050px) {

    .navigation {
        gap: 0;
    }

    .nav-link {
        padding: 9px 9px;
        font-size: 13px;
    }

    .about-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .welcome-grid {
        gap: 45px;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }

}


/* =====================================================
   RESPONSIVE — MOBILE
===================================================== */

@media (max-width: 850px) {

    .top-info span:last-child {
        display: none;
    }


    .top-bar-content {
        justify-content: center;
    }


    .top-social {
        display: none;
    }


    .menu-toggle {
        display: flex;

        align-items: center;
        justify-content: center;
    }


    .navigation {
        position: absolute;

        top: 82px;
        left: 0;

        width: 100%;

        padding: 15px;

        background: var(--white);

        border-top: 1px solid var(--border);

        box-shadow: var(--shadow);

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 4px;

        opacity: 0;

        visibility: hidden;

        transform: translateY(-10px);

        transition: var(--transition);
    }


    .navigation.open {
        opacity: 1;

        visibility: visible;

        transform: translateY(0);
    }


    .nav-link {
        padding: 13px 15px;

        border-radius: 8px;
    }


    .nav-link::after {
        display: none;
    }


    .nav-link:hover,
    .nav-link.active {
        background: var(--primary-soft);
    }


    .nav-contact {
        margin-left: 0;

        text-align: center;

        margin-top: 5px;
    }


    .hero {
        min-height: 670px;
    }


    .welcome-grid,
    .featured-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }


    .welcome-image {
        min-height: 350px;
    }


    .featured-grid {
        gap: 35px;
    }


    .sermon-grid,
    .news-grid,
    .leaders-grid {
        grid-template-columns: 1fr;
    }


    .leader-image {
        height: 400px;
    }


    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

}


/* =====================================================
   RESPONSIVE — SMALL MOBILE
===================================================== */

@media (max-width: 550px) {

    .section {
        padding: 70px 0;
    }


    .logo-text strong {
        font-size: 14px;
    }


    .logo-text span {
        font-size: 11px;
    }


    .logo-text small {
        font-size: 8px;
    }


    .logo-image {
        width: 50px;
        height: 50px;
    }


    .hero {
        min-height: 650px;
    }


    .hero-logo {
        width: 85px;
        height: 85px;
    }


    .hero h1 {
        font-size: 46px;
    }


    .hero-description {
        font-size: 15px;
    }


    .hero-buttons {
        flex-direction: column;

        width: 100%;
    }


    .hero-buttons .btn {
        width: 100%;
    }


    .about-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }


    .news-card {
        grid-template-columns: 65px 1fr;

        padding: 20px;

        gap: 15px;
    }


    .news-date {
        width: 60px;
        height: 70px;
    }


    .news-date strong {
        font-size: 23px;
    }


    .footer-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }


    .footer-bottom-content {
        flex-direction: column;

        justify-content: center;

        text-align: center;

        padding: 18px 0;
    }


    .contact-card {
        padding: 30px 20px;
    }


    .back-to-top {
        right: 15px;
        bottom: 15px;
    }

}