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

.logo img{
width:40px;
}

.logo span{
font-size:18px;
font-weight:700;
color: white;
}
/* ================= GLOBAL RESET ================= */

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

body {
    font-family: 'Inter', sans-serif;
    background: #f8f9fa;
    color: #333333;
    overflow-x: hidden;
}

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

.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
    background: rgba(0, 0, 0, 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%;
}

/* ================= 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;
    }
}


/* ===============================
   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: -75px; /* pull it closer */
    margin-bottom: 0;  /* remove extra space below */
}

.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;
}


/* ===============================
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;
    }
}



.watch-page{

padding:120px 8%;
background:#ffffff;
color:rgb(0, 0, 0);

}

.watch-container{

max-width:1200px;
margin:auto;

}

/* MAIN VIDEO */

.main-video{

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

}

.video-wrapper{

position:relative;
padding-bottom:56.25%;
height:0;

border-radius:12px;
overflow:hidden;

}

.video-wrapper iframe{

position:absolute;
top:0;
left:0;

width:100%;
height:100%;

}

.video-title{

margin-top:20px;
font-size:28px;

}

.video-desc{

opacity:0.8;
margin:10px 0 20px;

}

.watch-youtube{

display:inline-block;

padding:12px 26px;

background:red;
color:white;

border-radius:8px;
text-decoration:none;

font-weight:600;

transition:.3s;

}

.watch-youtube:hover{

background:#ff2c2c;

}

/* RECENT SERMONS */

.recent-sermons h3{

font-size:26px;
margin-bottom:30px;

}

.sermon-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;

}

/* CARD */

.sermon-card{

background:#111;
border-radius:10px;
overflow:hidden;
color: white;
transition:.3s;

}

.sermon-card:hover{

transform:translateY(-5px);

}

.thumb{

position:relative;
padding-bottom:56.25%;
height:0;

}

.thumb iframe{

position:absolute;
top:0;
left:0;

width:100%;
height:100%;

border:none;

}

.sermon-card h4{

padding:12px 15px 0;

}

.sermon-card p{

padding:0 15px 15px;
opacity:0.7;
font-size:14px;

}

/* TABLET */

@media (max-width:900px){

.sermon-grid{

grid-template-columns:repeat(2,1fr);

}

}

/* MOBILE */

@media (max-width:600px){

.watch-page{

padding:100px 5%;

}

.sermon-grid{

grid-template-columns:1fr;

}

.video-title{

font-size:22px;

}

}


.watch-container{
max-width:1300px;
margin:auto;
padding:40px 20px;
}

.watch-title{
font-size:32px;
font-weight:bold;
margin-bottom:25px;
}

/* Live badge */

.live-badge{
background:red;
padding:6px 12px;
border-radius:5px;
font-size:12px;
margin-left:10px;
}

/* Main Video */

.main-video iframe{
width:100%;
height:520px;
border:none;
border-radius:10px;
}

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

.watch-header {
  text-align: center;
  margin-bottom: 50px;
  padding-top: 100px;
  padding-bottom: 12px;
}

.watch-header h1 {
  font-size: 46px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #18003a, #8403fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.watch-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  color: #5f5872;
}

.watch-info p {
  margin: 0;
}

/* ================= LIVE INDICATOR ================= */

.live-indicator {
  display: inline-block;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ff0000;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  animation: pulse 2s infinite;
}

.live-badge i {
  font-size: 10px;
  animation: blink 1s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ================= MAIN VIDEO ================= */

.main-video {
  margin-bottom: 80px;
  padding: 0 20px;
}

.video-loader {
  text-align: center;
  padding: 60px 20px;
  background: #f0f0f0;
  border-radius: 12px;
}

.no-videos,
.error-message {
  text-align: center;
  padding: 40px 20px;
  color: #666666;
  font-size: 16px;
}

.error-message {
  color: #ff6b6b;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 22px 46px rgba(24, 0, 58, 0.14);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-info {
  padding: 28px 0 8px;
}

.video-info h2 {
  font-size: 30px;
  margin-bottom: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.video-date {
  color: #999999;
  font-size: 14px;
  margin: 0;
}

/* ================= VIDEO GRID SECTION ================= */

.video-grid-section {
  margin-bottom: 60px;
  padding: 0 20px;
}

.video-grid-section h2 {
  font-size: 28px;
  margin-bottom: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #24113f;
}

/* ================= VIDEO GRID ================= */

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

.channel-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* ================= VIDEO CARD ================= */

.video-card {
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(76, 1, 154, 0.08);
  box-shadow: 0 12px 28px rgba(24, 0, 58, 0.08);
}

.channel-card {
  text-decoration: none;
  min-height: 140px;
  display: flex;
  align-items: center;
  background: linear-gradient(145deg, #ffffff, #f7f3ff);
}

.video-card:hover {
  transform: translateY(-8px);
  background: #ffffff;
  border-color: #8403fc;
  box-shadow: 0 18px 36px rgba(132, 3, 252, 0.16);
}

.video-thumbnail {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
}

.video-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail img {
  transform: scale(1.05);
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 0, 0, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-size: 24px;
  color: white;
}

.video-card:hover .play-icon {
  opacity: 1;
}

.video-card-info {
  padding: 18px;
}

.video-card-info h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 8px 0;
  line-height: 1.4;
  color: #22123d;
}

.video-card-info .video-date {
  font-size: 12px;
  color: #999999;
  margin: 0;
}

.playlist-embed {
  position: relative;
  width: 100%;
  min-height: 560px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(132, 3, 252, 0.12);
}

.playlist-embed iframe {
  width: 100%;
  height: 560px;
  border: 0;
  display: block;
}

.embed-note {
  margin-top: 14px;
  color: #666666;
  font-size: 14px;
  line-height: 1.6;
}

/* ================= YOUTUBE BUTTON ================= */

.youtube-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 60px auto;
  background: linear-gradient(135deg, #ff0000, #cc0000);
  color: white;
  padding: 16px 34px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  width: max-content;
  transition: all 0.3s ease;
  box-shadow: 0 14px 30px rgba(255, 0, 0, 0.24);
  font-size: 15px;
  letter-spacing: 0.04em;
}

.youtube-btn:hover {
  background: linear-gradient(135deg, #ff1919, #dd0000);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 0, 0, 0.4);
}

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

@media (max-width: 768px) {
  .watch-header h1 {
    font-size: 28px;
  }

  .watch-info {
    flex-direction: column;
    gap: 10px;
  }

  .video-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
  }

  .video-info h2 {
    font-size: 22px;
  }

  .playlist-embed,
  .playlist-embed iframe {
    min-height: 420px;
    height: 420px;
  }

  .youtube-btn {
    padding: 14px 28px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .watch-header {
    padding-top: 100px;
  }

  .watch-header h1 {
    font-size: 22px;
  }

  .watch-header p {
    font-size: 14px;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .video-grid-section h2 {
    font-size: 20px;
  }

  .video-info h2 {
    font-size: 18px;
  }

  .playlist-embed,
  .playlist-embed iframe {
    min-height: 340px;
    height: 340px;
  }
}

.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;
color:#ffffff;
}
