/* Shared Styles for Riverview Southern Baptist Church */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1a2a3a;
    background: #f8f9fa;
}

/* Header */
header {
    background: linear-gradient(135deg, #1e3a5f 0%, #0a2a44 100%);
    color: white;
    padding: 2rem 1rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Navigation */
nav {
    background: white;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav a {
    color: #1e3a5f;
    text-decoration: none;
    margin: 0 1.2rem;
    padding: 0.5rem 0;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

nav a:hover {
    color: #3498db;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #3498db;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

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

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 2rem;
}

.page-header h2 {
    font-size: 2rem;
    color: #1e3a5f;
}

/* Content Cards */
.content-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    text-align: center;
    padding: 4rem 2rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.service-time {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 1.5rem 0;
    background: rgba(255,255,255,0.2);
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

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

.info-card h3 {
    color: #1e3a5f;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.info-card p {
    color: #4a5568;
    line-height: 1.5;
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Verse Section */
.verse-section {
    background: #ecf0f1;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin: 2rem 0;
}

.verse {
    font-style: italic;
    font-size: 1.3rem;
    color: #2c3e50;
    max-width: 600px;
    margin: 0 auto;
}

.verse-ref {
    margin-top: 1rem;
    font-weight: bold;
    color: #3498db;
}

/* Buttons */
.btn {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s ease;
    margin-top: 1rem;
}

.btn:hover {
    background: #2980b9;
}

/* Footer */
footer {
    background: #1a2a3a;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}

footer p {
    margin: 0.5rem 0;
    opacity: 0.8;
}

/* Coming Soon Style */
.coming-soon {
    color: #7f8c8d;
    font-style: italic;
    margin-top: 0.25rem;
}

/* Section Spacing */
.section {
    margin-bottom: 2rem;
}

.section h3 {
    color: #1e3a5f;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

/* Map Container */
.map-container {
    margin: 1.5rem 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
}

/* Event Cards */
.event {
    background: #ecf0f1;
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem 0;
}

/* Responsive */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.8rem;
    }

    .hero h2 {
        font-size: 1.6rem;
    }

    .service-time {
        font-size: 1.3rem;
    }

    nav a {
        margin: 0 0.6rem;
        font-size: 0.9rem;
    }

    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 2rem 1rem;
    }

    .map-container iframe {
        height: 300px;
    }
}

/* Games Link Hover Effect */
.games-link {
    color: #7f8c8d;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.games-link:hover {
    color: #ffd700;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
    transform: scale(1.05);
    letter-spacing: 0.5px;
}
