body {
    transition: background-color 0.3s, color 0.3s;
}

.dark-mode {
    background-color: #0d1117;
    color: #f5f5f5;
}

/* =================================================================== */

/* Navbar */

.navbar {
    background-color: transparent;
    position: absolute;
    width: 100%;
    z-index: 10;
}

.navbar.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.dark-mode .navbar {
    background-color: rgba(0, 0, 0, 0.9) !important;
}

.dark-mode .navbar .navbar-brand{
    color: white !important;
}

.dark-mode .navbar .themeToggle{
    --bs-btn-color: #f8f9fa;
    --bs-btn-border-color: #f8f9fa;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #f8f9fa;
}

/* =================================================================== */

/* Hero */

.hero {
    background: linear-gradient(to right, rgba(0,0,0,0.5), rgba(0,0,0,0.3)), url('./../images/hero.jpg') center/cover;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* =================================================================== */

/* Features */

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    background-color: rgba(255,255,255,0.05);
    transition: transform 0.2s;

    &:hover {
        transform: translateY(-5px);
    }
}

.dark-mode .feature-item {
    background-color: rgba(255,255,255,0.1);
}

.dark-mode .feature-item .card-body {
    color: white;
}

/* =================================================================== */

/* Testimonials */

.testimonial-section .carousel-indicators button{
    background-color: #869791;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    transition: 0.15s opacity;

    &:hover{
        opacity: 1;
    }
}

.dark-mode .testimonial-section {
    background-color: #1e1e1e !important;
}

.dark-mode .testimonial-section .lead,
.dark-mode .testimonial-section h6 {
    color: #f5f5f5 !important;
}

/* =================================================================== */

/* Pricing */

.pricing-card {
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 2rem;
    transition: transform 0.3s;

    &:hover {
        transform: scale(1.05);
    }
}

.dark-mode .pricing-card {
    background-color: rgba(255,255,255,0.1);
}

.dark-mode .pricing-card a{
    background-color: white !important;
    color: black;
}

/* =================================================================== */

/* CTA */

.cta-section {
    padding: 4rem 0;
    color: white;
    text-align: center;
}
