:root {
    --footer-bg: #18327e;
    --footer-text: #adb5bd;
    --footer-heading: #ffffff;
    --accent-cyan: #00b4d8;
    --input-bg: #1a2e32;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --card-text: #4a5568;
    --card-date: #a0aec0;
    --event-orange: #e1a900;
    --event-pink: #ff6b6b;
    --primary-btn-color: #e1a900;
    --color-white: #ffffff;
    --primary-yellow: #e1a900;
    --primary-blue: #0047ab;
    --primary-red: #ff4d4d;
    --primary-green: #10b981;
    --text-dark: #1a1a1a;
    --text-muted: #666;
    --gylf-blue: #004291;
    --gylf-dark-blue: #002d62;
    --gylf-gold: #e1a900;
    --gylf-light-bg: #f8f9fa;
    --gylf-text: #333333;
}

body {
    font-family: 'Lato', sans-serif;
    color: #212529;
    background-color: #f2f2f2;
}

/* Helper Classes */
.category-badge {
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 700;
    color: white;
    display: inline-block;
    margin-bottom: 10px;
}

.bg-travel {
    background-color: #20c997;
}

.bg-fashion {
    background-color: #e83e8c;
}

.bg-lifestyle {
    background-color: #fd7e14;
}

.bg-health {
    background-color: #28a745;
}

/* Utilities Start */
.title {
    font-weight: 700;
    font-size: 24px;
}

.hide {
    display: none;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'lato', serif;
}

h2 {
    font-weight: 800;
    color: #fff;
    font-size: 2.5rem;
}

.smallCase {
    text-transform: uppercase;
    font-size: 1.5rem;
    display: block;
}

.bgColor--white {
    background-color: var(--color-white);
}

.text-italic {
    font-style: italic;
}

.padding-20 {
    padding: 0.7rem 2rem;
}

.btn-primary {
    background-color: var(--event-orange);
    border: none;
}

.btn-primary:hover {
    background-color: #d18e00;
}

.btn-social {
    background-color: #4a92e2;
}

/* End Utilities */

/* Start Video settings */
.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #000;
}

.video-wrapper iframe {
    aspect-ratio: 16 / 9;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}

/* End video settings */



/* Main Menu*/
.has__menu-main {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #fff !important;
}

.has__menu-main a {
    font-weight: 600;
}

/* Top Menu */
.has__menu-top {
    background-color: #18327d !important;
}

.top-search .form-control {
    padding: .375rem .75rem;
    background-color: aliceblue;
    transition: padding 1s;
}

.top-search .form-control:hover {
    padding: .375rem 5rem;
}

.has__menu-top .nav-link {
    color: #fff !important;
    font-weight: 500;
}

.has__menu-top .nav-link:hover {
    color: var(--gylf-gold) !important;
}

.has__menu-top .nav .nav-link {
    margin-left: 20px !important;
}

.has__menu-main .nav {
    margin-right: 20px;
}

.has__menu-main .nav-link,
.btn {
    color: #000 !important;
    font-weight: 700;
    font-size: 14px !important;
}

.has__menu-main .nav-link:hover {
    color: var(--gylf-gold);
}

/* Hero */
.hero {
    height: 500px;
    position: relative;
    padding-top: 50px;

    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    /* adjust darkness */
    z-index: 20;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.has__hero-padding-0 {
    padding: 0 !important;
}

.form-container {
    width: 500px;
    position: relative;
    z-index: 200;
    margin-left: auto;
}

.register-form {
    background-color: rgba(24, 50, 125, 0.7);
    padding: 20px;
    border-radius: 10px;
}

.register-form hr {
    color: #f1f1f1;
}

.register-form p {
    color: #fff;
    font-size: 1em;
    font-weight: 400;
}

.register-form input,
select {
    margin-bottom: 15px;
    border-radius: 0 !important;
    padding: 5px;
}

.register-form input::placeholder {
    font-size: 1em;
}

.register-form input:focus,
select:focus {
    border-color: #18327d !important;
    box-shadow: 0 0 0 .25rem rgba(105, 27, 119, .25) !important;
}

.register-form a {
    color: #ff9306;
    text-decoration: none;
}

/* Container and slides */
.mainSwiper {
    width: 100%;
    aspect-ratio: 16 / 7;
    height: 19rem;
    position: relative;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .mainSwiper {
        aspect-ratio: 16 / 9;
        height: unset !important;
        /* Slightly taller for mobile visibility */
    }
}

.mainSwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: #333;

}

/* Pagination bullets */
.main-swiper-pagination {
    bottom: 20px;
}

.main-swiper-pagination .swiper-pagination-bullet {
    background: #ff5722;
    opacity: 0.7;
}

.main-swiper-pagination .swiper-pagination-bullet-active {
    background: #e91e63;
    opacity: 1;
}

/* Navigation arrows - modern look */
.main-swiper-button-next,
.main-swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff5722, #e91e63);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    cursor: pointer;
}

.main-swiper-button-next:hover,
.main-swiper-button-prev:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
    background: linear-gradient(135deg, #ff784e, #f50057);
}

/* Optional: make arrows slightly transparent on desktop until hover */
@media(min-width: 768px) {

    .main-swiper-button-next,
    .main-swiper-button-prev {
        opacity: 0.85;
    }

    .main-swiper-button-next:hover,
    .main-swiper-button-prev:hover {
        opacity: 1;
    }
}


.about {
    background-image: url('/assets/images/bg.png');
    background-blend-mode: soft-light;
    /* opacity: 0.5; */
    background-color: #18327d;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.translateY-50 {
    transform: translateY(50px);
}

.blog h2 {
    font-weight: 800;
    color: #18327d;
    font-size: 2.5rem;
}

.about p {
    color: #fff;
    font-size: 1rem;
}

/* Container and slides */
.newsSwiper {
    width: 100%;
    padding: 40px 0;
}

.newsSwiper .swiper-slide {
    background: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Pagination bullets */
.news-swiper-pagination {
    bottom: 10px;
}

.news-swiper-pagination .swiper-pagination-bullet {
    background: #888;
    opacity: 0.6;
}

.news-swiper-pagination .swiper-pagination-bullet-active {
    background: #444;
    opacity: 1;
}

/* NewsSwiper navigation arrows */
.news-swiper-button-next,
.news-swiper-button-prev {
    /* position: absolute; */
    /* top: 100%; */
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    color: #333;
    font-size: 18px;
    /* arrow icon size */
    z-index: 20;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Hover effect */
.news-swiper-button-next:hover,
.news-swiper-button-prev:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.news-swiper-button-next:after,
.news-swiper-button-prev:after {
    font-size: 10px;
}

/* Positioning */
.news-swiper-button-prev {
    left: 58rem;
    /* adjust distance from left */
}

.news-swiper-button-next {
    right: 8px;
    /* adjust distance from right */
}

/* Optional: smaller on mobile */
@media (max-width: 768px) {

    .news-swiper-button-next,
    .news-swiper-button-prev {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
}

.news .card {
    border: 1px solid #eee;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;

    display: grid;
    grid-template-rows: 230px 270px;
}

.news .card:hover {
    transform: translateY(-5px);
}

.featured-image {
    height: 230px;
    background-size: cover;
    background-position: center;
}

.news__card-body {
    padding: 2rem;
    display: grid;
    grid-template-rows: 70px 100px 40px;
}

.card-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.75rem;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-title a {
    text-decoration: none;
}

.card-text {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.6rem;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.text-white {
    color: #fff !important;
}

.ps-10 {
    padding-left: 8rem;
}

.section-padding {
    padding: 80px 0;
}

/* EVENT SECTION START*/

.event {
    background: radial-gradient(circle at 10% 50%, rgb(255 122 0 / 21%) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgb(0 180 216 / 28%) 0%, transparent 50%);
}

.event-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease;
    height: 100%;
    background: #fff;
}

.event-card:hover {
    transform: translateY(-5px);
}

.card-img-wrapper {
    position: relative;
    height: 220px;
}

.card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--accent-cyan);
    color: white;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* events-Page*/
.events-grid-section {
    padding: 60px 0 100px;
    background-color: #fff;
}

.event-grid-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.event-grid-card:hover {
    transform: translateY(-10px);
}

.grid-image-wrapper {
    position: relative;
    height: 200px;
    background-color: #eee;
}

.grid-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grid-date-tag {
    position: absolute;
    bottom: -15px;
    right: 20px;
    background: var(--gylf-gold);
    color: rgb(0, 0, 0);
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* SVG Placeholders */
.img-placeholder {
    background-color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

/* Event Single Page */

/* Event Hero */
.event-single-hero {
    background: linear-gradient(rgba(0, 66, 145, 0.85), rgba(0, 66, 145, 0.85)), url('https://images.unsplash.com/photo-1540575861501-7cf05a4b125a?auto=format&fit=crop&q=80&w=2000') center/cover;
    padding: 100px 0;
    color: white;
    text-align: center;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-item a {
    color: var(--gylf-gold);
    text-decoration: none;
    font-weight: 600;
}

.event-title {
    font-size: 3.5rem;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Countdown Timer */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.countdown-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 15px;
    border-radius: 10px;
    min-width: 100px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.countdown-box span {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--gylf-gold);
}

.countdown-box label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Content Layout */
.event-content-section {
    padding: 80px 0;
    background-color: #fff;
}

.event-info-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 100px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.info-icon {
    background: var(--gylf-light-bg);
    color: var(--gylf-blue);
    padding: 12px;
    border-radius: 10px;
}

.info-text h6 {
    margin-bottom: 2px;
    font-weight: 700;
    color: var(--gylf-dark-blue);
}

.info-text p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: #666;
}

/* Registration Form */
.registration-form {
    background: var(--gylf-light-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #eee;
}

.form-label {
    font-weight: 600;
    color: var(--gylf-blue);
}

.form-control {

    border-radius: 8px;
    border: 1px solid #ddd;
}

.form-control:focus {
    border-color: var(--gylf-blue);
    box-shadow: none;
}

@media (max-width: 768px) {
    .event-title {
        font-size: 2.2rem;
    }

    .countdown-container {
        gap: 10px;
    }

    .countdown-box {
        min-width: 70px;
        padding: 10px;
    }

    .countdown-box span {
        font-size: 1.4rem;
    }
}





/* Interaction Bar */
.interaction-bar {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    margin: 40px 0;
    display: flex;
    gap: 20px;
}

.btn-action {
    border: none;
    background: none;
    color: #636e72;
    transition: 0.2s;
}

.btn-action:hover {
    color: var(--primary-blue);
}

/* Comments Section */
.comments-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.comment-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
}


/* Salvation Section*/
.born-again-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('/assets/images/salvation.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 60px 0;
}

.born-again-content {
    max-width: 800px;
}

.section-tag {
    font-family: 'Playfair Display', serif;
    color: var(--primary-yellow);
    font-style: italic;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.main-title {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.prayer-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-left: 4px solid var(--primary-yellow);
    padding: 2.5rem;
    border-radius: 0 12px 12px 0;
}

.instruction-text {
    color: var(--primary-yellow);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: block;
}

.prayer-text {
    font-size: 1.15rem;
    line-height: 1.8;
    font-weight: 400;
    font-style: italic;
}

.cta-button {
    background-color: var(--primary-yellow);
    color: var(--text-dark);
    font-weight: 700;
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    margin-top: 2rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border: 2px solid var(--primary-yellow);
}

.cta-button:hover {
    background-color: transparent;
    color: var(--primary-yellow);
}

@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }

    .prayer-text {
        font-size: 1rem;
    }

    .born-again-section {
        min-height: 100vh;
    }
}

/* Pagination Indicators */
.pagination-dots {
    display: flex;
    gap: 8px;
    margin-top: 2rem;
}

.dot {
    width: 30px;
    height: 4px;
    border-radius: 2px;
    background-color: #334155;
}

.dot.active {
    background-color: #6366f1;
}

/* Right Side: Form */
.auth-form-container {
    width: 50%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.auth-form-box {
    width: 100%;
    max-width: 420px;
}

.auth-form-box h1 {
    font-weight: 700;
    font-size: 1.75rem;
    color: #1e293b;
    margin-bottom: 2rem;
    text-align: center;
}

/* --- Mission Section Styling --- */
.mission-section {
    padding: 100px 0;
    background-color: #fff;
}

.shaping-futures {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    color: #ccc;
    letter-spacing: 4px;
    font-size: 1.2rem;
    margin-bottom: 0;
}

.mission-title {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 2rem;
}

.mission-tag {
    font-family: 'Playfair Display', serif;
    color: var(--primary-blue);
    font-style: italic;
    font-size: 1.8rem;
    margin-left: 10px;
}

.image-grid {
    position: relative;
    padding-bottom: 50px;
}

.main-img-wrapper {
    position: relative;
    width: 80%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.sub-img-wrapper {
    position: absolute;
    top: 10%;
    right: 0;
    width: 50%;
    border-radius: 15px;
    overflow: hidden;
    border: 8px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-hexagon {
    position: absolute;
    bottom: 0;
    right: 15%;
    background-color: #fff;
    border: 4px solid #f97316;
    padding: 20px;
    text-align: center;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    min-width: 140px;
}

.stat-number {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 700;
}

.mission-box {
    background-color: #f0fff9;
    border-left: 5px solid var(--primary-green);
    padding: 30px;
    border-radius: 0 20px 20px 0;
    margin-bottom: 2rem;
    position: relative;
}

.mission-icon {
    position: absolute;
    top: -20px;
    left: 20px;
    background: var(--primary-green);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-join {
    background-color: var(--primary-red);
    color: white;
    border-radius: 8px;
    padding: 12px 25px;
    font-weight: 600;
    margin-right: 15px;
}

.btn-donate {
    background-color: #fff;
    color: var(--primary-red);
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px 25px;
    font-weight: 600;
}

/* Input Styling */
.form-control {
    border: 1px solid #e2e8f0;
    font-size: 0.95rem;
}

.form-control:focus {
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
    border-color: #6366f1;
}

.input-group {
    position: relative;
    margin-bottom: 1.25rem;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    z-index: 10;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    cursor: pointer;
    z-index: 10;
}

/* Social Sign Up */
.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #fff;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 1.5rem;
    transition: all 0.2s;
}

.btn-social:hover {
    background-color: #f8fafc;
    border-color: #cbd5e1;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #94a3b8;
    font-size: 0.85rem;
    margin: 1.5rem 0;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e2e8f0;
}

.divider:not(:empty)::before {
    margin-right: 1rem;
}

.divider:not(:empty)::after {
    margin-left: 1rem;
}

.btn-register {
    background-color: #6366f1;
    border: none;
    padding: 0.75rem;
    border-radius: 10px;
    font-weight: 600;
    width: 100%;
    margin-top: 1rem;
    transition: background 0.2s;
}

.btn-register:hover {
    background-color: #4f46e5;
}

.form-check-label {
    color: #64748b;
    font-size: 0.875rem;
}

.form-check-label a {
    color: #6366f1;
    text-decoration: none;
    font-weight: 500;
}

.signin-link {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #64748b;
}

.signin-link a {
    color: #6366f1;
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 992px) {
    .auth-visual {
        display: none;
    }

    .auth-form-container {
        width: 100%;
    }
}

/* News Page */

/* Spotlight Grid (Formerly Hero) */
.spotlight-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 500px;
    margin-bottom: 30px;
}

.spotlight-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.spotlight-card:hover .spotlight-img {
    transform: scale(1.05);
}

.spotlight-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.spotlight-overlay h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

/* Post Cards */
.post-card-small {
    margin-bottom: 30px;
}

.post-card-small a,
.trending-body a,
.most-viewed a {
    text-decoration: none;
    color: #000000;
}

.post-card-small a:hover,
.trending-body a:hover .most-viewed a:hover {
    color: #2c2b2b;
}

.post-card-small .img-wrapper {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
    aspect-ratio: 4/3;
}

.post-card-small .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-card-small .img-wrapper:hover img {
    transform: scale(1.05);
}

.post-card-small h5,
.trending-body h5 {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5;
    color: #000000;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Trending Story Cards */
.trending-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

.trending-card:hover {
    transform: translateY(-5px);
}

.trending-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.trending-body {
    padding: 20px;
}

/* Sidebar Widgets */
.widget-title {
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.social-box {
    display: flex;
    align-items: center;
    padding: 12px;
    color: white;
    border-radius: 6px;
    margin-bottom: 10px;
    text-decoration: none;
    font-size: 0.85rem;
}

.category-pill {
    position: relative;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    margin-bottom: 10px;
    text-decoration: none;
    background-size: cover;
    background-position: center;
}

.category-pill::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.category-pill span {
    position: relative;
    z-index: 1;
}

/* Featured Video Section */
.video-main {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: #000;
}

.video-main img {
    opacity: 0.7;
    width: 100%;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Ad Banner */
.ad-banner {
    background: linear-gradient(135deg, #6dd5ed, #2193b0);
    border-radius: 12px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 50px 0;
}

/* Events */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.section-title {
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.section-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
}

.btn-view-all {
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 10px 24px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background-color: #f8f9fa;
    border-color: #adb5bd;
}

/* Featured Card Styling */
.featured-event-card {
    border: none;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    background: white;
}

.image-container {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.date-badge-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #ffc107;
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.date-badge-overlay .day {
    font-size: 1.4rem;
    display: block;
    line-height: 1;
}

.date-badge-overlay .month {
    font-size: 0.75rem;
    text-transform: uppercase;
}

.featured-content {
    padding: 30px;
}

.featured-title {
    font-weight: 700;
    font-size: 1.75rem;
    margin-bottom: 15px;
}

.featured-text {
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.meta-info {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

/* List Event Styling */
.event-list-item {
    background: #fffdf5;
    /* Slight cream tint */
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    border-left: 4px solid #ffc107;
    transition: transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.event-list-item:hover {
    transform: translateX(5px);
}

.list-date {
    min-width: 60px;
    text-align: center;
    margin-right: 25px;
}

.list-day {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffc107;
    display: block;
    line-height: 1;
}

.list-month {
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #888;
}

.list-content h5 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 1.15rem;
}

.list-content p {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .image-container {
        height: 250px;
    }
}

/* GYTV */
.gytv {
    position: relative;
    overflow: hidden;
}

.gytv::before {
    content: "";
    position: absolute;
    background-color: #000;
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* When hovering the container */
.gytv:hover::before {
    opacity: 0.5;
}

/* Zoom image on hover */
.gytv img {
    transition: transform 0.3s ease;
}

.gytv:hover img {
    transform: scale(1.05);
}

/* CONTACT PAGE */
.contact-section {
    background-image: url('/assets/images/img-20190525-wa0065-1-1280x960.jpg');
    padding: 100px 0;
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;

    position: relative;
}

.contact-section::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.contact-section h1 {
    z-index: 2;
    font-weight: 700;
}

/* Article Content */
.article-section {
    background-color: #fff;
}

.article-section .article-hero-frame {
    height: 700px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.article-section .article-header {
    margin: -60px auto 40px;
    background: white;
    padding: 40px;
    border-radius: 12px;
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.article-section .article-title {
    font-family: 'lato', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.article-section .post-meta {
    color: #636e72;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-section .content-body p {
    font-size: 18px;
    font-weight: 400;
}

.article-section .content-body p span {
    font-size: unset !important;
    font-weight: unset !important;
    font-family: unset !important;
}

.article-section .content-body h1 {
    font-size: 20px;
    font-weight: 800;
}

.article-section .content-body {
    font-size: 1.15rem;
}

@media (max-width: 768px) {
    .article-section .featured-image-frame {
        height: 450px
    }
}

.article-section .metadata-box {
    padding: 30px 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid #ddd;
}

.article-section .metadata-box h1 {
    text-align: center;
    font-weight: 900;
}

.article-section .metadata-info {
    text-align: center;
}

.article-section .carousel-item {
    width: 25%;
}

.slider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

@media (max-width: 767px) {
    .slider {
        flex-wrap: wrap;
        margin-bottom: unset !important;
    }
}



/* Footer */
.custom-footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 80px 0 40px 0;
    font-size: 0.95rem;
}

.footer-logo-text {
    color: var(--footer-heading);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.footer-heading {
    color: var(--footer-heading);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--footer-text);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--accent-cyan);
}

.social-icon-btn {
    width: 36px;
    height: 36px;
    background-color: #1a2e32;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.social-icon-btn:hover {
    opacity: 0.8;
    color: white;
}

/* Subscription Box Styles */
.subscribe-group {
    position: relative;
    display: flex;
    background-color: var(--input-bg);
    border-radius: 50px;
    padding: 5px;
    overflow: hidden;
    max-width: 350px;
}

.subscribe-input {
    background: transparent;
    border: none;
    color: white;
    padding: 10px 20px;
    width: 100%;
    outline: none;
}

.subscribe-input::placeholder {
    color: #6c757d;
}

.subscribe-btn {
    background-color: var(--accent-cyan);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.footer-divider {
    border-top: 1px solid #73859f;
    margin: 60px 0 30px 0;
}

.copyright-text {
    font-size: 16px;
    color: #536467;
}