﻿/* ================= GLOBAL RESET ================= */

:root {
  --primary: #8403fc;
  --secondary: #4c019a;
  --dark: #18003a;
  --white: #ffffff;
  --card-bg: rgba(255, 255, 255, 0.05); /* Glass effect */
  --card-back-bg: rgba(0, 0, 0, 0.6);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background: white;
    color: var(--white);
}

/* ================= HEADER ================= */

.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
    background: rgba(38, 38, 39, 0.6);
    border-bottom: 1px solid rgba(132, 3, 252, 0.2);
    transition: 0.3s ease;
}

.nav-container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo img {
    height: 40px;
}

.nav {
    display: flex;
    gap: 35px;
}

.nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: 0.3s;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: 0.3s ease;
}

.nav a:hover {
    color: var(--primary);
}

.nav a:hover::after {
    width: 100%;
}
.hero-message{
    max-width:700px;
    line-height:1.7;
    font-size:18px;
}
.fade-left,
.fade-right,
.fade-up {
    opacity: 0;
}

/* Left */
.fade-left {
    animation: fadeLeft 1.2s ease forwards;
}

/* Right */
.fade-right {
    animation: fadeRight 1.2s ease forwards;
    animation-delay: 0.6s;
}

/* Up */
.fade-up {
    animation: fadeUp 1.2s ease forwards;
    animation-delay: 1.3s;
}

@keyframes fadeLeft {
    from {opacity:0; transform:translateX(-60px);}
    to {opacity:1; transform:translateX(0);}
}

@keyframes fadeRight {
    from {opacity:0; transform:translateX(60px);}
    to {opacity:1; transform:translateX(0);}
}

@keyframes fadeUp {
    from {opacity:0; transform:translateY(40px);}
    to {opacity:1; transform:translateY(0);}
}
/* ================= HERO ================= */

.hero {
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: -2;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.65),
         rgba(53, 4, 109, 0.75),
        rgba(175, 155, 198, 0.75)
    );
    z-index: -1;
}

/* ================= HERO CONTENT ================= */

.hero-content {
    z-index: 2;
    max-width: 900px;
    padding: 20px;
}

.welcome {
    letter-spacing: 4px;
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 20px;
}

/* Handwritten Church Name */
.church-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 110px;
    font-weight: 800;
    line-height: 0.96;
    letter-spacing: -0.05em;
    margin-bottom: 20px;

    background: linear-gradient(to right, var(--white), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    text-shadow: 0 10px 40px rgba(132, 3, 252, 0.3);
}

/* Supporting Paragraph */
.hero-message {
    max-width: 650px;
    margin: 20px auto 0;
    font-size: 16px;
    line-height: 1.8;
    font-weight: 300;
    opacity: 0.85;
    letter-spacing: 0.5px;
}

/* ================= SCROLL INDICATOR ================= */

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary);
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.scroll-indicator span {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    margin-top: 8px;
    animation: bounce 1.5s infinite;
}

@keyframes bounce {
    0% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(15px); opacity: 0.5; }
    100% { transform: translateY(0); opacity: 1; }
}

/* ================= MOBILE ================= */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
}

@media (max-width: 900px) {

    .nav {
        position: absolute;
        top: 80px;
        right: -100%;
        background: rgba(24, 0, 58, 0.95);
        flex-direction: column;
        width: 100%;
        text-align: center;
        padding: 40px 0;
        transition: 0.4s ease;
    }

    .nav.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .church-name {
        font-size: 60px;
    }

    .hero-message {
        font-size: 14px;
        padding: 0 20px;
    }
}



/* SECTION */
.groups-section {
  background: #dedede;
  padding: 100px 40px;
  font-family: 'Segoe UI', sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.mini-title {
  font-size: 14px;
  letter-spacing: 3px;
  color: #333;
  display: block;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin: 0;
  color: #18003a;
}

.circle {
  position: relative;
  display: inline-block;
}

.circle::after {
  content: "";
  position: absolute;
  width: 110%;
  height: 140%;
  border: 2px solid #7aa6a1;
  border-radius: 50%;
  top: -10%;
  left: -5%;
}

.underline {
  width: 40px;
  height: 3px;
  background: #111;
  margin: 20px auto 0;
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 400px;
  cursor: pointer;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card:hover img {
  transform: scale(1.08);
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.card-content {
  position: absolute;
  bottom: 30px;
  left: 25px;
  right: 25px;
  color: white;
  z-index: 2;
}

.card-content h3 {
  font-size: 26px;
  margin-bottom: 15px;
}

.card-content p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* BUTTON */
.btn {
  display: inline-block;
  padding: 10px 22px;
  border: 2px solid white;
  border-radius: 30px;
  text-decoration: none;
  color: white;
  font-size: 13px;
  letter-spacing: 1px;
  transition: 0.3s ease;
}

.btn:hover {
  background: white;
  color: black;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .cards {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 32px;
  }
}


/* ================= CARE SECTION ================= */

/* SECTION */

.weekly-activities{

padding:60px 0;
background:#ffffff;
overflow:hidden;

}

/* HEADING */

.weekly-heading{

text-align:center;
margin-bottom:40px;
font-size:28px;
font-weight:700;
color: #180032;
}

/* MARQUEE CONTAINER */

.weekly-marquee{

overflow:hidden;
position:relative;

}

/* TRACK */

.weekly-track{

display:flex;
gap:60px;

animation:scrollWeekly 25s linear infinite;

}

/* ITEM */

.weekly-item{

min-width:250px;

background: linear-gradient(
        to bottom,
        rgb(124, 19, 245),
         rgb(124, 19, 245),
        rgb(124, 19, 245)
    );

padding:20px;

border-radius:10px;

box-shadow:0 10px 25px rgba(0,0,0,0.08);

}

/* TOP */

.top-line{

display:flex;
align-items:center;
gap:10px;

}

/* ICON */

.icon-box img{

width:35px;

}

/* TIME */

.time{

margin-top:12px;
font-size:14px;

}

/* ANIMATION */

@keyframes scrollWeekly{

0%{

transform:translateX(0);

}

100%{

transform:translateX(-50%);

}

}
/* ===============================
FADE IN ANIMATION
================================ */

.fade-in{
opacity:0;
transform:translateY(60px);
transition:all 1s ease;
}

.fade-in.show{
opacity:1;
transform:translateY(0);
}


/* optional stagger effect */

.fade-delay-1{
transition-delay:0.2s;
}

.fade-delay-2{
transition-delay:0.4s;
}

.fade-delay-3{
transition-delay:0.6s;
}
/* ================================
ABOUT SECTION
================================ */

.pgi-about-section{
background:linear-gradient(180deg, #0b0b0b 0%, #10071d 100%);
color:white;
padding:110px 8%;
}

/* Container */

.pgi-about-container{
max-width:1200px;
margin:auto;
}

/* ================================
PROPHET SECTION
================================ */

.pgi-prophet{
display:flex;
gap:60px;
align-items:center;
margin-bottom:100px;
padding:36px;
border-radius:28px;
background:linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.015) 100%);
border:1px solid rgba(255,255,255,0.07);
box-shadow:0 24px 50px rgba(0,0,0,0.22);
}

/* Image */
/* Image container */

.pgi-about-image{
position:relative;
display:inline-block;
}

/* Prophet image */

.pgi-about-image img{
width:360px;
height:460px;
border-radius:18px;
object-fit:cover;
position:relative;
z-index:2;
box-shadow:0 18px 40px rgba(0,0,0,0.3);
cursor:zoom-in;
}

/* Decorative square behind */

.pgi-about-image::before{
content:"";
position:absolute;
width:100%;
height:100%;
border:2px solid rgba(132, 3, 252, 0.9);
top:-18px;
left:-18px;
border-radius:18px;
z-index:1;
}
.pgi-about-image{
animation:floatImage 6s ease-in-out infinite;
}

@keyframes floatImage{
0%{transform:translateY(0px);}
50%{transform:translateY(-10px);}
100%{transform:translateY(0px);}
}
/* Prophet Content */

.pgi-about-content h2{
font-size:46px;
font-weight:700;
margin-bottom:18px;
line-height:1.08;
letter-spacing:-0.02em;
}

.pgi-about-content p{
font-size:17px;
line-height:1.7;
margin-bottom:16px;
max-width:520px;
opacity:0.86;
color:rgba(255,255,255,0.84);
}

/* ================================
CHURCH SECTION
================================ */

.pgi-church{
text-align:center;
max-width:650px;
margin:auto;
padding:34px 38px;
border-radius:24px;
background:linear-gradient(180deg, rgba(132,3,252,0.1) 0%, rgba(255,255,255,0.02) 100%);
border:1px solid rgba(255,255,255,0.07);
}

.pgi-church h3{
font-size:34px;
margin-bottom:20px;
letter-spacing:-0.01em;
}

.pgi-church p{
font-size:16px;
line-height:1.7;
margin-bottom:15px;
opacity:0.82;
color:rgba(255,255,255,0.82);
}

.pgi-church-photo{
width:100%;
max-width:520px;
height:230px;
margin:0 auto 20px;
border-radius:22px;
cursor:zoom-in;
}

/* ================================
BUTTONS
================================ */

.pgi-btn,
.pgin-btn{
padding:14px 26px;
border:none;
border-radius:999px;
font-weight:600;
cursor:pointer;
margin-top:15px;
transition:all 0.3s ease;
display:inline-flex;
align-items:center;
justify-content:center;
text-decoration:none;
}

.pgi-btn{
background:linear-gradient(135deg, #8403fc 0%, #5a06c8 100%);
color:white;
box-shadow:0 12px 24px rgba(132,3,252,0.25);
}

.pgin-btn{
background:transparent;
border:1.5px solid rgba(255,255,255,0.3);
color:white;
}

.pgi-btn:hover{
transform:translateY(-2px);
box-shadow:0 16px 28px rgba(132,3,252,0.32);
}

.pgin-btn:hover{
background:white;
color:black;
}

/* ================================
RESPONSIVE
================================ */

@media(max-width:900px){

.pgi-prophet{
flex-direction:column;
text-align:center;
padding:26px;
}

.pgi-about-image img{
width:280px;
height:360px;
}

.pgi-about-content h2{
font-size:36px;
}

.pgi-church{
padding:28px 22px;
}

.pgi-church-photo{
height:190px;
}

}

/* ================================
MISSION & VISION HERO
================================ */

.pgi-hero-section{
position:relative;
isolation:isolate;
padding:140px 8%;
color:white;
overflow:hidden;
}

.pgi-hero-section::before{
content:"";
position:fixed;
inset:0;
background:url("photo_21_2026-03-06_18-27-42.webp") center/cover no-repeat;
z-index:-1;
}

/* dark overlay */

.pgi-hero-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.65);
z-index:1;
}

/* container */

.pgi-hero-container{
position:relative;
z-index:2;

max-width:1200px;
margin:auto;

display:flex;
justify-content:space-between;
gap:80px;
}

/* mission / vision boxes */

.pgi-hero-box{
flex:1;
max-width:520px;
}

/* titles */

.pgi-hero-box h2{
font-size:44px;
margin-bottom:20px;
font-weight:700;
}

/* text */

.pgi-hero-box p{
font-size:18px;
line-height:1.8;
opacity:0.9;
}
/* HERO SECTION */

/* =========================
FADE ANIMATIONS
========================= */

.fade-left,
.fade-right{
opacity:0;
transition:all 1s ease;
}

.fade-left{
transform:translateX(-60px);
}

.fade-right{
transform:translateX(60px);
}

.fade-show{
opacity:1;
transform:translateX(0);
}

/* Disable fade animations in Mission/Vision hero section */
.pgi-hero-section .fade-left,
.pgi-hero-section .fade-right{
opacity:1;
transform:none;
transition:none;
}

/* ================================
RESPONSIVE
================================ */

@media(max-width:900px){

.pgi-hero-container{
flex-direction:column;
gap:60px;
text-align:center;
}

.pgi-hero-box{
margin:auto;
}

.pgi-hero-box h2{
font-size:34px;
}

.pgi-hero-box p{
font-size:16px;
}

}

/* ==============================
   MOBILE RESPONSIVE
   ============================== */

@media (max-width:768px){

.pgi-hero-content h1{
font-size:34px;
}

.pgi-hero-content p{
font-size:16px;
}

.pgi-hero-section{
padding:100px 20px;
}

}

/* =========================
   PGI EVENTS SECTION
========================= */

.pgi-events-section{

padding:110px 8%;
background:
radial-gradient(circle at top center, rgba(132,3,252,0.08), transparent 26%),
linear-gradient(180deg, #faf8ff 0%, #f4efff 100%);
text-align:center;
color:#333;
}

.pgi-events-header h2{

font-family:'DM Serif Display', serif;
font-size:48px;
margin-bottom:60px;
font-weight:400;
letter-spacing:-0.02em;
color:#16072d;
}

/* GRID */

.pgi-events-container{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:26px;
max-width:1240px;
margin:auto;

}

/* CARD */

.pgi-event-card{

opacity:0;
transform:translateY(40px);
transition:all 0.8s ease;
background:rgba(255,255,255,0.82);
border-radius:24px;
padding:0 0 28px;
overflow:hidden;
box-shadow:0 18px 42px rgba(24,0,58,0.08);
border:1px solid rgba(76,1,154,0.06);

}

.pgi-event-card.show{

opacity:1;
transform:translateY(0);

}

/* IMAGE */

.pgi-event-image{

position:relative;
overflow:hidden;
border-radius:24px 24px 0 0;

}

.pgi-event-image img{

width:100%;
display:block;
height:280px;
object-fit:cover;

}

/* LABEL OVER IMAGE */

.pgi-event-label{

position:absolute;
bottom:20px;
left:50%;
transform:translateX(-50%);

background:rgba(255,255,255,0.88);
backdrop-filter:blur(10px);
color:#18003a;

padding:16px 22px;
text-align:center;
width:calc(100% - 40px);
border-radius:18px;
box-shadow:0 12px 28px rgba(24,0,58,0.12);

}

.pgi-event-label h3{

margin:0;
font-size:22px;
font-weight:700;
letter-spacing:-0.02em;

}

.pgi-event-label span{

display:block;
margin-top:6px;
font-size:12px;
opacity:0.9;
text-transform:uppercase;
letter-spacing:0.12em;
color:#7a34ea;

}

/* TEXT */

.pgi-event-card p{

margin-top:28px;
padding:0 24px;
font-size:15px;
line-height:1.75;
color:#5d5670;

}

/* LINK */

.pgi-event-link{

display:inline-block;
margin-top:20px;

text-decoration:none;
font-size:13px;
font-weight:700;
color:#6f24e5;
letter-spacing:0.12em;
text-transform:uppercase;
border-bottom:2px solid rgba(111,36,229,0.22);
padding-bottom:4px;

}

/* =========================
   TABLET
========================= */

@media(max-width:992px){

.pgi-events-container{
grid-template-columns:1fr 1fr;
}

}

/* =========================
   MOBILE
========================= */

@media(max-width:600px){

.pgi-events-container{
grid-template-columns:1fr;
}

.pgi-events-header h2{
font-size:36px;
}

.pgi-event-label{
width:85%;
}

}


/* ============================
PGI GROUPS SECTION
============================ */

.pgi-groups-section{
background:#0b0b0b;
color:white;
padding:60px 8%;
overflow:hidden;
}


/* ============================
CONTAINER
============================ */

.pgi-groups-container{
display:flex;
align-items:center;
justify-content:space-between;
max-width:1200px;
margin:auto;
gap:60px;
}


/* ============================
LEFT CONTENT
============================ */

.pgi-groups-left{
flex:1;
}

.pgi-groups-left h2{
font-size:56px;
font-weight:800;
margin-bottom:20px;
}

.pgi-groups-left span{
color:var(--primary);
}

.pgi-groups-left p{
max-width:500px;
line-height:1.7;
margin-bottom:40px;
opacity:.85;
}


/* ============================
BUTTONS
============================ */

.pgi-groups-buttons{
display:flex;
flex-direction:column;
gap:15px;
}

.pgi-group-btn{
 width: 199.2px;

display:inline-block;
padding:16px 28px;

border:2px solid white;
border-radius:12px;

text-decoration:none;
color:white;

font-weight:600;
transition:.3s;

}

.pgi-group-btn:hover{
background:white;
color:black;
}


/* ============================
RIGHT PHOTO AREA
============================ */

.pgi-groups-right{

flex:1;
position:relative;
height:420px;

}

.pgi-groups-marquee,
.pgi-groups-track{
height:100%;
}


/* ============================
POLAROID STYLE
============================ */

.pgi-photo{

position:absolute;

background:white;
padding:10px;

box-shadow:0 10px 30px rgba(0,0,0,0.5);
border-radius:4px;

transition:.4s;

}

.pgi-photo img{

width:260px;
height:180px;

object-fit:cover;
display:block;

}


/* ============================
PHOTO POSITIONS
============================ */

.pgi-photo1{

top:20px;
right:120px;

transform:rotate(-8deg);

}

.pgi-photo2{

top:150px;
right:260px;

transform:rotate(6deg);

}

.pgi-photo3{

top:120px;
right:40px;

transform:rotate(-5deg);

}

.pgi-photo4{

bottom:0;
right:100px;

transform:rotate(8deg);

}


/* ============================
HOVER EFFECT
============================ */

.pgi-photo:hover{

transform:scale(1.05) rotate(0deg);
z-index:5;

}


/* ============================
TABLET
============================ */

@media (max-width:1000px){

.pgi-groups-container{
flex-direction:column;
text-align:center;
}

.pgi-groups-right{
margin-top:60px;
height:350px;
}

}


/* ============================
MOBILE MARQUEE
============================ */

@media (max-width:700px){

.pgi-groups-section{
padding-left:0;
padding-right:0;
}

.pgi-groups-container{
gap:35px;
max-width:none;
}

.pgi-groups-left{
width:100%;
padding:0 8%;
}

.pgi-groups-right{
position:relative;
width:100%;
flex:none;
height:auto;
margin-top:0;
padding-right:0;
opacity:1;
transform:none;
animation:none;
}

.pgi-groups-marquee{
width:100%;
overflow:hidden;
padding:8px 0;
}

.pgi-groups-track{
display:flex;
align-items:center;
gap:20px;
width:max-content;
will-change:transform;
animation:pgi-mobile-marquee 20s linear infinite;
}


.pgi-photo{

position:relative;
top:auto;
right:auto;
bottom:auto;
left:auto;
transform:none !important;
flex:0 0 auto;
padding:8px;
}


.pgi-photo img{

width:220px;
height:150px;
}

.pgi-groups-right.fade-right,
.pgi-groups-right.fade-show{
opacity:1;
transform:none;
}

.pgi-groups-track:hover{
animation-play-state:paused;
}

@keyframes pgi-mobile-marquee{
0%{
transform:translateX(0);
}

100%{
transform:translateX(calc(-50% - 10px));
}
}

}


/* ============================
SMALL MOBILE
============================ */

@media (max-width:500px){

.pgi-groups-left h2{
font-size:34px;
}

.pgi-groups-track{
gap:16px;
}

.pgi-photo img{
width:200px;
height:140px;
}

}


/* ===============================
   FOOTER BASE
================================== */

.church-footer {

    --text-primary: #ffffff;
    --text-secondary: #cbb6ff;
    --accent-color: #a855f7;
    --accent-glow: rgba(168,85,247,0.4);
    --border-color: rgba(255,255,255,0.1);
    --transition-speed: 0.3s;

    width: 100%;
    margin: 0;
    border-radius: 0;

    background: linear-gradient(-45deg, #8403fe, #4c019a, #180032, #4c019a);
    background-size: 400% 400%;
    animation: gradientMove 15s ease infinite;

    color: var(--text-primary);
    padding: 80px 5% 40px;

    position: relative;
    overflow: hidden;

    border-top: 1px solid var(--border-color);

    font-family: 'Inter', sans-serif;
}

.church-footer,
.church-footer * {
    box-sizing: border-box;
}

.church-footer h3,
.church-footer p,
.church-footer ul {
    margin: 0;
    padding: 0;
}


/* ===============================
   LOGO
================================== */

.footer-logo {
    width: 120px;
    height: 120px;

    object-fit: cover;
    border-radius: 50%;

    display: block;
    margin-bottom: 25px;

    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards;
}


/* ===============================
   AMBIENT GLOW
================================== */

.church-footer::before {
    content: "";

    position: absolute;
    top: -50%;
    left: -10%;

    width: 500px;
    height: 500px;

    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);

    opacity: 0.25;
    z-index: 0;

    pointer-events: none;
}


/* ===============================
   FOOTER GRID
================================== */

.footer-content {
    position: relative;
    z-index: 1;

    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;

    gap: 20px;
    margin-bottom: 40px;
}


/* ===============================
   BRAND
================================== */

.footer-brand p {
    color: var(--text-secondary);

    line-height: 1.6;
    margin-bottom: 30px;

    font-size: 0.95rem;

    opacity: 0;
    transform: translateY(20px);

    animation: fadeUp 0.8s ease 0.2s forwards;
}


/* ===============================
   CONTACT INFO
================================== */

.contact-info {
    list-style: none;
    margin-bottom: 30px;
}

.contact-info li {

    display: flex;
    align-items: center;

    margin-bottom: 15px;

    color: var(--text-secondary);
    font-size: 0.9rem;

    transition: all var(--transition-speed);

    opacity: 0;
    transform: translateX(-20px);

    animation: slideRight 0.8s ease forwards;
}

.contact-info li:nth-child(1) { animation-delay: 0.4s; }
.contact-info li:nth-child(2) { animation-delay: 0.5s; }
.contact-info li:nth-child(3) { animation-delay: 0.6s; }

.contact-info li i {

    width: 30px;
    height: 30px;

    background: rgba(255,255,255,0.05);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-right: 12px;

    color: var(--accent-color);
    font-size: 0.8rem;

    transition: all var(--transition-speed);
}

.contact-info li:hover i {
    background: var(--accent-color);
    color: #180032;

    transform: scale(1.1);
    box-shadow: 0 0 15px var(--accent-glow);
}

.contact-info li:hover {
    color: var(--text-primary);
    transform: translateX(5px);
}


/* ===============================
   SOCIAL LINKS
================================== */

.social-links {
    display: flex;
    gap: 15px;

    opacity: 0;
    animation: fadeIn 1s ease 0.8s forwards;
}

.social-btn {

    width: 40px;
    height: 40px;

    border-radius: 12px;

    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--text-secondary);
    text-decoration: none;

    transition: all var(--transition-speed);

    position: relative;
    overflow: hidden;
}

.social-btn::before {

    content: "";
    position: absolute;

    inset: 0;

    background: var(--accent-color);

    transform: translateY(100%);
    transition: transform var(--transition-speed);

    z-index: -1;
}

.social-btn:hover {
    color: #180032;
    border-color: var(--accent-color);

    transform: translateY(-5px);
}

.social-btn:hover::before {
    transform: translateY(0);
}


/* ===============================
   FOOTER LINKS
================================== */

.footer-col h3 {

    font-size: 1.1rem;
    font-weight: 600;

    margin-bottom: 25px;

    color: var(--text-primary);

    position: relative;
    display: inline-block;

    opacity: 0;
    transform: translateY(20px);

    animation: fadeUp 0.8s ease 0.3s forwards;
}

.footer-col h3::after {

    content: "";

    position: absolute;
    bottom: -8px;
    left: 0;

    width: 30px;
    height: 2px;

    background: var(--accent-color);
    transition: width 0.3s ease;
}

.footer-col:hover h3::after {
    width: 100%;
}

.footer-links {
    list-style: none;
}

.footer-links li {

    margin-bottom: 12px;

}

.footer-links a {

    color: var(--text-secondary);
    text-decoration: none;

    font-size: 0.95rem;

    transition: all 0.3s ease;

    position: relative;
    display: inline-block;
}

.footer-links a::before {

    content: "â†’";

    position: absolute;
    left: -15px;

    opacity: 0;

    color: var(--accent-color);

    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-primary);
    padding-left: 15px;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}


/* ===============================
   WORSHIP SECTION
================================== */

.worship-box {
    grid-column: 2 / 5;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    text-align: center;

    margin-top: 20px;
    margin-bottom: 0;
}

.worship-box h2 {

    font-size: 1.6rem;
    margin-bottom: 30px;
}

.worship-grid {

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 60px;
    flex-wrap: wrap;
}

.worship-item {

    display: flex;
    align-items: center;

    gap: 15px;
    text-align: left;
}

.worship-item i {

    font-size: 20px;

    background: rgba(255,255,255,0.08);
    padding: 10px;

    border-radius: 8px;

    color: #ffd54a;
}

.worship-item h4 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.worship-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.visit-btn {

    display: inline-block;

    background: #ffd54a;
    color: #180032;

    padding: 12px 30px;

    border-radius: 8px;

    font-weight: 600;
    text-decoration: none;

    transition: 0.3s;
}

.visit-btn:hover {

    transform: translateY(-3px);

    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}


/* ===============================
FOOTER BOTTOM
================================== */

.footer-bottom {

    border-top: 1px solid var(--border-color);

    padding-top: 30px;

    display: flex;
    justify-content: center;
    align-items: center;

    flex-wrap: wrap;
    gap: 20px;
    transition: all 0.8s ease;
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.designer-credit {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.designer-credit a {
    color: #ffd54a;
    text-decoration: none;
}

.designer-credit a:hover {
    text-decoration: underline;
}


/* ===============================
ANIMATIONS
================================== */

@keyframes fadeUp {

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideRight {

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {

    to {
        opacity: 1;
    }
}

@keyframes gradientMove {

    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


/* ===============================
   RESPONSIVE
================================== */

@media (max-width:1024px) {

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .worship-box {
        grid-column: 1 / -1;
    }
}

@media (max-width:768px) {

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .worship-grid {
        flex-direction: column;
        gap: 30px;
    }
}


.pgi-bible-section{
width:100%;
height:640px;
position:relative;
overflow:hidden;
background:#070b12;
}

.pgi-bible-slide{
position:absolute;
width:100%;
height:100%;
background-size:cover;
background-position:center;
opacity:0;
transition:1s;
}

.pgi-active{
opacity:1;
z-index:2;
}

.pgi-bible-overlay{
position:absolute;
width:100%;
height:100%;
background:linear-gradient(90deg, rgba(5,8,15,0.18) 0%, rgba(5,8,15,0.32) 36%, rgba(5,8,15,0.72) 72%, rgba(5,8,15,0.88) 100%);
}

.pgi-bible-inner{
display:flex;
align-items:center;
height:100%;
max-width:1280px;
margin:auto;
padding:48px;
position:relative;
z-index:2;
}

.pgi-bible-left{
flex:1;
height:100%;
}

.pgi-bible-right{
width:min(480px, 42%);
margin-left:auto;
background:linear-gradient(180deg, rgba(17,24,38,0.76) 0%, rgba(11,16,28,0.94) 100%);
color:white;
padding:44px 42px;
text-align:left;
backdrop-filter:blur(10px);
border-radius:28px;
border:1px solid rgba(255,255,255,0.08);
box-shadow:0 28px 70px rgba(0,0,0,0.35);
}

.pgi-bible-right h2{
font-size:46px;
line-height:1.05;
margin-bottom:22px;
max-width:9ch;
}

.pgi-bible-right p{
font-size:17px;
line-height:1.85;
color:rgba(255,255,255,0.88);
}

.pgi-bible-right span{
display:block;
margin-top:14px;
font-weight:700;
letter-spacing:0.08em;
text-transform:uppercase;
font-size:13px;
color:#e7c8ff;
}

/* arrows */

.pgi-bible-prev,
.pgi-bible-next{
position:absolute;
top:50%;
transform:translateY(-50%);
background:rgba(255,255,255,0.92);
border:none;
width:54px;
height:54px;
padding:0;
font-size:22px;
cursor:pointer;
z-index:10;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 14px 30px rgba(0,0,0,0.22);
}

.pgi-bible-prev{
left:28px;
}

.pgi-bible-next{
right:28px;
}

/* fade animation */

.pgi-fade-section{
opacity:0;
transform:translateY(40px);
transition:1s;
}

.pgi-visible{
opacity:1;
transform:translateY(0);
}

@media (max-width: 1100px){

.pgi-bible-inner{
padding:36px;
}

.pgi-bible-right{
width:min(440px, 46%);
padding:36px 32px;
}

.pgi-bible-right h2{
font-size:38px;
}
}

@media (max-width: 768px){

.pgi-bible-section{
height:760px;
background:#070b12;
}

.pgi-bible-slide{
background-position:center top;
}

.pgi-bible-overlay{
background:linear-gradient(180deg, rgba(5,8,15,0.08) 0%, rgba(5,8,15,0.18) 35%, rgba(5,8,15,0.82) 100%);
}

.pgi-bible-inner{
flex-direction:column;
justify-content:flex-end;
padding:18px;
}

.pgi-bible-left{
width:100%;
flex:1;
height:auto;
}

.pgi-bible-right{
width:100%;
padding:28px 22px 26px;
border-radius:24px;
background:linear-gradient(180deg, rgba(10,15,24,0.78) 0%, rgba(13,18,30,0.96) 100%);
text-align:left;
box-shadow:0 20px 45px rgba(0,0,0,0.35);
border:1px solid rgba(255,255,255,0.08);
}

.pgi-bible-right h2{
font-size:28px;
line-height:1.15;
margin-bottom:16px;
}

.pgi-bible-right p{
font-size:15px;
line-height:1.8;
}

.pgi-bible-right span{
margin-top:12px;
color:#e7c8ff;
letter-spacing:0.04em;
}

.pgi-bible-prev,
.pgi-bible-next{
top:auto;
bottom:24px;
transform:none;
width:46px;
height:46px;
padding:0;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
background:rgba(255,255,255,0.92);
box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

.pgi-bible-prev{
left:18px;
}

.pgi-bible-next{
right:18px;
}
}

/* ===============================
SOCIAL GALLERY
================================== */

.social-gallery-section{
padding:96px 8% 88px;
background:
radial-gradient(circle at top left, rgba(132,3,252,0.14), transparent 28%),
linear-gradient(180deg, #fbf9ff 0%, #f4efff 100%);
}

.social-gallery-container{
max-width:1220px;
margin:auto;
}

.social-gallery-header{
display:flex;
flex-direction:column;
align-items:center;
gap:14px;
margin-bottom:30px;
text-align:center;
}

.social-gallery-kicker{
display:inline-flex;
align-items:center;
padding:8px 14px;
border-radius:999px;
background:rgba(132,3,252,0.1);
color:#7d29f4;
font-size:12px;
font-weight:700;
letter-spacing:0.16em;
text-transform:uppercase;
}

.social-gallery-header h2{
font-family:'Montserrat', sans-serif;
font-size:44px;
line-height:1.06;
max-width:13ch;
color:#17072f;
letter-spacing:-0.03em;
font-weight:800;
}

.social-gallery-header h2 span{
display:block;
font-family:'Great Vibes', cursive;
font-size:54px;
line-height:0.95;
font-weight:400;
letter-spacing:0;
color:#8403fc;
margin-bottom:10px;
}

.social-gallery-header p{
max-width:700px;
font-size:17px;
line-height:1.8;
color:#5d5670;
}

.social-gallery-actions{
display:flex;
flex-wrap:wrap;
gap:14px;
margin-top:6px;
justify-content:center;
}

.social-gallery-btn{
display:inline-flex;
align-items:center;
gap:10px;
padding:14px 22px;
border-radius:999px;
text-decoration:none;
font-weight:700;
transition:all 0.3s ease;
}

.social-gallery-btn-facebook{
background:linear-gradient(135deg, #1877f2 0%, #0f5fd0 100%);
color:#ffffff;
box-shadow:0 14px 30px rgba(24,119,242,0.22);
}

.social-gallery-btn-instagram{
background:linear-gradient(135deg, #fd5949 0%, #d6249f 50%, #285aeb 100%);
color:#ffffff;
box-shadow:0 14px 30px rgba(214,36,159,0.2);
}

.social-gallery-btn-tiktok{
background:linear-gradient(135deg, #111111 0%, #25f4ee 45%, #fe2c55 100%);
color:#ffffff;
box-shadow:0 14px 30px rgba(17,17,17,0.24);
}

.social-gallery-btn:hover{
transform:translateY(-2px);
}

.social-gallery-grid{
display:grid;
grid-template-columns:repeat(2, minmax(0, 1fr));
gap:18px;
margin-top:28px;
}

.social-gallery-card{
position:relative;
height:240px;
border-radius:24px;
overflow:hidden;
box-shadow:0 18px 36px rgba(24,0,58,0.16);
}

.social-gallery-card::after{
content:"";
position:absolute;
inset:0;
background:linear-gradient(180deg, rgba(0,0,0,0.02) 20%, rgba(0,0,0,0.32) 100%);
transition:opacity 0.3s ease;
pointer-events:none;
}

.social-gallery-card:hover::after{
opacity:0.7;
}

.social-gallery-card img{
width:100%;
height:100%;
object-fit:cover;
display:block;
transition:transform 0.45s ease;
cursor:zoom-in;
}

.social-gallery-card video{
width:100%;
height:100%;
object-fit:cover;
display:block;
transition:transform 0.45s ease;
}

.social-gallery-card:hover img,
.social-gallery-card:hover video{
transform:scale(1.06);
}

.gallery-lightbox{
position:fixed;
inset:0;
background:rgba(7, 3, 16, 0.9);
display:none;
align-items:center;
justify-content:center;
padding:24px;
z-index:1400;
}

.gallery-lightbox.active{
display:flex;
}

.gallery-lightbox-content{
max-width:min(1100px, 95vw);
max-height:90vh;
border-radius:18px;
overflow:hidden;
box-shadow:0 24px 70px rgba(0,0,0,0.45);
}

.gallery-lightbox-content img{
display:block;
width:100%;
max-height:90vh;
object-fit:contain;
}

.gallery-lightbox-content video{
display:block;
width:100%;
max-height:90vh;
object-fit:contain;
background:#000000;
}

.gallery-lightbox-media-hidden{
display:none !important;
}

.gallery-lightbox-close{
position:absolute;
top:16px;
right:20px;
width:44px;
height:44px;
border:0;
border-radius:50%;
background:rgba(255,255,255,0.16);
color:#ffffff;
font-size:30px;
line-height:1;
cursor:pointer;
}

.gallery-lightbox-close:hover{
background:rgba(255,255,255,0.28);
}

@media (max-width: 900px){

.social-gallery-section{
padding:72px 5% 68px;
}

.social-gallery-header h2{
font-size:32px;
max-width:none;
}

.social-gallery-header h2 span{
font-size:40px;
margin-bottom:8px;
}

.social-gallery-header p{
font-size:15px;
}

.social-gallery-grid{
grid-template-columns:1fr 1fr;
gap:12px;
}

.social-gallery-card{
height:180px;
border-radius:18px;
}
}

@media (max-width: 560px){

.social-gallery-grid{
grid-template-columns:1fr;
}

.social-gallery-card{
height:200px;
}
}

/* ===============================
SUPPORT FORM
================================== */

.support-form-section{
padding:96px 8% 88px;
background:
radial-gradient(circle at top right, rgba(132,3,252,0.12), transparent 30%),
linear-gradient(180deg, #ffffff 0%, #f8f4ff 100%);
}

.support-form-container{
max-width:1240px;
margin:auto;
display:grid;
grid-template-columns:0.95fr 1.05fr;
gap:38px;
align-items:start;
}

.support-form-copy{
padding-top:18px;
}

.support-form-kicker{
display:inline-flex;
align-items:center;
padding:8px 14px;
border-radius:999px;
background:rgba(132,3,252,0.1);
color:#7c31ef;
font-size:12px;
font-weight:700;
letter-spacing:0.14em;
text-transform:uppercase;
}

.support-form-copy h2{
margin:18px 0 16px;
font-family:'DM Serif Display', serif;
font-size:48px;
line-height:1.05;
letter-spacing:-0.02em;
color:#17072f;
}

.support-form-copy p{
max-width:540px;
font-size:17px;
line-height:1.8;
color:#5d5670;
}

.support-form-points{
display:grid;
gap:16px;
margin-top:28px;
}

.support-form-point{
display:flex;
align-items:flex-start;
gap:14px;
padding:18px 20px;
border-radius:20px;
background:rgba(255,255,255,0.75);
border:1px solid rgba(76,1,154,0.08);
box-shadow:0 14px 32px rgba(24,0,58,0.06);
}

.support-form-point i{
width:42px;
height:42px;
border-radius:14px;
display:flex;
align-items:center;
justify-content:center;
background:#f2e8ff;
color:#7c31ef;
font-size:18px;
flex:0 0 42px;
}

.support-form-point span{
font-size:15px;
line-height:1.7;
color:#3e3555;
}

.support-form-card{
padding:30px;
border-radius:28px;
background:rgba(255,255,255,0.92);
border:1px solid rgba(76,1,154,0.08);
box-shadow:0 24px 60px rgba(24,0,58,0.12);
}

.support-form-grid{
display:grid;
grid-template-columns:repeat(2, minmax(0, 1fr));
gap:18px;
}

.support-form-card label{
display:flex;
flex-direction:column;
gap:9px;
}

.support-form-card label span{
font-size:13px;
font-weight:700;
letter-spacing:0.08em;
text-transform:uppercase;
color:#44305f;
}

.support-form-card input,
.support-form-card select,
.support-form-card textarea{
width:100%;
padding:15px 16px;
border-radius:16px;
border:1px solid rgba(76,1,154,0.12);
background:#fcfbff;
font:inherit;
color:#24163f;
outline:none;
transition:border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.support-form-card input:focus,
.support-form-card select:focus,
.support-form-card textarea:focus{
border-color:#8403fc;
box-shadow:0 0 0 4px rgba(132,3,252,0.1);
background:#ffffff;
}

.support-form-message{
margin-top:18px;
}

.support-form-checkbox{
flex-direction:row !important;
align-items:flex-start;
gap:12px !important;
margin-top:18px;
}

.support-form-checkbox input{
width:18px;
height:18px;
margin-top:2px;
accent-color:#8403fc;
}

.support-form-checkbox span{
font-size:14px !important;
font-weight:500 !important;
letter-spacing:0 !important;
text-transform:none !important;
line-height:1.7;
color:#5a516d !important;
}

.support-form-actions{
margin-top:24px;
display:flex;
flex-direction:column;
align-items:flex-start;
gap:12px;
}

.support-form-submit{
border:none;
border-radius:999px;
padding:15px 28px;
background:linear-gradient(135deg, #8403fc 0%, #5406c8 100%);
color:#ffffff;
font-weight:700;
font-size:15px;
cursor:pointer;
box-shadow:0 16px 32px rgba(84,6,200,0.22);
transition:transform 0.3s ease, box-shadow 0.3s ease;
}

.support-form-submit:hover{
transform:translateY(-2px);
box-shadow:0 20px 36px rgba(84,6,200,0.28);
}

.support-form-status{
min-height:22px;
font-size:14px;
color:#6a22db;
}

@media (max-width: 960px){

.support-form-container{
grid-template-columns:1fr;
}

.support-form-copy h2{
font-size:38px;
}
}

@media (max-width: 640px){

.support-form-section{
padding:72px 5% 68px;
}

.support-form-card{
padding:22px 18px;
border-radius:22px;
}

.support-form-grid{
grid-template-columns:1fr;
}

.support-form-copy h2{
font-size:32px;
}
}

/* FLOATING SERMON BUTTON */

.sermon-float{

position:fixed;

bottom:25px;
right:25px;

display:flex;
align-items:center;
gap:12px;

background: var(--primary);
color:white;

padding:14px 18px;

border-radius:50px;

text-decoration:none;

font-weight:600;

box-shadow:0 8px 25px rgba(0,0,0,0.25);

z-index:9999;

animation:shakeBtn 5s infinite;

transition:0.3s;

}


/* ICON */

.sermon-icon{

width:40px;
height:40px;

background:white;
color:black;

border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

font-size:16px;
font-weight:bold;

}


/* TEXT */

.sermon-text{

font-size:14px;

}


/* HOVER */

.sermon-float:hover{

transform:scale(1.05);

background: var(--secondary);

}


/* SHAKE ANIMATION */

@keyframes shakeBtn{

0% { transform:translateX(0); }

2% { transform:translateX(-3px); }

4% { transform:translateX(3px); }

6% { transform:translateX(-3px); }

8% { transform:translateX(3px); }

10% { transform:translateX(0); }

100% { transform:translateX(0); }

}


/* MOBILE */

@media(max-width:600px){

.sermon-text{

display:none;

}

.sermon-float{

padding:14px;

}

}
.weekly-activities{

background:#ffffff;
color:rgb(0, 0, 0);

padding:40px 0;

overflow:hidden;

}

.weekly-heading{

text-align:center;
margin-bottom:25px;

font-size:28px;
letter-spacing:2px;

}

/* marquee container */

.weekly-marquee{

overflow:hidden;
white-space:nowrap;

}

/* track */

.marquee-track{

display:inline-flex;

gap:60px;

animation:scrollTicker 25s linear infinite;

}

/* text */

.marquee-track span{

font-size:18px;

opacity:0.9;

}

/* animation */

@keyframes scrollTicker{

0%{

transform:translateX(0);

}

100%{

transform:translateX(-50%);

}

}


/* ================= CARE SECTION ================= */
/* SECTION */
.minin-title{
display:inline-block;
font-size:12px;
letter-spacing:0.22em;
text-transform:uppercase;
font-weight:700;
color:#7a45d8;
padding:8px 14px;
border-radius:999px;
background:rgba(122,69,216,0.12);
}

.care-section{
padding:96px 8%;
background:
radial-gradient(circle at top left, rgba(132,3,252,0.12), transparent 30%),
linear-gradient(180deg, #f7f4ff 0%, #ffffff 100%);
}

.care-container{
max-width:1180px;
margin:auto;
display:flex;
align-items:center;
gap:56px;
padding:32px;
border-radius:32px;
background:rgba(255,255,255,0.88);
border:1px solid rgba(76,1,154,0.08);
box-shadow:0 24px 60px rgba(24,0,58,0.12);
backdrop-filter:blur(10px);
}

.care-left{
position:relative;
width:42%;
min-height:420px;
display:flex;
align-items:flex-end;
}

.orange-bg{
position:absolute;
inset:28px auto -28px -28px;
width:72%;
border-radius:28px;
background:linear-gradient(180deg, #f5d266 0%, #c98a14 100%);
z-index:1;
filter:blur(0.2px);
}

.care-left img{
width:100%;
height:420px;
object-fit:cover;
position:relative;
z-index:2;
display:block;
border-radius:28px;
box-shadow:0 24px 50px rgba(0,0,0,0.18);
}

.care-right{
width:58%;
}

.mini-title{
font-size:12px;
letter-spacing:2px;
color:#999;
}

.care-right h2{
font-size:46px;
line-height:1.08;
margin:18px 0 18px;
color:#14072c;
max-width:10ch;
}

.care-desc{
color:#4d4760;
line-height:1.8;
max-width:560px;
font-size:16px;
}

.care-cards{
display:grid;
grid-template-columns:repeat(2, minmax(0, 1fr));
gap:18px;
margin-top:32px;
}

.care-card{
background:linear-gradient(180deg, #ffffff 0%, #f8f5ff 100%);
padding:24px;
border-radius:22px;
border:1px solid rgba(76,1,154,0.08);
min-height:170px;
box-shadow:0 14px 30px rgba(24,0,58,0.08);
}

.care-card.highlight{
background:linear-gradient(180deg, #1a1230 0%, #2b1d4d 100%);
}

.care-card h3{
font-size:13px;
margin-bottom:14px;
color:#7a45d8;
letter-spacing:0.18em;
text-transform:uppercase;
}

.care-card.highlight h3{
color:#f1d37a;
}

.care-card p{
color:#4f4864;
line-height:1.7;
font-size:15px;
}

.care-card.highlight p{
color:rgba(255,255,255,0.84);
}

.care-buttons{
margin-top:30px;
display:flex;
gap:16px;
flex-wrap:wrap;
}

.primary-btn{
background:linear-gradient(135deg, #7f2cff 0%, #4c019a 100%);
color:#ffffff;
padding:14px 24px;
text-decoration:none;
border-radius:999px;
font-weight:700;
box-shadow:0 14px 30px rgba(76,1,154,0.22);
}

.outline-btn{
border:1.5px solid rgba(20,7,44,0.16);
padding:13px 24px;
text-decoration:none;
color:#14072c;
border-radius:999px;
background:rgba(255,255,255,0.7);
font-weight:600;
}

@media(max-width:1000px){

.care-container{
gap:36px;
padding:24px;
}

.care-right h2{
font-size:38px;
}
}

@media(max-width:900px){

.care-section{
padding:72px 5%;
}

.care-container{
flex-direction:column;
gap:28px;
padding:18px;
border-radius:24px;
}

.care-left,
.care-right{
width:100%;
}

.care-left{
min-height:auto;
}

.orange-bg{
inset:18px auto -18px -12px;
width:78%;
border-radius:22px;
}

.care-left img{
height:300px;
}

.care-right h2{
font-size:32px;
max-width:none;
}

.care-cards{
grid-template-columns:1fr;
}
}

.weekly-activities {
  padding: 10px 10px;
  font-family: 'Segoe UI', sans-serif;
}

.weekly-heading {
  font-size: 25px;
  letter-spacing: 2px;
  margin-bottom: 30px;
  font-weight: 600;
  font-family: 'DM Serif Display', serif;
}

.weekly-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.weekly-item {
  flex: 1;
}

.top-line {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.icon-box {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box img {
  width: 45px;
  height: 45px;
}

.activity-name p {
  margin: 0;
  font-size: 25px;
  line-height: 1.2;
  font-family: 'Noto Serif', serif;
}

.time {
  font-size: 18px; /* aligns under text like your sketch */
}

.divider {
  width: 1px;
  background: #000;
  margin: 0 30px;
}
.divider {
  width: 1px;
  height: 60px;              /* controls line length */
  background-color: #666;
  opacity: 0.4;
  margin: 0 25px;
}
.weekly-activities {
  background-color: #fdfdfd;
  padding-top:60px ;
}

.weekly-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 40px;
  font-family: 'Segoe UI', sans-serif;
}

.logo{
display:flex;
align-items:center;
gap:8px;
}

.logo img{
width:40px;
}

.logo span{
font-size:18px;
font-weight:700;
}

.logo-link{
text-decoration:none;
color:inherit;
display:inline-block;
}

.logo{
display:flex;
align-items:center;
gap:10px;
}

.logo img{
height:40px;
}

.logo-name{
font-family:'Montserrat', sans-serif;
font-weight:700;
font-size:17px;
letter-spacing:0.04em;
text-transform:uppercase;
line-height:1.2;
}
.weekly-heading{
text-align:center;
margin-bottom:20px;
font-size:28px;
}

.weekly-marquee{
overflow:hidden;
white-space:nowrap;
}

.marquee-track{
display:flex;
gap:60px;
animation: scroll 25s linear infinite;
align-items:center;
}

.activity{
display:flex;
align-items:center;
gap:12px;
font-size:18px;
}

.activity-icon{
width:24px;
height:24px;
object-fit:contain;
}

@keyframes scroll{
from{
transform:translateX(0);
}
to{
transform:translateX(-50%);
}
}

.weekly-activities{
position:relative;
background:
radial-gradient(circle at top center, rgba(132,3,252,0.08), transparent 38%),
linear-gradient(180deg, #ffffff 0%, #fbf8ff 100%);
padding:52px 0;
overflow:hidden;
}

.weekly-heading{
position:relative;
text-align:center;
margin-bottom:30px;
font-family:'Montserrat', sans-serif;
font-size:40px;
letter-spacing:0.08em;
color:#18003a;
text-transform:uppercase;
opacity:0;
transform:translateY(22px);
animation:weeklyReveal 0.9s ease forwards;
font-weight:800;
line-height:1;
}

.weekly-heading span{
display:block;
font-family:'Great Vibes', cursive;
font-size:56px;
font-weight:400;
letter-spacing:0;
text-transform:none;
color:#8403fc;
margin-bottom:8px;
}

.weekly-heading::after{
content:"";
display:block;
width:120px;
height:3px;
margin:14px auto 0;
border-radius:999px;
background:linear-gradient(90deg, transparent, #8403fc, transparent);
}

.weekly-marquee{
opacity:0;
transform:translateY(24px);
animation:weeklyReveal 1s ease 0.2s forwards;
}

.marquee-track{
display:flex;
align-items:center;
gap:22px;
animation:scroll 24s linear infinite;
width:max-content;
}

.activity{
display:flex;
align-items:center;
gap:12px;
padding:14px 22px;
border-radius:999px;
background:rgba(255,255,255,0.92);
border:1px solid rgba(76,1,154,0.08);
box-shadow:0 12px 26px rgba(24,0,58,0.08);
font-family:'Montserrat', sans-serif;
font-size:16px;
font-weight:600;
letter-spacing:0.01em;
color:#2a1d47;
}

.activity strong{
font-family:'DM Serif Display', serif;
font-size:19px;
font-weight:400;
color:#7a28f2;
}

.activity-icon{
width:28px;
height:28px;
flex:0 0 28px;
}

@keyframes weeklyReveal{
from{
opacity:0;
transform:translateY(24px);
}

to{
opacity:1;
transform:translateY(0);
}
}
/* ================================
EVENT FADE ANIMATIONS
================================ */

.fade-top,
.fade-bottom{
opacity:0;
transition:all 1s ease;
}

/* start positions */

.fade-top{
transform:translateY(-60px);
}

.fade-bottom{
transform:translateY(60px);
}

/* when visible */

.fade-show{
opacity:1;
transform:translateY(0);
}

/* =========================
SECTION REVEAL
========================= */

section.section-reveal-left,
section.section-reveal-right{
opacity:0;
transition:opacity 0.9s ease, transform 0.9s ease;
will-change:opacity, transform;
}

section.section-reveal-left{
transform:translateX(-48px);
}

section.section-reveal-right{
transform:translateX(48px);
}

section.section-visible{
opacity:1;
transform:translateX(0);
}
/* =========================
MEDIA SECTION
========================= */

.pgi-media-section{
padding:110px 8%;
background:
radial-gradient(circle at top left, rgba(132,3,252,0.08), transparent 24%),
linear-gradient(180deg, #f8f5ff 0%, #ffffff 100%);
}
.pgi-sermon-title{
color: var(--secondary);
font-family:'Montserrat', sans-serif;
font-size:14px;
letter-spacing:0.16em;
text-transform:uppercase;
margin-bottom:18px;
}
.pgi-media-container{
max-width:1280px;
margin:auto;
display:flex;
gap:54px;
align-items:center;
}

.pgi-media-left{
flex:1.2;
}

.pgi-sermon-video{
width:100%;
min-height:520px;
border-radius:26px;
overflow:hidden;
box-shadow:0 24px 48px rgba(24,0,58,0.18);
background:#0b0b0b;
position:relative;
}

.pgi-sermon-video video{
width:100%;
height:520px;
object-fit:cover;
display:block;
border-radius:26px;
}

.pgi-sound-toggle{
position:absolute;
right:16px;
bottom:16px;
display:inline-flex;
align-items:center;
gap:8px;
padding:10px 14px;
border:1px solid rgba(255,255,255,0.35);
border-radius:999px;
background:rgba(16,16,16,0.55);
color:#ffffff;
font-size:13px;
font-weight:700;
letter-spacing:0.03em;
cursor:pointer;
backdrop-filter:blur(6px);
transition:all 0.25s ease;
}

.pgi-sound-toggle:hover{
background:rgba(132,3,252,0.82);
border-color:rgba(255,255,255,0.8);
transform:translateY(-1px);
}

.pgi-sound-toggle.is-on{
background:rgba(132,3,252,0.92);
border-color:#ffffff;
}


/* RIGHT */

.pgi-media-right{
flex:1;
max-width:460px;
}

.pgi-sermon-date{
display:inline-flex;
align-items:center;
padding:8px 14px;
border-radius:999px;
background:rgba(132,3,252,0.1);
color:#7a35e8;
margin-bottom:18px;
font-size:13px;
font-weight:700;
letter-spacing:0.1em;
text-transform:uppercase;
}

.pgi-sermon-heading{
font-size:42px;
line-height:1.14;
margin-bottom:26px;
font-weight:800;
color: var(--secondary);
letter-spacing:-0.03em;
}

.pgi-media-socials{
display:flex;
gap:15px;
margin-top:6px;
opacity:1;
animation:none;
}

.pgi-media-socials .social-btn{
width:46px;
height:46px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
background:#ffffff;
border:1px solid rgba(76,1,154,0.12);
color:#6d22df;
opacity:1;
animation:none;
box-shadow:0 12px 24px rgba(24,0,58,0.1);
}

.pgi-media-socials .social-btn::before{
display:none;
}

.pgi-media-socials .social-btn:hover{
background:#8403fc;
color:#ffffff;
border-color:#8403fc;
transform:translateY(-2px);
}

/* APP */

.pgi-app-section h4{
margin-bottom:15px;
font-size:16px;
letter-spacing:1px;
}

.pgi-app-buttons{
display:flex;
gap:15px;
}

.app-btn{
display:flex;
align-items:center;
gap:10px;
padding:12px 18px;
background:white;
border-radius:30px;
text-decoration:none;
color:black;
font-weight:600;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.app-btn img{
width:20px;
}
@media(max-width:900px){

.pgi-media-container{
flex-direction:column;
gap:28px;
}

.pgi-sermon-heading{
font-size:26px;
}

.pgi-media-right{
max-width:none;
}

.pgi-sermon-video{
min-height:340px;
}

.pgi-sermon-video video{
height:340px;
}

.pgi-app-buttons{
flex-direction:column;
}

}

/* =========================
GLOBAL: DISABLE FADE/REVEAL
========================= */

.fade-in,
.fade-left,
.fade-right,
.fade-top,
.fade-bottom,
.fade-show,
.pgi-fade-section,
.pgi-event-card,
.weekly-heading,
.weekly-marquee,
section.section-reveal-left,
section.section-reveal-right,
section.section-visible,
.pgi-visible,
.pgi-event-card.show{
opacity:1 !important;
transform:none !important;
animation:none !important;
transition:none !important;
}

.fade-delay-1,
.fade-delay-2,
.fade-delay-3{
transition-delay:0s !important;
}


/* ==============================
WATCH BUTTON BRAND STYLE
============================== */
.sermon-float{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:linear-gradient(135deg, #8403fc 0%, #4c019a 100%) !important;
  color:#ffffff !important;
  border:1px solid rgba(255,255,255,0.2) !important;
  border-radius:999px !important;
  padding:10px 16px 10px 12px !important;
  box-shadow:0 14px 28px rgba(76,1,154,0.35) !important;
  text-decoration:none;
}

.sermon-icon{
  width:34px !important;
  height:24px !important;
  border-radius:8px !important;
  background:#ffffff !important;
  color:transparent !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  font-size:0 !important;
  position:relative;
}

.sermon-icon::before{
  content:"";
  display:block;
  width:0;
  height:0;
  border-top:6px solid transparent;
  border-bottom:6px solid transparent;
  border-left:10px solid #8403fc;
  margin-left:2px;
}

.sermon-text{
  color:#ffffff !important;
  font-weight:700;
  letter-spacing:0.01em;
}

.sermon-float:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 34px rgba(76,1,154,0.42) !important;
}

a.hero-btn-secondary[href*="watch.html"],
a.btn-secondary[href*="watch.html"]{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:linear-gradient(135deg, #8403fc 0%, #4c019a 100%) !important;
  color:#ffffff !important;
  border:1px solid rgba(255,255,255,0.25) !important;
  box-shadow:0 10px 24px rgba(76,1,154,0.3) !important;
}

a.hero-btn-secondary[href*="watch.html"]::before,
a.btn-secondary[href*="watch.html"]::before{
  content:"▶";
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:22px;
  height:14px;
  border-radius:4px;
  background:#ffffff;
  color:#8403fc;
  font-size:9px;
  line-height:1;
  font-weight:800;
}

