/* Custom styles for Youth Retreat Website */

/* Dark Theme */
body {
    background-color: #1a1a1a;
    color: #e0e0e0;
}

/* Hero Section - Home Page */
.hero-section {
    background: black;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.logo {
    max-width: 80%;
    margin-bottom: 20px;
}

/* General Sections */
.section-padding {
    padding: 50px 0;
    margin-bottom: 60px;
}

/* Dark backgrounds for sections */
.bg-light {
    background-color: #2a2a2a !important;
    color: #e0e0e0;
}

/* Video Container - Home Page */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    width: 100%;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Ensure video section doesn't overflow on mobile */
@media (max-width: 768px) {
    .video-container {
        padding-bottom: 56.25%;
    }
}

/* Registration Page */
.registration-card {
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    border-radius: 10px;
    background-color: #2a2a2a;
    border: 1px solid #404040;
}

.card {
    background-color: #2a2a2a;
    border: 1px solid #404040;
    color: #e0e0e0;
}

.card-body {
    color: #e0e0e0;
}

.alert-info {
    background-color: #1e3a5f;
    border-color: #2e5a8f;
    color: #d0e0ff;
}

/* Speaker Page */
.speaker-img {
    max-width: 100%;
    max-height: 600px;
    width: auto;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    object-fit: cover;
}

/* Resources Page */
.resource-card {
    transition: transform 0.2s;
    height: 100%;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Footer - All Pages */
footer {
    background-color: #0d0d0d;
    color: #e0e0e0;
    padding: 50px 0;
    margin-top: 80px;
    border-top: 1px solid #404040;
}

footer a {
    color: #667eea;
}

footer a:hover {
    color: #8899ff;
}

/* Links */
a {
    color: #667eea;
}

a:hover {
    color: #8899ff;
}

/* Buttons */
.btn-primary {
    background-color: #667eea;
    border-color: #667eea;
}

.btn-primary:hover {
    background-color: #5568d3;
    border-color: #5568d3;
}

.btn-light {
    background-color: #f8f9fa;
    color: #1a1a1a;
}

.btn-light:hover {
    background-color: #e2e6ea;
    color: #1a1a1a;
}