@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Montserrat:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #ebb956;
    --primary-hover: #d9a646;
    --primary-glow: rgba(235, 185, 86, 0.4);
    --secondary: #ebb956;
    --bg-dark: #1b2e4a;
    --bg-deep: #102450;
    --bg-dark-rgb: 27, 46, 74;
    --primary-rgb: 235, 185, 86;
    --bg-light: #f4f6f9;
    --surface: #ffffff;
    --text-dark: #102450;
    --text-muted: #666666;
    --text-light: #f0f0f0;
    --white: #ffffff;
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 10px 30px var(--primary-glow);
    --radius-md: 12px;
    --radius-lg: 20px;
    --font-main: 'Montserrat', sans-serif;
    --font-heading: 'Cinzel', serif;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
    width: 100%;
}

html {
    overflow-x: hidden;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.text-primary {
    color: var(--primary);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-main);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

.divine-subtitle {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--secondary);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.glorious-title {
    font-family: var(--font-heading);
    font-size: 80px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 30px;
    text-shadow: 0 5px 25px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 255, 255, 0.2);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.4);
}

.btn-members,
.btn-members:hover {
    box-shadow: none;
}

.btn-glow {
    background: linear-gradient(135deg, var(--primary), #f5c04a);
    color: var(--white);
    box-shadow: 0 0 20px var(--primary-glow);
    position: relative;
    overflow: hidden;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-20deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

.btn-glow:hover {
    box-shadow: 0 0 30px var(--primary-glow), 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}

.btn-outline-light {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: var(--white);
    backdrop-filter: blur(5px);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.btn-dark {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 14px 24px;
}

.btn-dark:hover {
    background-color: var(--primary);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: var(--transition);
    background: transparent;
}

header.scrolled {
    padding: 15px 0;
    background: rgba(var(--bg-dark-rgb), 0.96);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(var(--bg-dark-rgb), 0.18);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-members-link {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: var(--white);
    font-size: 22px;
    transition: var(--transition);
}

.mobile-members-link:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

.mobile-members-item {
    display: none;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
}

header.scrolled .mobile-menu-btn {
    color: var(--white);
}

.logo-img {
    height: 45px;
    transition: var(--transition);
}

.main-nav ul {
    display: flex;
    gap: 35px;
}

.main-nav ul li a {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    position: relative;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

header.scrolled .main-nav ul li a {
    color: var(--white);
    text-shadow: none;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
    width: 100%;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: var(--primary) !important;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: var(--bg-dark);
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 8s linear;
    transform: scale(1.05);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

/* Hero Backgrounds - Desktop (Default 1920x960) */
.slide-1 {
    background-image: url('../images/banner/1.jpg');
}

.slide-2 {
    background-image: url('../images/banner/2.jpg');
}

.slide-3 {
    background-image: url('../images/banner/3.jpg');
}

/* Hero Backgrounds - Mobile (720x1280) */
@media (max-width: 768px) {

    /* Mude para as imagens mobile reais quando existirem (ex: bg-1-mobile.jpg) */
    .slide-1 {
        background-image: url('../images/banner/1m.jpg');
        /* Exemplo temporário para mobile */
        background-position: top center;
    }

    .slide-2 {
        background-image: url('../images/banner/2m.jpg');
        /* Exemplo temporário para mobile */
        background-position: top center;
    }

    .slide-3 {
        background-image: url('../images/bg/bg-3.jpg');
        /* Exemplo temporário para mobile */
        background-position: top center;
    }

    .hero {
        height: auto;
        min-height: 0;
        aspect-ratio: 768 / 1100;
        padding-bottom: 78px;
    }

    .hero-slideshow,
    .slide {
        height: 100%;
    }

    .slide {
        background-size: 100% auto;
        background-repeat: no-repeat;
        background-position: top center;
        transform: none;
    }

    .slide.active {
        transform: none;
    }

}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 50px;
    z-index: 5;
    pointer-events: none;
}

.slider-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    pointer-events: auto;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.38);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.slider-dot.active,
.slider-dot:hover {
    background: var(--primary);
    transform: scale(1.12);
}

.slider-btn {
    pointer-events: auto;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .slider-controls {
        top: auto;
        bottom: 18px;
        transform: none;
        justify-content: center;
        align-items: center;
        gap: 14px;
        padding: 0 16px;
    }

    .slider-btn {
        width: 42px;
        height: 42px;
        font-size: 16px;
        background: rgba(var(--bg-dark-rgb), 0.5);
    }

    .slider-dots {
        gap: 8px;
    }

    .slider-dot {
        width: 9px;
        height: 9px;
    }
}

.hero-overlay {
    display: none;
}

.hero-top-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 190px;
    background: linear-gradient(to bottom, rgba(var(--bg-dark-rgb), 0.95) 0%, rgba(var(--bg-dark-rgb), 0.58) 42%, rgba(var(--bg-dark-rgb), 0) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-light-rays {
    display: none;
}

@keyframes rotateRays {
    100% {
        transform: rotate(360deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-text {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    font-weight: 300;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--white);
    font-size: 24px;
    animation: bounce 2s infinite;
    opacity: 0.7;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-15px) translateX(-50%);
    }

    60% {
        transform: translateY(-7px) translateX(-50%);
    }
}

/* Modern Card Layout */
.main-wrapper {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 60px;
    padding: 80px 0;
}

@media (max-width: 1024px) {
    .main-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.section-header {
    margin-bottom: 30px;
}

.sub-badge {
    display: inline-block;
    background: rgba(var(--primary-rgb), 0.12);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 32px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.modern-card {
    background: var(--surface);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.modern-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: var(--surface);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image-col {
    position: relative;
    padding: 20px;
}

.image-wrapper {
    position: relative;
    z-index: 2;
}

.image-wrapper img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.dots-pattern {
    position: absolute;
    top: -20px;
    right: -20px;
    bottom: -20px;
    left: -20px;
    background-image: radial-gradient(#ccc 2px, transparent 2px);
    background-size: 15px 15px;
    z-index: -1;
    opacity: 0.5;
}

.about-content-col .section-title {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 25px;
}

.about-text {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 25px;
}

.about-text p {
    margin-bottom: 16px;
}

.about-text .farol-mini-purpose {
    color: var(--bg-dark);
    font-weight: 500;
}

.about-text .farol-mini-purpose strong {
    color: var(--primary);
    font-weight: 800;
}

.about-slogan,
.farol-slogan {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--text-dark);
    font-size: 21px;
    line-height: 1.28;
    font-weight: 800;
    letter-spacing: 0;
}

.about-quote {
    margin-bottom: 35px;
}

.about-quote blockquote {
    font-family: 'Georgia', serif;
    /* Or another elegant serif/script if available */
    font-style: italic;
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.5;
    border-left: 4px solid var(--primary);
    padding: 18px 0 18px 22px;
    background: rgba(var(--primary-rgb), .12);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: var(--shadow-glow);
}

.feature-text h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

.feature-text p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.mt-4 {
    margin-top: 25px;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .about-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-content-col {
        padding: 0 10px;
    }

    .about-text {
        text-align: justify;
    }
}

.visit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.visit-card {
    padding: 30px 20px;
    text-align: center;
}

.card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    transition: var(--transition);
}

.visit-card:hover .card-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1) translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.visit-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.visit-card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Video */
.standout-card {
    padding: 15px;
    margin-bottom: 60px;
}

.video-placeholder {
    height: 380px;
    border-radius: var(--radius-md);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(var(--bg-dark-rgb), 0.34);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.video-placeholder:hover .video-overlay {
    background: rgba(var(--bg-dark-rgb), 0.5);
}

.play-btn-pulse {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    position: relative;
    z-index: 2;
    padding-left: 5px;
}

.play-btn-pulse::before,
.play-btn-pulse::after {
    content: '';
    position: absolute;
    inset: -15px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    animation: ripple 2s infinite linear;
}

.play-btn-pulse::after {
    inset: -30px;
    animation-delay: 1s;
}

@keyframes ripple {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.video-info {
    padding: 20px 10px 5px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.live-badge {
    background: var(--primary-hover);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    animation: pulseBg 2s infinite;
}

@keyframes pulseBg {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
    }
}

.video-info h3 {
    font-size: 20px;
}

/* Events */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 60px;
}

.event-item {
    display: flex;
    padding: 20px;
    gap: 25px;
    align-items: center;
}

.event-date-modern {
    background: var(--text-dark);
    color: var(--white);
    min-width: 80px;
    height: 90px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 -4px 0 var(--primary);
}

.event-date-modern span {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: #aaa;
}

.event-date-modern strong {
    font-size: 32px;
    font-family: var(--font-heading);
    line-height: 1;
}

.event-details {
    flex: 1;
}

.event-details h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.event-details p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 12px;
}

.link-forward {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.link-forward i {
    transition: var(--transition);
}

.link-forward:hover i {
    transform: translateX(5px);
}

/* Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.step-card {
    display: flex;
    align-items: center;
    padding: 15px;
    gap: 20px;
}

.step-img {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: var(--radius-md);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.step-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(var(--bg-dark-rgb), 0.42);
    transition: var(--transition);
}

.step-icon {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.step-card:hover .step-img::after {
    background: rgba(var(--primary-rgb), 0.72);
}

.step-info h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.step-info p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.gallery-item {
    height: 200px;
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(var(--bg-dark-rgb), 0.82) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.gallery-overlay span {
    color: white;
    font-weight: 600;
    font-size: 16px;
    transform: translateY(10px);
    opacity: 0.8;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
    opacity: 1;
}

/* Sidebar */
.side-title {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 10px;
}

.side-messages-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 50px;
}

.msg-thumb {
    display: flex;
    gap: 15px;
    padding: 12px;
    align-items: center;
}

.msg-thumb .thumb-img {
    width: 90px;
    height: 65px;
    border-radius: var(--radius-md);
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.msg-thumb .thumb-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(var(--bg-dark-rgb), 0.34);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.circle-play {
    color: white;
    z-index: 1;
    font-size: 18px;
    opacity: 0.8;
    transition: var(--transition);
}

.msg-thumb:hover .thumb-img::after {
    background: rgba(var(--primary-rgb), 0.56);
}

.msg-thumb:hover .circle-play {
    opacity: 1;
    transform: scale(1.2);
}

.msg-text h4 {
    font-size: 14px;
    margin-bottom: 4px;
}

.msg-text small {
    color: var(--text-muted);
    font-size: 12px;
}

/* Sidebar Cards */
.featured-side-card {
    padding: 15px;
    margin-bottom: 30px;
}

.vision-img {
    height: 200px;
    border-radius: var(--radius-md);
    background-size: cover;
    background-position: center;
    margin-bottom: 20px;
}

.vision-content h4 {
    font-size: 22px;
    font-family: var(--font-heading);
    margin-bottom: 10px;
}

.vision-content p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.action-card {
    position: relative;
    background-size: cover;
    background-position: center;
    color: white;
    padding: 40px 30px;
    text-align: center;
    margin-bottom: 30px;
    border: none;
}

.action-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.92) 0%, rgba(217, 166, 70, 0.92) 100%);
    border-radius: var(--radius-md);
}

.action-overlay.dark {
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.9) 0%, rgba(var(--bg-dark-rgb), 0.88) 100%);
}

.action-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-large {
    font-size: 40px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.action-card h4 {
    font-size: 24px;
    font-family: var(--font-heading);
    color: white;
    margin-bottom: 15px;
}

.action-card p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.search-box-modern {
    display: flex;
    width: 100%;
    gap: 10px;
}

.search-box-modern input {
    flex: 1;
    padding: 12px 15px;
    border-radius: 4px;
    border: none;
    font-family: var(--font-main);
    outline: none;
}

/* Ministries List */
.ministries-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

.ministry-item {
    height: 100px;
    position: relative;
    display: flex;
    align-items: flex-end;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.ministry-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ministry-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(var(--bg-dark-rgb), 0.82) 0%, rgba(var(--bg-dark-rgb), 0.12) 100%);
    transition: var(--transition);
}

.ministry-item:hover::after {
    background: linear-gradient(to right, rgba(var(--primary-rgb), 0.78) 0%, rgba(var(--bg-dark-rgb), 0.34) 100%);
}

.ministry-text {
    position: relative;
    z-index: 1;
    padding: 20px;
    color: white;
}

.ministry-text h5 {
    font-size: 18px;
    color: white;
    font-family: var(--font-heading);
}

/* Modern Footer */
.modern-footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 80px 0 20px;
    margin-top: 0px;
    border-top: 4px solid var(--primary);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    margin-bottom: 25px;
    max-width: 400px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 25px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
}

.footer-links ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-contact i {
    color: var(--primary);
    font-size: 18px;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
    text-align: center;
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
}

@media (max-width: 768px) {
    .header-container {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    header.scrolled {
        backdrop-filter: none;
        background: var(--bg-dark);
    }

    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        color: white;
        font-size: 24px;
        cursor: pointer;
        z-index: 1001;
    }

    .mobile-members-link {
        display: inline-flex;
        color: var(--white);
        z-index: 1001;
    }

    header.scrolled .mobile-menu-btn {
        color: var(--white);
    }

    header.scrolled .mobile-members-link {
        color: var(--white);
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--surface);
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .main-nav.menu-open {
        display: block !important;
        animation: fadeInMenu 0.3s forwards;
    }

    @keyframes fadeInMenu {
        from {
            opacity: 0;
            transform: translateY(-5px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .main-nav ul {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .main-nav ul li a {
        color: var(--text-dark) !important;
        text-shadow: none !important;
        display: block;
        padding: 5px 0;
    }

    .mobile-members-item {
        display: list-item;
    }

    .btn-members {
        display: none;
    }

    .hero-content {
        margin-top: 80px;
    }

    .glorious-title {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .divine-subtitle {
        font-size: 14px;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }

    .hero-text {
        font-size: 14px;
        margin-bottom: 30px;
        padding: 0 15px;
    }

    .hero-btns {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
        width: 100%;
    }

    .hero-btns .btn {
        width: 100%;
        min-width: unset;
        font-size: 13px;
        padding: 14px;
    }

    .main-wrapper {
        padding: 40px 0;
    }

    .slider-controls {
        padding: 0 10px;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .visit-grid,
    .steps-grid,
    .gallery-grid,
    .events-list,
    .kids-grid {
        grid-template-columns: 1fr;
    }

    .event-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .thumb-mini {
        width: 100%;
        height: 180px;
    }

    .step-card {
        flex-direction: column;
        text-align: center;
    }

    .step-img {
        width: 100%;
        height: 120px;
    }

    .video-placeholder {
        height: 200px;
    }

    .video-info {
        flex-direction: column;
        text-align: center;
    }

    .app-stores {
        flex-direction: column;
    }

    .gc-info-area .section-title {
        font-size: 24px;
    }

    .gc-home-section {
        padding: 30px 0 60px 0;
    }
}

/* Kids Section */
.kids-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    width: 100%;
}

.kids-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.kids-card {
    padding: 35px 30px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 30px;
    color: white;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.badge-blue {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.badge-orange {
    background: linear-gradient(135deg, #ff7e5f 0%, #feb47b 100%);
}

.kids-title {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 15px;
}

.kids-desc {
    color: var(--text-muted);
    font-size: 14.5px;
    margin-bottom: 20px;
}

.kids-divider {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin: 25px 0;
}

.kids-info-list h4 {
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.kids-info-list ul {
    list-style-type: none;
    padding: 0;
}

.kids-info-list ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text-muted);
}

.kids-info-list ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

.alert-warning {
    background: #fff3cd;
    border: 1px solid #ffeeba;
    color: #856404;
    padding: 15px 20px;
    border-radius: var(--radius-md);
    display: flex;
    gap: 15px;
}

.alert-warning i {
    font-size: 20px;
    margin-top: 2px;
}

.alert-warning p {
    font-size: 14px;
    margin: 0;
    font-weight: 500;
}

.app-stores {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-dark);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    transition: var(--transition);
}

.store-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.store-btn i {
    font-size: 28px;
}

.store-text {
    display: flex;
    flex-direction: column;
}

.store-text small {
    font-size: 10px;
    line-height: 1;
}

.store-text span {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
}

.kids-hint {
    font-size: 12px;
    color: #888;
    margin-top: 15px;
}


/* GC Section */
.gc-home-section {
    position: relative;
    overflow: hidden;
    padding: 0;
    background: var(--surface);
    margin: 80px 0;
}

.gc-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--bg-dark) 100%);
    z-index: 0;
}

.gc-wave-shape {
    position: absolute;
    top: 150px;
    left: 0;
    width: 100%;
    height: 60px;
    line-height: 0;
    z-index: 1;
}

.gc-wave-shape svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100%;
}

.gc-wave-shape .shape-fill {
    fill: var(--surface);
}

.gc-content-wrapper {
    position: relative;
    z-index: 2;
    padding: 60px 40px;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: center;
}

.gc-contact-card {
    background: var(--surface);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    transform: translateY(-40px);
}

.gc-contact-icon {
    width: 70px;
    height: 70px;
    background: rgba(var(--primary-rgb), 0.12);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 25px;
}

.gc-contact-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.gc-contact-divider {
    width: 40px;
    height: 3px;
    background: var(--primary);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.gc-contact-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.phone-link a,
.email-link a {
    color: var(--text-dark);
    font-weight: 600;
    transition: var(--transition);
}

.phone-link a:hover,
.email-link a:hover {
    color: var(--primary);
}

.gc-info-area {
    padding-top: 20px;
}

.text-light-muted {
    color: rgba(16, 36, 80, 0.68);
    font-size: 16px;
    line-height: 1.8;
}

@media (max-width: 992px) {
    .gc-content-wrapper {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        gap: 40px;
    }

    .gc-contact-card {
        transform: translateY(0);
        order: 2;
    }

    .gc-info-area {
        order: 1;
        text-align: center;
    }

    .gc-info-area .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* GC Modern Section */
.gc-modern-section {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    box-shadow: var(--shadow-md);
}

.gc-modern-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 10s ease;
}

.gc-modern-section:hover .gc-modern-bg {
    transform: scale(1.1);
}

.gc-modern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(var(--bg-dark-rgb), 0.92) 0%, rgba(var(--bg-dark-rgb), 0.64) 50%, rgba(var(--bg-dark-rgb), 0.22) 100%);
    z-index: 1;
}

.gc-modern-content {
    position: relative;
    z-index: 2;
    padding: 60px;
    max-width: 600px;
    width: 100%;
}

.gc-text-content h2 {
    font-size: 36px;
    margin: 15px 0 20px;
    font-family: var(--font-heading);
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.gc-text-content p {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.gc-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .gc-modern-content {
        padding: 40px 20px;
    }
    
    .gc-text-content h2 {
        font-size: 28px;
    }
    
    .gc-modern-overlay {
        background: rgba(var(--bg-dark-rgb), 0.72);
    }
}


.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


#upcoming-events {
    padding: 80px 0;
    background-color: #f9f9f9;
    width: 100%;
}

@media (max-width: 768px) {
    #upcoming-events {
        padding: 10px 0;
    }
}


@media (max-width: 768px) {
    .kids-grid {
        grid-template-columns: 1fr;
    }
}

