/* =========================================================
   Word In Bite Size – Custom Styles
   Theme-specific styles that complement foundation styles
   ========================================================= */

/* =========================================================
   Custom Image Backgrounds (Your original backgrounds)
   Images are in /images/ folder in theme root
   ========================================================= */

/* HERO SECTION - Bible background */
.wibs-hero-bg {
    background-image: url("../../images/bible-bg.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* ABOUT / BELIEFS background */
.wibs-beliefs-bg {
    background-image: url("../../images/beliefs.jpg");
    background-size: cover;
    background-position: center;
}

/* MISSION background */
.wibs-mission-bg {
    background-image: url("../../images/mission.jpg");
    background-size: cover;
    background-position: center;
}

/* PRAYER / CTA background */
.wibs-prayer-bg {
    background-image: url("../../images/prayer.jpg");
    background-size: cover;
    background-position: center;
}

/* =========================================================
   Background Overlay Utilities
   ========================================================= */

.bg-overlay-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.bg-overlay-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

/* Ensure content stays above overlay */
.bg-overlay-dark > *,
.bg-overlay-light > * {
    position: relative;
    z-index: 2;
}

/* =========================================================
   Theme-Specific Utilities
   ========================================================= */

/* Parallax effect */
.parallax-bg {
    background-attachment: fixed;
}

@media (max-width: 768px) {
    .parallax-bg {
        background-attachment: scroll;
    }
}

/* Content container */
.content-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 60px 20px;
}

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

.section-padding-sm {
    padding: 40px 0;
}

.section-padding-lg {
    padding: 120px 0;
}

/* =========================================================
   Custom Button Styles (Gold accent from original design)
   ========================================================= */

.btn-gold {
    background: linear-gradient(135deg, #d4af37 0%, #b8962e 100%);
    color: #000000;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background: linear-gradient(135deg, #b8962e 0%, #9b7d26 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    color: #000000;
    text-decoration: none;
}

.btn-outline-gold {
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
    padding: 10px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background: #d4af37;
    color: #000000;
    text-decoration: none;
}

/* =========================================================
   Animation Utilities
   ========================================================= */

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

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.5s ease-out;
}

/* Delay classes */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }