/* --- General Styles --- */
:root {
    --primary-color: #007AB8;
    --dark-text: #333;
    --light-bg: #fff;
    --grey-bg: #f4f4f4;
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--light-bg);
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* --- Layout --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Header & Nav --- */
header {
    background: var(--primary-color);
    padding: 15px 0;
    border-bottom: 3px solid #005f8e;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    font-weight: bold;
    color: white;
    position: relative;
    padding: 5px 0;
}

/* Subtle Hover Effect */
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: white;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* --- Hero Section (White) --- */
.hero {
    background: var(--light-bg);
    padding: 60px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #555;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary-color);
    color: white;
    border-radius: 5px;
    font-weight: bold;
}

/* --- About Section (Grey) --- */
#about {
    background: var(--grey-bg);
    padding: 60px 0;
    width: 100%;
}

/* --- Cards Section - Key Issues (White Background) --- */
.issues {
    padding: 60px 0;
    background: var(--light-bg) !important; /* Force White */
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--grey-bg); /* Cards are grey */
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border-top: 4px solid var(--primary-color);
}

/* --- Social Section (Grey Background) --- */
.social-section {
    background: var(--grey-bg) !important; /* Force Grey */
    padding: 40px 0;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 1.2rem;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* Social Icons and Hover Effects */
.social-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.social-links a svg {
    color: var(--dark-text);
}

.social-links a:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background-color: rgba(0, 122, 184, 0.05);
}

.social-links a:hover svg {
    color: var(--primary-color);
}

/* --- Gallery Grid --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    padding: 40px 0;
}

.gallery-item {
    margin-bottom: 40px; /* Add this line to create space below each thumbnail */
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

/* --- Footer --- */
footer {
    background: var(--primary-color);
    color: white;
    padding: 40px 0;
    text-align: center;
    margin-top: 0; /* Changed from 40px to 0 to remove the gap */
}

footer a {
    color: white;
}
/* 
body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--light-bg);
    background-image: url('../assets/photos/bell.png'); 
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
}
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.85);  Adjust opacity here if needed
    z-index: -1;
} 
*/
/* --- Responsive Design --- */
@media (max-width: 768px) {
    .nav-links {
        gap: 10px;
        font-size: 0.9rem;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
}