:root {
    --primary-color: #737373;
    --secondary-color: #f8f9fa;
    --accent-color: #3b2e02;
    --text-dark: #333;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

.hero-slider {
    height: 500px;
    position: relative;
}

.carousel-item {
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 85, 48, 0.6);
    z-index: 1;
}

.carousel-caption {
    z-index: 2;
    bottom: 50%;
    transform: translateY(50%);
}

.prayer-times {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 60px 0;
}

.prayer-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
}

.prayer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.prayer-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #ffd700;
}

.prayer-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.prayer-time {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
}

.section-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-color);
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.current-prayer {
    background: rgba(255, 215, 0, 0.2);
    border: 2px solid #ffd700;
}

footer {
    background-color: var(--primary-color);
    color: white;
    padding: 40px 0 20px;
}

.lecture-card {
    position: relative;
    transition: transform 0.3s ease;
}

.lecture-card:hover {
    transform: translateY(-5px);
}

.play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    text-decoration: none;
}

.lecture-card:hover .play-overlay {
    opacity: 1;
}

.circle {
    border-radius: 100%;
    width: 200px;
    height: 200px;
    background: #fff;
}

/* Lightbox Container */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1050;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

/* Gambar di dalam Lightbox */
.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80%;
}

/* Tombol Close */
.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* Tombol Navigasi */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    padding: 15px;
    margin-top: -30px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    border-radius: 3px;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.3);
    transition: 0.3s;
    text-decoration: none;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

.prev:hover,
.next:hover,
.close:hover {
    color: #f1f1f1;
}

.service-card {
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    border: 1px solid #eaeaea;
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    border-color: #0dfd6d;
    background-color: #fdfdfd;
}

/* Efek hover pada gambar */
.service-card img {
    transition: transform 0.2s ease;
}

.service-card:hover img {
    transform: scale(1.02);
}

/* Efek hover pada judul */
.service-card h5 {
    transition: color 0.2s ease;
}

.service-card:hover h5 {
    color: #0dfd6d;
}

/* Efek hover sederhana dan elegan */
.gallery-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.gallery-item {
    border-radius: 6px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
    filter: brightness(0.95);
}