/* Voice of Angel Church - Shared Styles */
:root {
    --primary: #EE4078;
    --selected: #BB3375;
    --text-primary: #35173D;
    --background-light: #DFC5DD;
    --accent-purple: #792D90;
    --app-bar: #6E1F61;
    --nav-unselected: #644266;
    --dark-ui: #502D65;
    --deep-highlight: #88164E;
}

.email-text {
    unicode-bidi: plaintext;
    direction: rtl;
}

.lazy-img {
    opacity: 0;
    transition: opacity 0.3s ease-in;
}

.lazy-img.loaded {
    opacity: 1;
}

.lazy-iframe {
    opacity: 0;
    transition: opacity 0.3s ease-in;
}

.lazy-iframe.loaded {
    opacity: 1;
}

.lazy-div {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.lazy-div.loaded {
    opacity: 1;
    transform: translateY(0);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f5f5f5;
    color: var(--text-primary);
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== HEADER / NAVIGATION ========== */
.header {
    background: var(--app-bar);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
}

.logo-img {
    height: 50px;
    width: auto;
}

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

.logo-tagline {
    font-size: 10px;
    opacity: 0.8;
    display: block;
}

/* Desktop Navigation */
.nav-desktop {
    display: flex;
    gap: 5px;
}

.nav-desktop a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.nav-desktop a:hover,
.nav-desktop a.active {
    background: rgba(255,255,255,0.15);
    color: white;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-actions a {
    color: white;
    font-size: 18px;
    transition: opacity 0.3s;
}

.header-actions a:hover {
    opacity: 0.8;
}

/* Language Toggle */
.lang-toggle {
    position: relative;
}

.lang-toggle button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 8px 14px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
}

.lang-toggle button:hover {
    background: rgba(255,255,255,0.25);
}

.lang-toggle i {
    font-size: 14px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    visibility: hidden;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

/* Mobile Navigation */
.nav-mobile {
    display: none !important;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--app-bar);
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    z-index: 999;
}

.nav-mobile.active {
    display: block !important;
}

.nav-mobile a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    transition: background 0.3s;
}

.nav-mobile a:hover,
.nav-mobile a.active {
    background: rgba(255,255,255,0.15);
}

/* ========== HERO SECTION ========== */
.hero {
    background: linear-gradient(135deg, var(--app-bar), var(--dark-ui));
    padding: 80px 0;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== HERO CAROUSEL (jesuscalls.org style) ========== */
#hero {
    padding: 0;
    background: #000;
    position: relative;
}

#hero .carousel-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

#hero .carousel-slides {
    position: relative;
    height: 60vh;
    min-height: 400px;
}

#hero .carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#hero .carousel-item.active {
    opacity: 1;
    visibility: visible;
}

#hero .carousel-item::before {
    content: "";
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

#hero .carousel-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 80px;
}

#hero .carousel-image {
    flex-shrink: 0;
    width: 300px;
    margin-right: 60px;
}

#hero .carousel-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

#hero .carousel-content {
    position: relative;
    z-index: 2;
    
    max-width: 600px;
    flex: 1;
    text-align: center;
}

#hero .carousel-content h2 {
    color: #fff;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 1px 0 #000;
}

#hero .carousel-content p {
    color: #fff;
    font-size: 20px;
    width: 100%;
    margin-bottom: 30px;
    text-shadow: 0 1px 0 #000;
    animation-delay: 0.4s;
    padding: 0 30px;
}

#hero .hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

#hero .slider-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

#hero .slider-link:hover {
    background: var(--selected);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

#hero .slider-link.outline {
    background: transparent;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(255,255,255,0.2);
}

#hero .slider-link.outline:hover {
    background: #fff;
    color: var(--app-bar);
}

/* Carousel Controls */
#hero .carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

#hero .carousel-control:hover {
    background: rgba(255,255,255,0.3);
}

#hero .carousel-control.prev {
    left: 30px;
}

#hero .carousel-control.next {
    right: 30px;
}

/* Carousel Indicators */
#hero .carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

#hero .indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    padding: 0;
}

#hero .indicator:hover {
    background: rgba(255,255,255,0.7);
}

#hero .indicator.active {
    background: #fff;
    width: 40px;
    border-radius: 7px;
}

.btn {
    padding: 14px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--selected);
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: var(--app-bar);
}

.btn-secondary:hover {
    background: var(--background-light);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: var(--app-bar);
}

/* ========== ABOUT SECTION ========== */
.about-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    width: 400px;
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
     
    object-fit: cover;
}

.about-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--app-bar);
    margin-bottom: 20px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 15px;
}

/* ========== SECTIONS ========== */
.section {
    padding: 80px 0;
}

.section-alt {
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--app-bar);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 16px;
    color: var(--nav-unselected);
    max-width: 600px;
    margin: 0 auto;
}

/* ========== CARDS GRID ========== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* ========== VIDEO GRID ========== */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.video-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.video-card iframe {
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
}

.card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.card-icon i {
    font-size: 30px;
    color: white;
}

.card-icon.pink { background: linear-gradient(135deg, var(--primary), var(--selected)); }
.card-icon.purple { background: linear-gradient(135deg, var(--accent-purple), var(--app-bar)); }
.card-icon.dark { background: linear-gradient(135deg, var(--dark-ui), var(--deep-highlight)); }

.card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.card p {
    font-size: 14px;
    color: var(--nav-unselected);
}

/* ========== Youtube ========== */
.ytmVideoInfoHostory {
    display: none !important
}
.ytmVideoInfoHost {
    display: none !important;
}

.ytmVideoInfoVideoDetailsContainer{display:none !important;}

/* ========== EVENT CARDS ========== */
.event-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.event-image {
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 50px;
}

.event-image i {
    opacity: 0.5;
}

.event-content {
    padding: 25px;
}

.event-date {
    display: inline-block;
    background: var(--background-light);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--app-bar);
    margin-bottom: 10px;
}

.event-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.event-content p {
    font-size: 14px;
    color: var(--nav-unselected);
}

/* ========== VIDEO LYRICS GRID ========== */
.video-lyrics-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
    align-items: start;
}

.video-card {
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

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

.lyrics-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    padding-top: 0px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 100px;
     
}

.lyrics-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--app-bar);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--background-light);
     
}

.lyrics-box {
    background: var(--background-light);
    border-radius: 12px;
    padding: 20px;
    min-height: 300px;
    max-height: 500px;
    overflow-y: auto;
    height: 120px;
}

.lyrics-box p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-primary);
    white-space: pre-line;
}

/* ========== TESTIMONY CARDS ========== */
.testimony-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
}

.testimony-card::before {
    content: '"';
    font-size: 80px;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: Georgia, serif;
}

.testimony-card p {
    font-size: 16px;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimony-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimony-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--selected));
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: 700;
}

.testimony-info h4 {
    font-size: 16px;
    font-weight: 600;
}

.testimony-info p {
    font-size: 13px;
    color: var(--nav-unselected);
    margin: 0;
}

/* ========== LIVE SECTION ========== */
.live-container {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.live-video {
    height: 400px;
    background: linear-gradient(135deg, var(--dark-ui), var(--app-bar));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    position: relative;
}

.live-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: red;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    animation: pulse 1.5s infinite;
}

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

.live-video i {
    padding-top: 165px;
    font-size: 40px;
    margin-bottom: 0px;
    opacity: 0.8;
}

.live-info {
    padding: 30px;
}

.live-info h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.live-info p {
    color: var(--nav-unselected);
}

/* ========== PRAYER CATEGORIES ========== */
.prayer-category {
    background: linear-gradient(135deg, var(--primary), var(--selected));
    border-radius: 20px;
    padding: 35px;
    color: white;
    transition: all 0.3s;
    cursor: pointer;
}

.prayer-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(238, 64, 120, 0.3);
}

.prayer-category h3 {
    font-size: 22px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.prayer-category h3 i {
    font-size: 28px;
}

.prayer-category p {
    opacity: 0.9;
    font-size: 14px;
}

/* ========== CALENDAR ========== */
.calendar {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.calendar-header h3 {
    font-size: 22px;
    font-weight: 700;
}

.calendar-nav {
    display: flex;
    gap: 10px;
}

.calendar-nav button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--background-light);
    cursor: pointer;
    transition: all 0.3s;
}

.calendar-nav button:hover {
    background: var(--app-bar);
    color: white;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.calendar-day-name {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--nav-unselected);
    padding: 10px 0;
}

.calendar-day {
    text-align: center;
    padding: 12px;
    font-size: 14px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.calendar-day:hover {
    background: var(--background-light);
}

.calendar-day.today {
    background: var(--primary);
    color: white;
    font-weight: 700;
}

.calendar-day.event {
    background: var(--background-light);
    font-weight: 600;
}

/* ========== PROFILE SECTION ========== */
.profile-header {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, var(--app-bar), var(--dark-ui));
    color: white;
    border-radius: 20px;
    margin-bottom: 30px;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.profile-avatar i {
    font-size: 50px;
}

.profile-header h2 {
    font-size: 28px;
    margin-bottom: 5px;
}

.profile-header p {
    opacity: 0.9;
}

.profile-menu {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.profile-menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid var(--background-light);
    cursor: pointer;
    transition: background 0.3s;
}

.profile-menu-item:hover {
    background: var(--background-light);
}

.profile-menu-item:last-child {
    border-bottom: none;
}

.profile-menu-item .left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.profile-menu-item i.fa-icon {
    font-size: 20px;
    color: var(--app-bar);
    width: 24px;
}

.profile-menu-item span {
    font-size: 16px;
}

.profile-menu-item i.fa-arrow {
    color: var(--nav-unselected);
}

/* ========== ADMIN DASHBOARD ========== */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.stat-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.stat-card i {
    font-size: 35px;
    color: var(--app-bar);
    margin-bottom: 15px;
}

.stat-card h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.stat-card p {
    font-size: 14px;
    color: var(--nav-unselected);
}

/* ========== CONTACT CARDS ========== */
.contact-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    display: flex;
     
    gap: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 24px;
    color: white;
}

.contact-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-info p {
    color: var(--nav-unselected);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--app-bar);
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col p,
.footer-col a {
    font-size: 14px;
    opacity: 0.85;
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.footer-col a:hover {
    opacity: 1;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 14px;
    opacity: 0.8;
}

/* ========== TWO COLUMN LAYOUT ========== */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* ========== BIBLE VERSE ========== */
.verse-card {
    background: linear-gradient(135deg, #cfcdcf, #f8f4f9);
    border-radius: 20px;
    padding: 10px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(187, 51, 117, 0.1);
    margin: 40px 0;
    border: 1px solid rgba(187, 51, 117, 0.08);
}

.verse-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--app-bar);
    margin-bottom: 20px;
}

.verse-card .verse {
    font-size: 20px;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 15px;
}

.verse-card .reference {
    font-weight: 700;
    color: var(--primary);
}

/* ========== QUICK ACTIONS GRID ========== */
.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
   
    background-size: cover;
}

.quick-action-item {
    text-align: center;
    padding: 15px 7px;
    background: linear-gradient(135deg, #ffcdff, #f8f4f9);
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(187, 51, 117, 0.06);
}

.quick-action-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/images/Angel_Voice_Wave.png') center/cover no-repeat;
    opacity: 0.5;
    z-index: 0;
}

.quick-action-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.quick-action-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--selected));
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    position: relative;
    z-index: 1;
}

.quick-action-icon i {
    font-size: 24px;
    color: white;
}

.quick-action-item span {
    font-size: 14px;
    font-weight: 500;
}

/* ========== PAGE HEADER ========== */
.page-header {
    background: linear-gradient(135deg, var(--app-bar), var(--dark-ui));
    padding: 50px 0;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 16px;
    opacity: 0.9;
}

/* ========== TOAST ========== */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--text-primary);
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 14px;
    opacity: 0;
    transition: all 0.3s;
    z-index: 2000;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

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

/* Tablet */
@media (max-width: 992px) {
    .nav-desktop {
        display: flex;
    }
    
    .menu-toggle {
        display: none !important;
    }
    
    .nav-mobile {
        display: none !important;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .section {
        padding: 30px 0;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .two-col {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-image {
        width: 100%;
        max-width: 400px;
        height: 350px;
        margin: 0 auto;
    }
    
    .about-content h2 {
        font-size: 26px;
    }
    
    .quick-actions-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
    
    .live-video {
        height: 300px;
    }
}

/* Large screens (min-width: 1024px) - jesuscalls.org style */
@media (min-width: 1024px) {
    #hero .carousel-content p {
        width: 60%;
    }
    
    #hero .carousel-control.prev,
    #hero .carousel-control.next {
        width: 5%;
    }
}
    
    /* Hero Carousel Tablet (992px) */
    #hero,
    #hero .carousel-slides,
    #hero .carousel-item {
        height: auto;
        min-height: 52vh;
        width: 100%;
        overflow: hidden;
    }
    
    #hero .carousel-inner {
        padding: 40px 50px;
        justify-content: center;
    }
    
    #hero .carousel-content {
        text-align: center;
        max-width: 100%;
    }
    
    #hero .carousel-content h2 {
        font-size: 36px;
    }
    
    #hero .carousel-content p {
        width: 100%;
        font-size: 18px;
        padding: 0 30px;
    }
    
    #hero .carousel-control {
        width: 50px;
        height: 50px;
    }
    
    #hero .carousel-control.prev {
        left: 15px;
    }
    
    #hero .carousel-control.next {
        right: 15px;
    }

/* Mobile */
@media (max-width: 768px) {
    .nav-desktop {
        display: none !important;
    }
    
    .header-container {
        padding: 0 15px;
    }
    
    .header-actions {
        gap: 10px;
    }
    
    .header-actions button.menu-toggle,
    button.menu-toggle,
    .menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .lang-toggle {
        display: none !important;
    }
    
    .header-actions a:not(.menu-toggle) {
        display: none !important;
    }
    
    .logo-text {
        display: none !important;
    }
    
    .nav-mobile {
        display: none !important;
    }
    
    .nav-mobile.active {
        display: block !important;
    }
    
    .video-lyrics-grid {
        display: block;
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .video-card {
        margin-bottom: 20px;
    }
    
    .lyrics-card {
        position: static;
    }
    
    .lyrics-box {
        min-height: 200px;
    }
    
    .hero {
        padding: 50px 0;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .about-image {
        width: 100%;
        max-width: 350px;
        height: 320px;
    }
    
    .about-content h2 {
        font-size: 24px;
    }
    
    .about-content p {
        font-size: 15px;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        padding: 5px;
    }
    
    .quick-actions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .audio-card {
        flex-direction: column;
        text-align: center;
    }
    
    .play-btn {
        width: 60px;
        height: 60px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .calendar-grid {
        gap: 5px;
    }
    
    .calendar-day {
        padding: 8px 4px;
        font-size: 12px;
    }
    
    .two-col {
        gap: 30px;
    }
    
    /* Hero Carousel Mobile (768px) */
    #hero {
        min-height: auto;
    }
    
    #hero .carousel-slides {
        height: auto;
        min-height: auto;
        position: relative;
    }
    
    #hero .carousel-item {
        position: relative;
        height: auto;
        min-height: 250px;
        width: 100%;
        overflow: hidden;
        display: none;
    }
    
    #hero .carousel-item.active {
        display: flex;
        align-items: center;
    }
    
    #hero .carousel-inner {
        flex-direction: row;
        padding: 15px;
        
        min-height: 250px;
        align-items: center;
        justify-content: center;
    }
    
    #hero .carousel-image {
        width: 120px;
        margin-right: 20px;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    #hero .carousel-content {
       
        max-width: 100%;
        flex: 1;
        text-align: center;
    }
    
    #hero .carousel-content h2 {
        font-size: 20px;
        margin-bottom: 8px;
        line-height: 1.2;
    }
    
    #hero .carousel-content p {
        width: 100%;
        font-size: 12px;
        margin-bottom: 10px;
        padding: 0 30px;
    }
    
    #hero .hero-buttons {
        flex-direction: column;
        
        gap: 8px;
    }
    
    #hero .slider-link {
        padding: 8px 14px;
        font-size: 11px;
    }
    
    #hero .slider-link i {
        font-size: 11px;
    }
    
    #hero .slider-link {
        padding: 10px 16px;
        font-size: 12px;
        gap: 6px;
    }
    
    #hero .slider-link i {
        font-size: 12px;
    }
    
    #hero .carousel-indicators {
        bottom: 10px;
    }
    
    #hero .indicator {
        width: 10px;
        height: 10px;
    }
    
    #hero .indicator.active {
        width: 30px;
    }
    
    #hero .carousel-control {
        width: 36px;
        height: 36px;
        font-size: 14px;
        top: 40%;
    }
    
    #hero .carousel-control.prev {
        left: 5px;
    }
    
    #hero .carousel-control.next {
        right: 5px;
    }
    
    #hero .carousel-control {
        width: 40px;
        height: 40px;
        font-size: 16px;
        top: 45%;
    }
    
    #hero .carousel-control.prev {
        left: 10px;
    }
    
    #hero .carousel-control.next {
        right: 10px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header-container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 24px;
    }
    
    .quick-actions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .quick-action-item {
        padding: 20px 10px;
    }
    
    .quick-action-icon {
        width: 50px;
        height: 50px;
    }
    
    .quick-action-icon i {
        font-size: 20px;
    }
    
    .quick-action-item span {
        font-size: 12px;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
    
    .profile-menu-item {
        padding: 15px 20px;
    }
    
    .profile-menu-item span {
        font-size: 14px;
    }

    .video-lyrics-grid {
        display: block;
        grid-template-columns: 1fr;
        gap: 0;
        
    }
    .lyrics-card{
padding-top: 10px !important;

    }

    /* Hero Carousel Small Mobile (480px) */
    #hero .carousel-item {
        min-height: 200px;
    }
    
    #hero .carousel-inner {
        padding: 10px;
        min-height: 200px;
        justify-content: center;
    }
    
    #hero .carousel-image {
        width: 80px;
        margin-right: 12px;
        margin-bottom: 0;
    }
    
    #hero .carousel-content {
        text-align: center;
    }
    
    #hero .carousel-content h2 {
        font-size: 16px;
        margin-bottom: 5px;
    }
    
    #hero .carousel-content p {
        font-size: 10px;
        margin-bottom: 8px;
        padding: 0 20px;
    }
    
    #hero .slider-link {
        padding: 6px 10px;
        font-size: 10px;
    }
    
    #hero .slider-link i {
        font-size: 10px;
    }
    
    #hero .hero-buttons {
        gap: 6px;
    }
    
    #hero .carousel-control {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}
