/* style.css */

:root {
    --primary-color: #198754; /* Bootstrap Success Green - Similar to Assunnah */
    --secondary-color: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

/* Navbar active link styling */
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    font-weight: bold;
}

/* Hero Section with dark overlay for text readability */
.hero-section {
    /* Replace this URL with a high-quality cover image from your FB group */
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1532629345422-7515f3d16bb6?auto=format&fit=crop&q=80') center/cover no-repeat;
    height: 100vh;
    min-height: 600px;
    margin-top: 56px; /* Offset for fixed navbar */
}

/* Card hover effects */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

/* Form inputs styling */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

/* Utility spacing */
section {
    scroll-margin-top: 70px; /* Ensures anchor links don't hide behind fixed navbar */
}