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

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    color: #e2e8f0;
    line-height: 1.6;
}

header {
    background: rgba(15, 23, 42, 0.95);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #60a5fa;
    display: flex;
    align-items: center;
    gap: 10px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #60a5fa;
}

.hero {
    display: flex;
    align-items: center;
    min-height: 80vh;
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    background: linear-gradient(90deg, #60a5fa, #a5b4fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.tagline {
    font-size: 1.8rem;
    color: #93c5fd;
    margin-bottom: 0.5rem;
}

.subtag {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: #cbd5e1;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #3b82f6;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.6);
}

.hero-image {
    flex: 1;
    text-align: center;
    position: relative;
}

.cross-glow {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(147, 197, 253, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 200px;
    color: #60a5fa;
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 20px #60a5fa; }
    to { text-shadow: 0 0 60px #a5b4fc, 0 0 100px #60a5fa; }
}

.featured, .submit-section, .about {
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #bae6fd;
}

.testimony-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimony-card {
    background: rgba(30, 58, 138, 0.6);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s;
    border: 1px solid rgba(147, 197, 253, 0.2);
    cursor: pointer;
}

.testimony-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.3);
    border-color: #60a5fa;
}

.card-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.category {
    background: #1e40af;
    padding: 5px 15px;
    border-radius: 30px;
    color: #bae6fd;
}

.author {
    margin-top: 1.5rem;
    font-style: italic;
    color: #94a3b8;
}

.read-more {
    color: #60a5fa;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 1rem;
}

.submit-section form {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.submit-section input,
.submit-section select,
.submit-section textarea {
    padding: 15px;
    border-radius: 12px;
    border: none;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 1rem;
}

.submit-section textarea {
    min-height: 180px;
    resize: vertical;
}

.about {
    background: rgba(15, 23, 42, 0.7);
    text-align: center;
}

.bible-verse {
    font-style: italic;
    font-size: 1.3rem;
    margin-top: 2rem;
    color: #bae6fd;
    padding: 20px;
    border-left: 5px solid #60a5fa;
}

footer {
    text-align: center;
    padding: 3rem;
    background: #0f172a;
    color: #64748b;
}

/* Testimonials page */
.testimonies-header {
    padding: 4rem 5% 3rem;
    text-align: center;
    background: linear-gradient(to bottom, rgba(30,58,138,0.8), transparent);
}

.search-form {
    display: flex;
    max-width: 600px;
    margin: 2rem auto;
    gap: 10px;
}

.search-form input,
.search-form select {
    flex: 1;
    padding: 15px;
    border-radius: 50px;
    border: none;
    background: rgba(255,255,255,0.15);
    color: white;
}

.search-form button {
    padding: 0 30px;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
}

.full-grid {
    padding: 0 5% 5rem;
}

.full-card {
    height: 100%;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #1e3a8a;
    padding: 3rem;
    border-radius: 20px;
    max-width: 700px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
}

.close {
    position: absolute;
    right: 25px;
    top: 15px;
    font-size: 2.5rem;
    cursor: pointer;
    color: #93c5fd;
}

.no-results {
    text-align: center;
    padding: 4rem;
    font-size: 1.3rem;
    grid-column: 1 / -1;
}