:root {
    --primary-color: #1a4d4d;
    --secondary-color: #7dd3c7;
    --accent-color: #ffc107;
    --text-dark: #1a1a1a;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #1a4d4d 0%, #2d5a5a 100%);
    --gradient-secondary: linear-gradient(135deg, #7dd3c7 0%, #a8e6cf 100%);
    --gradient-accent: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    --font-family: 'Inter', Helvetica, Arial, sans-serif;
}

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

/* Global Typography */
p, span, div, li, a, button, input, textarea, label, small, strong, em, b, i {
    font-family: var(--font-family);
}

/* Font Weight Utilities */
.font-light { font-weight: 300; }
.font-regular { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

/* Button and Form Typography */
button, input, textarea, select {
    font-family: var(--font-family);
}

.btn {
    font-family: var(--font-family);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(26, 77, 77, 0.1);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    font-family: var(--font-family);
    font-weight: 500;
    color: var(--text-dark) !important;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    background: rgba(26, 77, 77, 0.1);
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Hero Carousel */
.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 77, 77, 0.7) 0%, rgba(45, 90, 90, 0.8) 100%);
    z-index: 2;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
    justify-content: center !important;
    align-items: center !important;
    width: auto;
    min-width: fit-content;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

.indicator.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: scale(1.2);
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.carousel-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-prev {
    left: 30px;
}

.carousel-next {
    right: 30px;
}

.carousel-nav i {
    font-size: 1.2rem;
    color: white;
}

/* Floating Statistics Cards */
.floating-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    min-width: 120px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    position: relative;
    z-index: 3;
}

/* Hero Action Buttons */
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.hero-btn:hover::before {
    left: 100%;
}

.journeys-btn {
    background: var(--accent-color);
    color: var(--text-dark);
    border-color: var(--accent-color);
}

.journeys-btn:hover {
    background: transparent;
    color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.4);
}

.songs-btn {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.songs-btn:hover {
    background: var(--white);
    color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

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

.worshipper-btn:hover {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(26, 77, 77, 0.4);
}

.hero h1 {
    font-family: var(--font-family);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-family: var(--font-family);
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 800px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styling */
.content-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.content-section:nth-child(even) {
    background: var(--bg-light);
}

/* Lightweight slanted design - only for specific sections */
.content-section {
    position: relative;
}

/* Remove any pseudo-elements */
.content-section::after,
.content-section::before {
    display: none;
}

/* Simple slanted design - only for basic sections */
.worshipper-section {
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    background: var(--white);
    position: relative;
    z-index: 1;
}

.thirst-section {
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    background: var(--gradient-secondary);
    position: relative;
    z-index: 1;
}

/* Footer section - slanted top */
.footer {
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
    background: var(--gradient-primary);
    position: relative;
    z-index: 1;
}

/* Ensure next sections don't show through slanted edges */
.thirst-section {
    background: var(--gradient-secondary);
    position: relative;
    z-index: 0;
    margin-top: -80px;
    padding-top: 6rem;
}

.desire-section {
    background: var(--white);
    position: relative;
    z-index: 0;
    margin-top: -80px;
    padding-top: 6rem;
}

.section-title {
    font-family: var(--font-family);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 600;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Worshipper Section */
.worshipper-section {
    background: var(--white);
}

.worshipper-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.worshipper-icon {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    display: inline-block;
    padding: 2rem;
    background: rgba(125, 211, 199, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.worshipper-icon:hover {
    transform: scale(1.1) rotate(10deg);
    background: rgba(125, 211, 199, 0.2);
}

/* Thirst Section */
.thirst-section {
    background: var(--gradient-secondary);
    color: var(--text-dark);
}

.thirst-section .section-title {
    color: var(--text-dark);
}

.thirst-section .section-title::after {
    background: var(--accent-color);
}

.thirst-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.bible-quote {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    font-style: italic;
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border-left: 4px solid var(--accent-color);
    backdrop-filter: blur(10px);
}

/* Desire Section */
.desire-section {
    background: var(--white);
    position: relative;
}

.desire-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 49%, rgba(125, 211, 199, 0.05) 50%, transparent 51%);
    pointer-events: none;
}

.desire-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.desire-icon {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    display: inline-block;
    padding: 2rem;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.desire-icon:hover {
    transform: scale(1.1) rotate(-10deg);
    background: rgba(255, 193, 7, 0.2);
}

/* Content Typography */
.section-content {
    font-family: var(--font-family);
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto;
}

.thirst-section .section-content {
    color: var(--text-dark);
}

/* Spiritual Journeys Section */
.journeys-section {
    background: linear-gradient(135deg, #2c1810 0%, #1a0f0a 100%);
    color: var(--white);
    padding: 5rem 0;
}

.journeys-section .section-title {
    color: var(--primary-color);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.journeys-section .section-subtitle {
    font-family: var(--font-family);
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.journey-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-height: 320px;
    width: 100%;
}

/* Custom CSS Grid for Journeys - Landscape Mode */
#journeys-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)) !important;
    gap: 1.5rem !important;
    padding: 0 !important;
}

#journeys-grid .journey-card {
    margin: 0 !important;
    width: 100% !important;
}

/* Responsive grid columns - Always 3 per row on larger screens */
@media (min-width: 768px) {
    #journeys-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (min-width: 992px) {
    #journeys-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (min-width: 1400px) {
    #journeys-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        max-width: 1400px !important;
        margin: 0 auto !important;
    }
}

.journey-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-color);
    opacity: 0.1;
    transition: all 0.3s ease;
}

.journey-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-color);
}

.journey-card:hover::before {
    opacity: 0.2;
}

.journey-cover {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(45deg, var(--accent-color), #8B4513);
}

.journey-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.journey-cover i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.8);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.journey-details {
    padding: 1.2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.journey-details h4 {
    font-family: var(--font-family);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.journey-details p {
    color: rgba(0, 0, 0, 0.7);
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 2.8em;
}

.journey-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1.2rem 1.2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: auto;
}

.journey-category {
    background: transparent;
    color: rgba(0, 0, 0, 0.6);
    padding: 0;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.journey-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.journey-language {
    color: rgba(0, 0, 0, 0.6);
    font-size: 0.85rem;
    font-weight: 500;
}

.journey-btn {
    padding: 0.6rem 1.2rem;
    border: none;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.journey-btn:hover {
    background: var(--accent-color);
    color: var(--text-dark);
    text-decoration: none;
    transform: translateY(-2px);
}

.journey-btn.primary {
    background: var(--accent-color);
    color: var(--text-dark);
}

.journey-btn.primary:hover {
    background: transparent;
    color: var(--accent-color);
}

/* Songs Section */
.songs-section {
    background: var(--gradient-primary) !important;
    color: var(--white);
    padding: 5rem 0;
}

.songs-section .section-title {
    color: var(--white) !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.song-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.song-card:not([style*="--song-bg-image"])::before {
    background: linear-gradient(135deg, var(--gradient-secondary) 0%, var(--gradient-primary) 100%);
    opacity: 0.1;
}

.song-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--song-bg-image, none);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.25;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.song-card:hover::before {
    opacity: 0.35;
}

.song-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 193, 7, 0.3);
}

.song-card.playable {
    border-color: var(--accent-color);
}

.song-card.playable::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--song-bg-image, none);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.song-card.playable::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    z-index: 3;
}

.song-card.playable:hover {
    border-color: var(--primary-color);
}

.song-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    flex: 1;
}

.song-cover {
    width: 100px;
    height: 100px;
    border-radius: 15px;
    background: var(--gradient-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    flex-shrink: 0;
    margin-bottom: 0.5rem;
    overflow: hidden;
    position: relative;
}

.song-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.song-cover i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.song-details h4 {
    margin: 0;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.song-details p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.song-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    margin-top: auto;
}

.play-btn {
    background: var(--gradient-accent);
    color: var(--text-dark);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.play-btn.playing {
    background: var(--gradient-primary);
    color: var(--white);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(26, 77, 77, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(26, 77, 77, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(26, 77, 77, 0);
    }
}

.app-link {
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.app-link:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 77, 77, 0.4);
}

.loading-spinner {
    padding: 3rem 0;
}

/* Songs section loading spinner */
.songs-loading-spinner {
    padding: 3rem 0;
}

.songs-loading-spinner .loading-spinner {
    padding: 0;
    margin: 0 auto;
}

/* Audio Player Controls */
.audio-player-controls {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 120px;
}

.player-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    min-width: 250px;
}

.song-cover-large {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    background: var(--gradient-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    overflow: hidden;
    position: relative;
}

.song-cover-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.song-info-player h4 {
    color: var(--white);
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.song-info-player p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
}

.player-center {
    flex: 1;
    max-width: 400px;
    margin: 0 2rem;
}

.timeline-container {
    text-align: center;
}

.time-display {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.timeline-bar {
    position: relative;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
}

.timeline-progress {
    height: 100%;
    background: var(--gradient-accent);
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s ease;
}

.timeline-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.player-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    min-width: 200px;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.volume-slider {
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
    appearance: none;
    width: 16px;
    height: 16px;
    background: var(--accent-color);
    border-radius: 50%;
    cursor: pointer;
}

.player-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.player-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.player-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.player-btn.play-pause {
    background: var(--gradient-accent);
    color: var(--text-dark);
    width: 55px;
    height: 55px;
    font-size: 1.2rem;
}

.player-btn.play-pause:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.4);
}

.player-btn.stop-btn {
    background: rgba(220, 53, 69, 0.8);
}

.player-btn.stop-btn:hover {
    background: rgba(220, 53, 69, 1);
}

/* Footer Section */
.footer-section {
    background: #1a1a1a;
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
    font-family: var(--font-family);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-mission {
    color: var(--white);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--accent-color);
    border-radius: 50%;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
    color: var(--text-dark);
}

.footer-title {
    font-family: var(--font-family);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    opacity: 0.9;
}

.footer-links a:hover {
    color: var(--accent-color);
    opacity: 1;
    padding-left: 5px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--white);
    font-size: 0.95rem;
    opacity: 0.9;
}

.contact-item i {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.contact-item span {
    line-height: 1.5;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: var(--white);
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-policies {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-policies a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-policies a:hover {
    color: var(--accent-color);
    opacity: 1;
}

.separator {
    color: var(--white);
    opacity: 0.5;
}

/* Mobile Responsiveness for Footer */
@media (max-width: 768px) {
    .footer-section {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-logo {
        font-size: 1.8rem;
    }
    
    .footer-mission {
        font-size: 0.95rem;
    }
    
    .footer-title {
        font-size: 1.2rem;
        margin-top: 2rem;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-policies {
        justify-content: center;
        margin-top: 1rem;
    }
}

/* Mobile Responsiveness for Hero Actions */
@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin: 1.5rem 0;
    }
    
    .hero-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* Floating Scroll to Top Button */
.scroll-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--text-dark);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.scroll-to-top-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.scroll-to-top-btn.show {
    opacity: 1;
    visibility: visible;
}

/* Mobile Responsiveness for Slanted Sections */
@media (max-width: 768px) {
    .worshipper-section {
        clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
    }
    
    .thirst-section {
        clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    }
    
    .footer {
        clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
    }
    
    .thirst-section {
        margin-top: -60px;
        padding-top: 6rem;
    }
    
    .desire-section {
        margin-top: -60px;
        padding-top: 6rem;
    }
    
    .scroll-to-top-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* Mobile Responsiveness for Journeys Section */
@media (max-width: 1200px) {
    .journey-card {
        min-height: 180px;
    }
}

@media (max-width: 992px) {
    .journey-card {
        min-height: 180px;
    }
}

@media (max-width: 768px) {
    .journeys-section {
        padding: 3rem 0;
    }
    
    .journey-card {
        margin-bottom: 1.5rem;
        min-height: 350px;
    }
    
    .journey-cover {
        height: 180px;
    }
    
    .journey-details h4 {
        font-size: 1.1rem;
    }
    
    .journey-details p {
        font-size: 0.85rem;
    }
    
    .journey-meta {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .journey-actions {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 576px) {
    .journey-card {
        min-height: 200px;
    }
    
    .journey-cover {
        height: 120px;
    }
    
    .journey-details {
        padding: 1rem;
    }
    
    .journey-meta {
        padding: 1rem;
    }
}

.contact-section .section-title {
    color: #1a1a1a;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}

.contact-section .section-title::after {
    background: var(--accent-color);
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.4);
}

.contact-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.contact-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.contact-title {
    font-family: var(--font-family);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-link {
    display: inline-block;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    border: 2px solid var(--accent-color);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: var(--accent-color);
    color: var(--text-dark);
    text-decoration: none;
    transform: translateY(-2px);
}

/* Social Media Links */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: var(--accent-color);
    color: var(--text-dark);
    text-decoration: none;
    transform: translateX(10px);
    border-color: var(--accent-color);
}

.social-link i {
    font-size: 1.5rem;
    width: 24px;
    text-align: center;
}

/* Quick Links */
.quick-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.quick-link:hover {
    background: var(--accent-color);
    color: var(--text-dark);
    text-decoration: none;
    transform: translateX(10px);
    border-color: var(--accent-color);
}

.quick-link i {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

/* Contact Form */
.contact-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: 12px;
    padding: 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
    color: var(--white);
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
    outline: none;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Buttons */
.btn-custom {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary-custom {
    background: var(--gradient-accent);
    color: var(--text-dark);
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
        text-align: center;
    }

    .content-section {
        padding: 4rem 0;
    }

    .navbar-nav {
        text-align: center;
        padding-top: 1rem;
    }

    .contact-card {
        margin-bottom: 2rem;
        padding: 2rem;
    }
    
    /* Mobile Contact Section Adjustments */
    .social-links,
    .quick-links {
        gap: 0.75rem;
    }
    
    .social-link,
    .quick-link {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .social-link i,
    .quick-link i {
        font-size: 1.2rem;
    }
    
    .contact-form .form-control {
        padding: 0.875rem;
        font-size: 0.9rem;
    }
    
    .contact-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    
    /* Mobile Songs Section Adjustments */
    .song-card {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
        min-height: 220px;
    }
    
    .song-info {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .song-cover {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .song-actions {
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 1rem;
    }
    
    .play-btn,
    .app-link {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.25rem;
    }
    
    /* Mobile background image adjustments */
    .song-card::before {
        opacity: 0.2; /* Slightly more visible on mobile */
    }
    
    /* Mobile grid adjustments */
    .col-sm-6 {
        margin-bottom: 1rem;
    }
    
    /* Mobile Media Player Adjustments */
    .audio-player-controls {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
        min-height: auto;
    }
    
    .player-left,
    .player-center,
    .player-right {
        min-width: auto;
        margin: 0;
    }
    
    .player-center {
        max-width: 100%;
        margin: 0;
    }
    
    .timeline-container {
        width: 100%;
    }
    
    .player-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .volume-control {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    /* Mobile Carousel Adjustments */
    .carousel-indicators {
        bottom: 100px;
        gap: 8px;
        justify-content: center;
        align-items: center;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
    }
    
    .carousel-nav i {
        font-size: 1rem;
    }
    
    .carousel-prev {
        left: 15px;
    }
    
    .carousel-next {
        right: 15px;
    }
    
    /* Mobile Floating Statistics */
    .floating-stats {
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .stat-card {
        padding: 1rem;
        min-width: 100px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

/* Force perfect circle for loading spinner */
.loading .loading-spinner,
body .loading .loading-spinner,
html .loading .loading-spinner {
    width: 50px !important;
    height: 50px !important;
    border: 3px solid rgba(255, 255, 255, 0.3) !important;
    border-top: 3px solid var(--white) !important;
    border-radius: 50% !important;
    animation: spin 1s linear infinite !important;
    flex-shrink: 0 !important;
    box-sizing: border-box !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    max-width: 50px !important;
    max-height: 50px !important;
    min-width: 50px !important;
    min-height: 50px !important;
}

.loading.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loading .loading-spinner {
    width: 50px !important;
    height: 50px !important;
    border: 3px solid rgba(255, 255, 255, 0.3) !important;
    border-top: 3px solid var(--white) !important;
    border-radius: 50% !important;
    animation: spin 1s linear infinite !important;
    flex-shrink: 0 !important;
    box-sizing: border-box !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Ensure animation is not overridden */
.loading .loading-spinner {
    animation: spin 1s linear infinite !important;
    animation-name: spin !important;
    animation-duration: 1s !important;
    animation-timing-function: linear !important;
    animation-iteration-count: infinite !important;
}

/* Additional safeguards for perfect circle */
.loading .loading-spinner::before,
.loading .loading-spinner::after {
    content: none !important;
}

.loading .loading-spinner * {
    display: none !important;
}

/* Floating particles */
.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: floatParticle 15s infinite linear;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 1;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}
