/* Light Theme for API Muslim Landing Page */

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f8f9fa;
    background-image: url("../bg-6-full.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #123e38; /* Dominant dark green text */
}

main.container {
    flex: 1 0 auto;
}

.hero-section {
    background-color: rgba(238, 247, 220, 0.35);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 1rem !important;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1); /* Added for depth */
}

.hero-section .display-5 {
    color: #052c27; /* A slightly darker green for the main headline */
}

.hero-section img {
    transition: transform 0.3s ease;
}

.hero-section img:hover {
    transform: scale(1.03);
}

.card {
    background-color: rgba(
        225,
        240,
        230,
        0.85
    ); /* Soft, light green, transparent */
    border: 1px solid rgba(18, 62, 56, 0.15);
    color: #123e38;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
    background-color: rgba(225, 240, 230, 0.95);
}

.card-deemphasized {
    opacity: 0.8;
    transform: scale(0.95);
    border-style: dashed;
}

.card-deemphasized:hover {
    opacity: 1;
    transform: scale(0.98) translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.card-title {
    color: #052c27;
    font-weight: bold;
}

.btn-custom-v3 {
    background-color: #123e38;
    border-color: #123e38;
    color: #fff;
    font-weight: bold;
    transition: all 0.2s ease-in-out;
}

.btn-custom-v3:hover {
    background-color: #052c27;
    border-color: #052c27;
    color: #ffc107; /* Yellow text */
    transform: scale(1.05);
}

.footer {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: #123e38;
}

.terabit-link {
    color: #052c27;
    text-decoration: none;
    font-weight: bold;
}

.terabit-link:hover {
    color: #123e38;
    text-decoration: underline;
}
