/* Homepage background with the same image as login */
.homepage-body {
    background-image: url('./src/wallp_1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

/* Make all text white for better contrast on background */
.homepage-body h1,
.homepage-body h2,
.homepage-body h3,
.homepage-body h4,
.homepage-body h5,
.homepage-body h6,
.homepage-body p,
.homepage-body .lead {
    color: white !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Consistent card styling - dark see-through background for ALL cards */
.card {
    background-color: rgba(0, 0, 0, 0.7) !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

/* Card headers - slightly darker */
.card-header {
    background-color: rgba(0, 0, 0, 0.9) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Card body text color */
.card-body {
    color: white;
}

/* Make sure bg-transparent class also uses the same dark background */
.card.bg-transparent {
    background-color: rgba(0, 0, 0, 0.7) !important;
}

/* Card hover effects */
.card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Specific styling for the number circles in How It Works section */
.bg-primary {
    background-color: var(--bs-primary) !important;
}