/* Custom Styles for BBD Landing Page */
.hero {
    background-image: url('../img/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
}

.is-hero-cta {
    animation: bounceIn 1s ease-out;
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 8px;
}

.is-hero-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.footer {
    background-color: #121212;
    color: #e0e0e0;
}

.parallax {
    background-image: url('../img/parallax-background.jpg'); /* Parallax background */
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: #fff;
    text-align: center;
}

.parallax-inner {
    padding: 60px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

/* Dark Mode Styles */
.dark-mode {
    background-color: #121212;
    color: #e0e0e0;
}

.dark-mode .navbar,
.dark-mode .footer,
.dark-mode .box {
    background-color: #1f1f1f;
}

.is-dark-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    cursor: pointer;
    font-size: 1.5rem;
    color: #fff;
    z-index: 1000;
    transition: color 0.3s;
}

.is-dark-toggle:hover {
    color: #ffdd57;
}

/* Keyframe Animations */
@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.3); }
    50% { opacity: 0.9; transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}
