/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* Scroll to Top Button */
.scroll-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffa500, #ff8c00);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(255, 165, 0, 0.3);
}

.scroll-to-top-btn:hover {
    background: linear-gradient(135deg, #ff8c00, #ffa500);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 165, 0, 0.4);
}

.scroll-to-top-btn:active {
    transform: translateY(0);
}

.scroll-to-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mobile responsive for scroll button */
@media (max-width: 768px) {
    .scroll-to-top-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ffa500;
}

.btn-try {
    background-color: transparent;
    border: 1px solid #ffa500;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-try:hover {
    background-color: #ffa500;
    color: #000000;
}

/* Hero Section */
.hero {
    padding: 40px 0 60px;
    min-height: 80vh;
    display: flex;
    align-items: flex-start;
    padding-top: 60px;
}

.hero-content {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: flex-start;
    padding-top: 20px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.highlight {
    color: #ffa500;
}

.hero-subtitle {
    font-size: 15px;
    color: #cccccc;
    margin-bottom: 40px;
}

/* Signup Form */
.signup-form {
    max-width: 400px;
}

.email-input {
    width: 100%;
    padding: 15px 20px;
    background-color: #1a1a1a;
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 15px;
}

.email-input::placeholder {
    color: #888888;
}

.prayer-input {
    width: 100%;
    padding: 15px 20px;
    background-color: #1a1a1a;
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 15px;
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
    line-height: 1.5;
}

.prayer-input::placeholder {
    color: #888888;
}

.prayer-input:focus {
    outline: none;
    border-color: #ffa500;
    box-shadow: 0 0 0 2px rgba(255, 165, 0, 0.25);
}

/* Floating Label Styles */
.input-group {
    position: relative;
    margin-bottom: 15px;
}

.floating-input,
.floating-textarea {
    width: 100%;
    padding: 15px 20px;
    background-color: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.floating-textarea {
    resize: vertical;
    min-height: 80px;
    line-height: 1.5;
}



.floating-label {
    position: absolute;
    left: 20px;
    top: 15px;
    color: #888888;
    font-size: 16px;
    pointer-events: none;
    transition: all 0.3s ease;
    background-color: #1a1a1a;
    padding: 0 5px;
    transform-origin: left top;
}

.floating-input:focus,
.floating-textarea:focus {
    outline: none;
    border-color: #ffa500;
    box-shadow: 0 0 0 2px rgba(255, 165, 0, 0.25);
}

/* Floating label animation */
.floating-input:focus + .floating-label,
.floating-textarea:focus + .floating-label,
.floating-input:not(:placeholder-shown) + .floating-label,
.floating-textarea:not(:placeholder-shown) + .floating-label {
    transform: translateY(-25px) scale(0.8);
    color: #ffa500;
    background-color: #0a0a0a;
}

.floating-input:not(:placeholder-shown),
.floating-textarea:not(:placeholder-shown) {
    border-color: #ffa500;
}

/* Règle spécifique pour le textarea - s'assurer que le label se déplace */
.floating-textarea:focus + .floating-label,
.floating-textarea:not(:placeholder-shown) + .floating-label {
    transform: translateY(-25px) scale(0.8) !important;
    /* Transition identique */
    transition: all 0.3s ease !important;
}

/* Supprimer les espaces par défaut dans le textarea */
.floating-textarea {
    /* Supprimer les espaces et aligner à gauche */
    text-indent: 0;
    /* S'assurer que le texte commence au bon endroit */
    padding-top: 15px;
    padding-bottom: 15px;
    /* Aligner le contenu à gauche comme les autres champs */
    display: block;
}

/* S'assurer que le textarea a exactement le même comportement que les inputs */
.floating-textarea {
    /* Même style de base que les inputs */
    background-color: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.5;
    padding: 15px 20px;
    min-height: 80px;
    resize: vertical;
    font-family: inherit;
    box-sizing: border-box;
    /* Même transition que les inputs */
    transition: all 0.3s ease;
    /* Aligner à gauche comme les autres champs */
    text-align: left;
    /* Permettre les espaces et retours à la ligne normalement */
    /* Supprimer les marges et paddings internes */
    margin: 0;
    outline: none;
}

/* Hover effect identique pour tous les champs */
.floating-input:hover,
.floating-textarea:hover {
    border-color: #555555;
    transition: all 0.3s ease;
}

/* Focus effect identique pour tous les champs */
.floating-input:focus,
.floating-textarea:focus {
    border-color: #ffa500;
    box-shadow: 0 0 0 2px rgba(255, 165, 0, 0.25);
    transition: all 0.3s ease;
}

/* Supprimer le focus persistant - seulement quand il y a du contenu */
.floating-input:not(:placeholder-shown),
.floating-textarea:not(:placeholder-shown) {
    border-color: #ffa500;
}

/* Supprimer le focus automatique */
.floating-input:focus:not(:placeholder-shown),
.floating-textarea:focus:not(:placeholder-shown) {
    border-color: #ffa500;
}

.floating-input:not(:focus):not(:placeholder-shown),
.floating-textarea:not(:focus):not(:placeholder-shown) {
    border-color: #333333;
}

.btn-primary {
    width: 100%;
    padding: 15px 20px;
    background-color: #ffa500;
    color: #000000;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 20px;
}

.btn-primary:hover {
    background-color: #ff8c00;
}

.divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #333333;
}

.divider span {
    background-color: #0a0a0a;
    padding: 0 15px;
    color: #888888;
    font-size: 14px;
}

.social-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-btn {
    flex: 1;
    padding: 15px;
    background-color: #1a1a1a;
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.social-btn:hover {
    background-color: #2a2a2a;
}

.terms {
    font-size: 12px;
    color: #888888;
    text-align: center;
}

.terms a {
    color: #ffa500;
    text-decoration: none;
}

/* Mobile fixes for floating inputs */
@media (max-width: 768px) {
    .floating-input,
    .floating-textarea {
        font-size: 16px; /* Empêche le zoom sur iOS */
        min-height: 44px; /* Taille minimale recommandée pour mobile */
        -webkit-appearance: none;
        appearance: none;
        border-radius: 8px;
        /* Forcer la compatibilité mobile */
        -webkit-touch-callout: none;
        -webkit-user-select: text;
        user-select: text;
        /* S'assurer que les inputs sont cliquables */
        pointer-events: auto;
        /* Empêcher les problèmes de focus sur mobile */
        -webkit-tap-highlight-color: rgba(255, 165, 0, 0.5);
        /* Forcer l'affichage des contrôles natifs */
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
    
    /* Styles spécifiques pour les inputs text et email */
    input[type="text"],
    input[type="email"] {
        /* Forcer l'apparence native */
        -webkit-appearance: none;
        appearance: none;
        /* S'assurer que le focus fonctionne */
        outline: none;
        /* Empêcher les problèmes de zoom */
        font-size: 16px !important;
        /* Forcer la hauteur minimale */
        min-height: 44px !important;
        /* S'assurer que les inputs sont cliquables */
        position: relative;
        z-index: 10;
    }

    /* Style du textarea sur mobile - même comportement que les inputs */
    textarea.floating-textarea {
        /* Même style que les inputs text/email sur mobile */
        -webkit-appearance: none;
        appearance: none;
        outline: none;
        font-size: 16px !important;
        min-height: 44px !important;
        position: relative;
        z-index: 10;
        /* Supprimer le resize sur mobile */
        resize: none;
        /* Même padding que les inputs */
        padding: 15px 20px !important;
    }
    
    .floating-label {
        font-size: 14px; /* Taille plus petite sur mobile */
        top: 12px; /* Ajuster la position */
        /* S'assurer que les labels ne bloquent pas les inputs */
        pointer-events: none;
        z-index: 5;
    }
    
    /* Sur mobile, les labels flottent correctement - FORCER le comportement avec transition */
    .floating-input:focus + .floating-label,
    .floating-textarea:focus + .floating-label,
    .floating-input:not(:placeholder-shown) + .floating-label,
    .floating-textarea:not(:placeholder-shown) + .floating-label {
        transform: translateY(-20px) scale(0.85) !important;
        z-index: 15 !important;
        color: #ffa500 !important;
        background-color: #0a0a0a !important;
        transition: all 0.3s ease !important;
        opacity: 1 !important;
    }

    .floating-input:not(:focus):not(:placeholder-shown) + .floating-label,
    .floating-textarea:not(:focus):not(:placeholder-shown) + .floating-label {
        transform: translateY(-20px) scale(0.85) !important;
        z-index: 15 !important;
        color: #888888 !important;
        background-color: #0a0a0a !important;
        transition: all 0.3s ease !important;
        opacity: 1 !important;
    }
    
    /* S'assurer que les inputs email et firstname flottent aussi avec transition */
    input[type="email"]:focus + .floating-label,
    input[type="text"]:focus + .floating-label,
    input[type="email"]:not(:placeholder-shown) + .floating-label,
    input[type="text"]:not(:placeholder-shown) + .floating-label {
        transform: translateY(-20px) scale(0.85) !important;
        z-index: 15 !important;
        color: #ffa500 !important;
        background-color: #0a0a0a !important;
        transition: all 0.3s ease !important;
        opacity: 1 !important;
    }
    
    input[type="email"]:not(:focus):not(:placeholder-shown) + .floating-label,
    input[type="text"]:not(:focus):not(:placeholder-shown) + .floating-label {
        transform: translateY(-20px) scale(0.85) !important;
        z-index: 15 !important;
        color: #888888 !important;
        background-color: #0a0a0a !important;
        transition: all 0.3s ease !important;
        opacity: 1 !important;
    }
    
    /* Ajouter l'effet fade-in pour tous les labels sur mobile */
    .floating-label {
        transition: all 0.3s ease !important;
        opacity: 0.7 !important;
    }
    
    .floating-input:focus + .floating-label,
    .floating-textarea:focus + .floating-label,
    input[type="email"]:focus + .floating-label,
    input[type="text"]:focus + .floating-label {
        opacity: 1 !important;
        transition: all 0.3s ease !important;
    }
}

/* Video Player */
.video-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background-color: #1a1a1a;
}

.video-player {
    position: relative;
    aspect-ratio: 16/9;
    background-color: #000000;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 12px;
    /* Mobile autoplay support */
    -webkit-playsinline: true;
    playsinline: true;
    /* Ensure video is visible on mobile */
    max-width: 100%;
    max-height: 100%;
}

/* Mobile video optimizations */
@media (max-width: 768px) {
    .hero-video {
        /* Optimize for mobile autoplay */
        object-fit: cover;
        /* Ensure video fills container on mobile */
        width: 100vw;
        height: 100%;
        /* Remove border radius on mobile for better performance */
        border-radius: 0;
    }
    
    .video-container {
        /* Optimize video container for mobile */
        margin: 0 -20px; /* Extend to edges on mobile */
        border-radius: 0;
    }
    
    .video-player {
        /* Ensure video player works well on mobile */
        border-radius: 0;
    }
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.live-badge {
    background-color: #ff0000;
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.download-overlay {
    background-color: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.video-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-scene {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hosts {
    display: flex;
    gap: 20px;
    align-items: center;
}

.host {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #333333;
}

.host-1 {
    background: linear-gradient(45deg, #4a4a4a, #666666);
}

.host-2 {
    background: linear-gradient(45deg, #2a2a2a, #444444);
}

.show-title {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

.capitol-building {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 80px;
    height: 40px;
    background-color: #444444;
    border-radius: 5px;
}

.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.control-left {
    display: flex;
    gap: 15px;
    color: #ffffff;
}

.play-pause-btn,
.mute-btn,
.fullscreen-btn {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.play-pause-btn:hover,
.mute-btn:hover,
.fullscreen-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.progress-bar {
    flex: 1;
    height: 6px;
    background-color: #333333;
    border-radius: 3px;
    position: relative;
    cursor: pointer;
    margin: 0 20px;
}

.progress-bar:hover {
    background-color: #444444;
}

.progress {
    width: 0%;
    height: 100%;
    background-color: #ffa500;
    border-radius: 2px;
    transition: width 0.1s ease;
}

.control-right {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ffffff;
    font-size: 14px;
}

/* As Seen On Section */
.as-seen-on {
    padding: 0px 0;
    text-align: center;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.logo-item {
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #cccccc;
    transition: all 0.3s ease;
}

.logo-item:hover {
    background-color: #2a2a2a;
    color: #ffffff;
}

.logo-item.white-house {
    display: flex;
    align-items: center;
    justify-content: center;
}

.white-house-logo {
    max-width: 100%;
    height: auto;
    max-height: 50px;
    width: auto;
    display: block;
    /* Removed the filter that was causing display issues */
}

.logo-item.washington-post {
    display: flex;
    align-items: center;
    justify-content: center;
}

.washington-post-logo {
    max-width: 100%;
    height: auto;
    max-height: 50px;
    width: auto;
    display: block;
}

/* Leaders Section */
.leaders {
    padding: 80px 0;
}

/* Mobile adjustments for leaders section */
@media (max-width: 768px) {
    .leaders {
        padding: 20px 0; /* Reduced from 80px to eliminate gap */
    }
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
 
}

.btn-view-all {
    background-color: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background-color: #ffffff;
    color: #000000;
}

.leaders-grid {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    padding: 20px 0;
}

.leaders-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.leader-card {
    min-width: 280px;
    flex-shrink: 0;
}

.leaders-slider-container {
    position: relative;
    max-width: 100%;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-nav:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.slider-nav.prev {
    left: -20px;
}

.slider-nav.next {
    right: -20px;
}

.slider-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.leader-card {
    position: relative;
    background-color: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-5px);
}

.leader-image {
    height: 160px;
    background-color: #333333;
    position: relative;
}

.leader-image.andre {
    background-image: url('https://d2alqht3442852.cloudfront.net/artists/49355cec-6f39-45d4-a6c6-ea1a6a7c6930/ljr675zl5piqgdhorizontalcoverandrebutlerts1743185994533.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.leader-image.jim {
    background-image: url('https://d2alqht3442852.cloudfront.net/artists/d9ec96a6-b37e-487a-83f4-3492d46b316e/87jhfvqgdmbmm6horizontalcoverjimdalyts1752085375960.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.leader-image.yael {
    background-image: url('https://d2alqht3442852.cloudfront.net/artists/5581409d-69c7-4348-a0ae-5cbdbd119eb8/horizontalcoveryaelecksteints1692203511505.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.leader-image.jentezen {
    background-image: url('https://d2alqht3442852.cloudfront.net/artists/24eb97b6-c097-49e9-b41e-bf687262f4b7/023owb4r9rji9ehorizontalcoverjentezenfranklints1749752145512.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.leader-info {
    padding: 20px;
}

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

.leader-info p {
    color: #888888;
    font-size: 14px;
}

.pray-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

/* Series Section */
.series {
    padding: 80px 0;
}

.series-grid {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    padding: 20px 0;
}

.series-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.series-card {
    min-width: 280px;
    flex-shrink: 0;
}

.series-card {
    position: relative;
    background-color: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.series-card:hover {
    transform: translateY(-5px);
}

.series-image {
    height: 200px;
    background-color: #333333;
    position: relative;
}

.series-image.joseph {
    background-image: url('https://d339bgihw9yfmi.cloudfront.net/web/homepage/explore_series/heroes_of_the_bible_joseph.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.series-image.james-earl {
    background-image: url('https://d339bgihw9yfmi.cloudfront.net/web/homepage/explore_series/james_earl_jones_reads_the_bible.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.series-image.bedtime {
    background-image: url('https://d339bgihw9yfmi.cloudfront.net/web/homepage/explore_series/bedtime_bible_stories.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.series-image.drew-brees {
    background-image: url('https://d339bgihw9yfmi.cloudfront.net/web/homepage/explore_series/motivational_prayers_with_drew_brees.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.series-info {
    padding: 20px;
}

.series-info h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #ffa500;
}

.series-info h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

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

.series-info p {
    color: #888888;
    font-size: 14px;
}

.series-slider-container {
    position: relative;
    max-width: 100%;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.testimonial-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 80%;
    background-color: #ffffff;
    z-index: 1;
}

.testimonial-grid-reverse {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.testimonial-grid-reverse::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 80%;
    background-color: #ffffff;
    z-index: 1;
}

.phones {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.phones-image {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    aspect-ratio: 1 / 1;
}

.phone {
    width: 200px;
    height: 350px;
    background-color: #000000;
    border-radius: 25px;
    padding: 10px;
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.phone-1 .phone-screen {
    background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
}

.phone-2 .phone-screen {
    background-image: url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2071&q=80');
}

.bible-content {
    text-align: center;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bible-content p {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

.phone-controls {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
    color: #ffffff;
    z-index: 10;
}

.phone-bottom {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    z-index: 10;
}

.progress-mini {
    flex: 1;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 1px;
    position: relative;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.progress-mini::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 30%;
    background-color: #ffffff;
    border-radius: 1px;
}

.continue-btn {
    background-color: #ffffff;
    color: #000000;
    border: none;
    padding: 8px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.testimonial-content {
    max-width: 400px;
}

.testimonial-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.testimonial-content blockquote {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.testimonial-content .attribution {
    font-size: 16px;
    color: #ffffff;
    margin: 15px 0 25px 0;
    position: relative;
    padding-top: 15px;
}

.testimonial-content .attribution::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background-color: #ffffff;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #333333;
}

.user-avatar.terri {
    background-image: url('img1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.user-avatar.lisa {
    background-image: url('img2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.user-avatar.nicky {
    background-image: url('img3.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.user-avatar.erena {
    background-image: url('img4.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.btn-start {
    background-color: transparent;
    border: 1px solid #ffa500;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-start:hover {
    background-color: #ffa500;
    color: #000000;
}

/* App Features Section */
.app-features {
    padding: 80px 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-content {
    max-width: 400px;
}

.feature-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.feature-content blockquote {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.phone-mockup {
    width: 400px;
    height: 800px;
    background-image: url('https://d339bgihw9yfmi.cloudfront.net/web/homepage/quote_images/discover_leaders.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 40px;
    padding: 20px;
    margin: 0 auto;
}

.feature-phone-image {
    max-width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
    border-radius: 25px;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

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

.app-header h4 {
    font-size: 18px;
    font-weight: 600;
}

.header-icons {
    display: flex;
    gap: 15px;
    color: #ffffff;
}

.app-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid #333333;
    padding-bottom: 10px;
}

.tab {
    font-size: 14px;
    color: #888888;
    cursor: pointer;
    transition: color 0.3s ease;
}

.tab.active {
    color: #ffffff;
    font-weight: 600;
}

.content-section h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.leaders-grid-mini {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.leader-mini.main {
    background-color: #2a2a2a;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

.leader-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, #4a90e2, #6ba3e8);
    margin: 0 auto 10px;
}

.leader-mini.main h6 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.leader-mini.main p {
    font-size: 12px;
    color: #888888;
}

.leaders-surrounding {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.leaders-surrounding .leader-mini {
    background-color: #1a1a1a;
    padding: 10px;
    border-radius: 8px;
    font-size: 12px;
    text-align: center;
    color: #cccccc;
}

.app-nav {
    margin-top: auto;
    display: flex;
    justify-content: space-around;
    padding-top: 20px;
    border-top: 1px solid #333333;
    color: #888888;
}

.app-nav i.active {
    color: #ffa500;
}

/* Bible Reading Section */
.bible-reading {
    padding: 80px 0;
}

.reading-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.reading-phones {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.reading-phones-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.reading-phone-1 .phone-screen {
    background: linear-gradient(135deg, #8b4513, #a0522d);
}

.reading-phone-2 .phone-screen {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
}

.bible-cover {
    width: 60px;
    height: 80px;
    background-color: #8b4513;
    border-radius: 5px;
    margin: 0 auto 15px;
}

.james-earl-portrait {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, #8b4513, #a0522d);
    margin: 0 auto 15px;
}

.audio-controls {
    margin-top: 20px;
}

.progress-bar-mini {
    width: 100%;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    margin-bottom: 10px;
    position: relative;
}

.progress-bar-mini .progress-mini {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 20%;
    background-color: #ffffff;
    border-radius: 2px;
}

.controls-mini {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: #ffffff;
}

.speed-btn, .rewind-btn {
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    cursor: pointer;
}

.reading-content {
    max-width: 400px;
}

.reading-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.reading-content blockquote {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Sleep Section */
.sleep-section {
    padding: 80px 0;
}

.sleep-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.sleep-content {
    max-width: 400px;
}

.sleep-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.sleep-content blockquote {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.sleep-content-grid {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sleep-content-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.content-card {
    background-color: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.content-card:hover {
    transform: translateY(-3px);
}

.card-image {
    height: 120px;
    background-color: #333333;
    position: relative;
}

.card-image.lecrae {
    background: linear-gradient(45deg, #4a90e2, #6ba3e8);
}

.card-image.sleep-bible {
    background: linear-gradient(45deg, #1e3a8a, #3b82f6);
}

.card-image.bedtime-jesus {
    background: linear-gradient(45deg, #059669, #10b981);
}

.card-image.bedtime-joseph {
    background: linear-gradient(45deg, #8b4513, #a0522d);
}

.card-image.bedtime-stories {
    background: linear-gradient(45deg, #1e3a8a, #3b82f6);
}

.card-image.gary {
    background: linear-gradient(45deg, #4a4a4a, #666666);
}

.card-image.sleep-psalms {
    background: linear-gradient(45deg, #7c3aed, #8b5cf6);
}

.card-image.birth-jesus {
    background: linear-gradient(45deg, #059669, #10b981);
}

.card-image.bedtime-david {
    background: linear-gradient(45deg, #dc2626, #ef4444);
}

.content-card h4 {
    padding: 15px 15px 5px;
    font-size: 14px;
    font-weight: 600;
}

.content-card p {
    padding: 0 15px 15px;
    font-size: 12px;
    color: #888888;
}

/* Trust Section */
.trust {
    padding: 80px 0;
    text-align: center;
    background-color: #000000;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.trust-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #ffffff !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    text-align: center;
    position: relative;
    z-index: 10;
}

 

.rating-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.laurel-left, .laurel-right {
    display: flex;
    align-items: center;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.stars i {
    color: #FFD700;
    font-size: 24px;
}

.rating p {
    font-size: 1.1rem;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.4;
    margin: 0;
}

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

.download-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.download-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.download-btn i {
    font-size: 24px;
    color: #ffffff;
}

.download-btn div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.download-btn span {
    font-size: 12px;
    font-weight: 400;
    color: #ffffff;
}

.download-btn strong {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

/* News Section */
.news {
    padding: 80px 0;
}

.news-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: start;
}

.news-card {
    background-color: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-image {
    height: 200px;
    background-color: #333333;
}

.news-image.sleep {
    background-image: url('https://d339bgihw9yfmi.cloudfront.net/web/homepage/pray_news/sleep.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.news-image.ocean {
    background-image: url('https://d339bgihw9yfmi.cloudfront.net/web/homepage/pray_news/ocean.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.news-image.bible {
    background-image: url('https://d339bgihw9yfmi.cloudfront.net/web/homepage/pray_news/bible.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.news-image.sunflower {
    background-image: url('https://d339bgihw9yfmi.cloudfront.net/web/homepage/pray_news/sunflower.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.news-card h3 {
    padding: 20px 20px 10px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
}

.news-card p {
    padding: 0 20px 20px;
    color: #888888;
    line-height: 1.5;
}

/* Footer */
.footer {
    padding: 60px 0 40px;
    background-color: #1a1a1a;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.footer-brand h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-column a {
    display: block;
    color: #888888;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

.download-btn-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #000000;
    color: #ffffff;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.download-btn-footer:hover {
    background-color: #1a1a1a;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .quote-content blockquote {
        font-size: 24px;
    }
    
    .quote-content blockquote::before,
    .quote-content blockquote::after {
        font-size: 60px;
    }
    
    /* Hide vertical lines on mobile */
    .testimonial-grid::before,
    .testimonial-grid-reverse::before {
        display: none;
    }
    
    /* Ensure testimonial content fits properly on mobile */
    .testimonial-content {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    
    /* Make all testimonial grids behave the same on mobile */
    .testimonial-grid,
    .testimonial-grid-reverse {
        grid-template-columns: 1fr;
        gap: 10px; /* Further reduced to eliminate gap */
        padding: 0 20px;
        width: 100%;
        overflow: hidden;
    }
    
    /* Reverse the order for testimonial-grid-reverse on mobile only */
    .testimonial-grid-reverse {
        direction: rtl;
    }
    
    .testimonial-grid-reverse > * {
        direction: ltr;
    }
    
    /* Reorder testimonial-grid-reverse on mobile: image first, then text */
    .testimonial-grid-reverse .phones {
        order: -1;
    }
    
    .testimonial-grid-reverse .testimonial-content {
        order: 1;
    }
    
    .phones {
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 100%;
    }
    
    .phones-image {
        width: 300px;
        height: 300px;
        object-fit: cover;
        border-radius: 50%;
        border: 3px solid #ffffff;
        aspect-ratio: 1 / 1;
        max-width: 100%;
    }
    
    .reading-phones {
        flex-direction: column;
        align-items: center;
    }
    
    .reading-phones-image {
        max-width: 300px;
        width: 100%;
    }
    
    .sleep-content-image {
        max-width: 300px;
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .nav {
        display: none;
    }
    
    /* Mobile menu styles */
    .mobile-menu-btn {
        display: none; /* Hidden by default on desktop */
        background: none;
        border: none;
        color: white;
        font-size: 20px;
        cursor: pointer;
        padding: 10px;
        border-radius: 5px;
        transition: background-color 0.3s ease;
        z-index: 1001;
        position: relative;
    }
    
    .mobile-menu-btn:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    /* Desktop styles - hide mobile button, show normal nav */
    @media (min-width: 769px) {
        .mobile-menu-btn {
            display: none !important;
            visibility: hidden !important;
            opacity: 0 !important;
            pointer-events: none !important;
            position: absolute !important;
            left: -9999px !important;
        }
        
        .nav {
            display: flex !important;
            flex-direction: row;
            position: static;
            background: none;
            backdrop-filter: none;
            padding: 0;
            gap: 0;
            border: none;
            box-shadow: none;
            transform: none;
            opacity: 1;
            visibility: visible;
        }
    }
    
    /* Ensure mobile menu button is visible on mobile */
    @media (max-width: 768px) {
        .mobile-menu-btn {
            display: block !important;
            visibility: visible !important;
            opacity: 1 !important;
            pointer-events: auto !important;
            position: relative !important;
            left: auto !important;
        }
        
        .nav {
            display: none;
        }
    }
    
    /* Mobile menu when open */
    .nav.mobile-open {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        padding: 20px;
        gap: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        visibility: visible !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    
    .nav.mobile-open .nav-link {
        padding: 15px 20px;
        border-radius: 8px;
        transition: all 0.3s ease;
        text-align: center;
        font-size: 16px;
        font-weight: 500;
    }
    
    .nav.mobile-open .nav-link:hover {
        background-color: rgba(255, 165, 0, 0.1);
        color: #ffa500;
    }
    
    .nav.mobile-open .btn-try {
        background-color: #ffa500;
        color: #000000;
        font-weight: 600;
        margin-top: 10px;
    }
    
    .nav.mobile-open .btn-try:hover {
        background-color: #ff8c00;
        transform: translateY(-2px);
    }
    
    /* Ensure mobile menu button is always visible on mobile */
    .mobile-menu-btn {
        z-index: 1001;
        position: relative;
    }
    
    /* Smooth animation for mobile menu */
    .nav {
        transition: all 0.3s ease;
        transform: translateY(-10px);
        opacity: 0;
    }
    
    .nav.mobile-open {
        transform: translateY(0);
        opacity: 1;
    }
    
    /* Close button for mobile menu */
    .mobile-close-btn {
        position: absolute;
        top: 15px;
        right: 15px;
        background: none;
        border: none;
        color: white;
        font-size: 24px;
        cursor: pointer;
        padding: 5px;
        border-radius: 50%;
        transition: background-color 0.3s ease;
    }
    
    .mobile-close-btn:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .leaders-grid,
    .series-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .sleep-content-image {
        max-width: 250px;
        width: 100%;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
} 

/* Bible Quote Section */
.bible-quote {
    padding: 40px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    text-align: center;
}

.quote-content {
    max-width: 800px;
    margin: 0 auto;
}

.bible-verse-title {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 25px;
    font-style: normal;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.bible-reference {
    font-size: 1.2rem;
    font-weight: 400;
    color: #ffa500;
    text-transform: none;
    letter-spacing: 0.5px;
    margin: 0;
    opacity: 0.9;
}

/* Responsive adjustments for Bible quote */
@media (max-width: 768px) {
    .bible-verse-title {
        font-size: 25px;
        padding: 0 20px;
    }
    
    .bible-reference {
        font-size: 1.1rem;
    }
    
    .bible-quote {
        padding: 20px 0; /* Minimal padding to eliminate gap */
        margin-bottom: 40px;
    }
    
    /* Eliminate all gaps between sections on mobile */
    .bible-quote + * {
        margin-top: 0 !important;
        padding-top: 0 !important;
   
    }
    
    /* Ensure no transitions create gaps */
    * {
        transition: none !important;
        animation: none !important;
        transform: none !important;
    }
}

@media (max-width: 480px) {
    .bible-verse-title {
        font-size: 25px;
        padding: 0 15px;
    }
    
    .bible-quote {
        padding: 15px 0; /* Minimal padding */
    }
}

/* Privacy Policy Page */
.privacy-policy {
    padding: 120px 0 80px;
    background-color: #0a0a0a;
    min-height: 100vh;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: #1a1a1a;
    padding: 60px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.policy-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.policy-date {
    font-size: 1.1rem;
    color: #ffa500;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.policy-intro {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #333;
}

.policy-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 15px;
}

.policy-section {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid #333;
}

.policy-section:last-of-type {
    border-bottom: none;
    margin-bottom: 40px;
}

.policy-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.policy-section p {
    font-size: 1rem;
    line-height: 1.6;
    color: #d0d0d0;
    margin-bottom: 15px;
}

.policy-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

.policy-section li {
    font-size: 1rem;
    line-height: 1.6;
    color: #d0d0d0;
    margin-bottom: 8px;
}

.policy-section strong {
    color: #ffa500;
    font-weight: 600;
}

.policy-section a {
    color: #ffa500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-section a:hover {
    color: #ff8c00;
    text-decoration: underline;
}

.contact-info {
    background-color: #2a2a2a;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-top: 20px;
}

.contact-info a {
    font-size: 1.1rem;
    font-weight: 500;
}

.back-home {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #333;
}

.btn-back {
    display: inline-block;
    background-color: #ffa500;
    color: #000000;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}

.btn-back:hover {
    background-color: #ff8c00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.4);
}

/* Footer Privacy Link */
.footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333;
    text-align: center;
}

.privacy-link {
    color: #ffa500;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: #ff8c00;
    text-decoration: underline;
}

/* Responsive Design for Privacy Policy */
@media (max-width: 768px) {
    .policy-content {
        padding: 40px 30px;
        margin: 0 20px;
    }
    
    .policy-title {
        font-size: 2.5rem;
    }
    
    .policy-section h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .privacy-policy {
        padding: 100px 0 60px;
    }
    
    .policy-content {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .policy-title {
        font-size: 2rem;
    }
    
    .policy-date {
        font-size: 1rem;
    }
    
    .policy-section h2 {
        font-size: 1.2rem;
    }
    
    .btn-back {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
} 

/* Terms of Use Page */
.terms-of-use {
    padding: 120px 0 80px;
    background-color: #0a0a0a;
    min-height: 100vh;
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: #1a1a1a;
    padding: 60px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.terms-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.terms-date {
    font-size: 1.1rem;
    color: #ffa500;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.terms-intro {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #333;
}

.terms-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 15px;
}

.terms-section {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid #333;
}

.terms-section:last-of-type {
    border-bottom: none;
    margin-bottom: 40px;
}

.terms-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.terms-section p {
    font-size: 1rem;
    line-height: 1.6;
    color: #d0d0d0;
    margin-bottom: 15px;
}

.terms-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

.terms-section li {
    font-size: 1rem;
    line-height: 1.6;
    color: #d0d0d0;
    margin-bottom: 8px;
}

.terms-section a {
    color: #ffa500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.terms-section a:hover {
    color: #ff8c00;
    text-decoration: underline;
}

/* Updated Footer Bottom */
.footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.privacy-link,
.terms-link {
    color: #ffa500;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.privacy-link:hover,
.terms-link:hover {
    color: #ff8c00;
    text-decoration: underline;
}

.footer-separator {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design for Terms of Use */
@media (max-width: 768px) {
    .terms-content {
        padding: 40px 30px;
        margin: 0 20px;
    }
    
    .terms-title {
        font-size: 2.5rem;
    }
    
    .terms-section h2 {
        font-size: 1.3rem;
    }
    
    .footer-bottom {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .terms-of-use {
        padding: 100px 0 60px;
    }
    
    .terms-content {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .terms-title {
        font-size: 2rem;
    }
    
    .terms-date {
        font-size: 1rem;
    }
    
    .terms-section h2 {
        font-size: 1.2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }
    
    .footer-separator {
        display: none;
    }
}

/* Thank You Page Styles */
.thank-you-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.thank-you-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Prayer Image Styling */
.prayer-image {
    margin-bottom: 40px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.1));
}

.prayer-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 165, 0, 0.1) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 1;
}

.prayer-image:hover::before {
    opacity: 1;
}

.prayer-hero-image {
    width: 100%;
    height: 516px; /* Hauteur fixe plus élevée */
    object-fit: cover; /* Garde les proportions de l'image */
    display: block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1.05) contrast(1.1);
    position: relative;
    z-index: 2;
}

.prayer-hero-image:hover {
    transform: scale(1.03);
    filter: brightness(1.1) contrast(1.15);
}

/* Add a subtle glow effect on hover */
.prayer-image:hover {
    box-shadow: 
        0 30px 60px rgba(255, 165, 0, 0.15),
        0 15px 30px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 165, 0, 0.3);
}

/* Professional image caption */
.prayer-image-caption {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 300;
}

/* Enhanced spacing for the image section */
.thank-you-content .prayer-image {
    margin-bottom: 50px;
}

/* Add a subtle animation when the page loads */
@keyframes imageFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.prayer-image {
    animation: imageFadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.thank-you-icon {
    margin-bottom: 40px;
}

.thank-you-icon i {
    font-size: 4rem;
    color: #ffa500;
    background: linear-gradient(135deg, #ffa500, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.thank-you-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #ffffff;
}

.thank-you-title .highlight {
    background: linear-gradient(135deg, #ffa500, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.thank-you-message {
    margin-bottom: 50px;
}

.thank-you-text {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 0;
}

.thank-you-text #user-name {
    color: #ffa500;
    font-weight: 600;
}

.email-sent-notification {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    animation: slideInUp 0.6s ease-out;
}

.email-sent-notification i {
    font-size: 20px;
    color: #ffffff;
}

.email-sent-notification span {
    font-size: 16px;
}

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

.call-to-action {
    background: rgba(255, 165, 0, 0.1);
    border: 2px solid rgba(255, 165, 0, 0.3);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 50px;
    backdrop-filter: blur(10px);
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.1rem;
    color: #d0d0d0;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-activate {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ffa500, #ff8c00);
    color: #000000;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 165, 0, 0.3);
}

.btn-activate:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 165, 0, 0.4);
    background: linear-gradient(135deg, #ff8c00, #ffa500);
}

.btn-activate i {
    font-size: 1.2rem;
}

.prayer-commitment {
    margin-bottom: 50px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border-left: 4px solid #ffa500;
}

.commitment-icon {
    margin-bottom: 20px;
}

.commitment-icon i {
    font-size: 2.5rem;
    color: #ffa500;
}

.commitment-text {
    font-size: 1.2rem;
    color: #e0e0e0;
    line-height: 1.6;
    font-style: italic;
}

.commitment-text .bible-reference {
    display: block;
    margin-top: 10px;
    font-size: 1rem;
    color: #ffa500;
    font-weight: 500;
    font-style: normal;
}

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

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 28px;
    border: 2px solid #ffa500;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #ffa500;
    color: #000000;
    transform: translateY(-2px);
}

.btn-secondary i {
    font-size: 1.1rem;
}

/* Mobile Responsive for Thank You Page */
@media (max-width: 768px) {
    .thank-you-section {
        padding: 120px 0 60px;
    }
    
    .thank-you-title {
        font-size: 2.5rem;
    }
    
    .thank-you-text {
        font-size: 1.1rem;
    }
    
    .email-sent-notification {
        padding: 12px 16px;
        margin-top: 15px;
    }
    
    .email-sent-notification span {
        font-size: 14px;
    }
    
    .call-to-action {
        padding: 30px 20px;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .thank-you-title {
        font-size: 2rem;
    }
    
    .thank-you-text {
        font-size: 1rem;
    }
    
    .email-sent-notification {
        padding: 10px 14px;
        margin-top: 12px;
    }
    
    .email-sent-notification span {
        font-size: 13px;
    }
    
    .call-to-action {
        padding: 25px 15px;
    }
    
    .btn-activate {
        padding: 14px 24px;
        font-size: 1rem;
    }
}

