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

body {
	font-family: Arial, sans-sarif;
	line-height: 1.6;
	color: #333;
	background-color: #f4f4f4;
}

header {
	background-color: #333;
    color: #fff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
}

nav {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

nav h1 {
    font-size: 1.8rem;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

nav a:hover {
    color: #ddd;
}

.hero {
	width: 100%;
	height: 250px;
	overflow: hidden;
	margin: 0;
	padding: 0;
	box-shadow: none;
}

.hero img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

@media (max-width: 768px) {
	.hero {
		height: 250px;
	}
}

@media (max-width: 480px) {
	.hero {
		height: 200px;
	}
}

main {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 2rem;
}

section {
    background-color: #fff;
    margin: 2rem 0;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

section h2 {
    margin-bottom: 1rem;
    color: #333;
}

#home {
    text-align: center;
}

#home h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

#home h3 {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 1rem;
}

#home p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

#home i.fa-map-marker-alt {
    color: #e74c3c;
    margin-right: 0.5rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-icons a {
    font-size: 2rem;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-icons a:hover {
    color: #007bff;
    transform: scale(1.2);
}

/* Mobile responsive */
@media (max-width: 768px) {
    #home h1 {
        font-size: 2rem;
    }
    
    #home h3 {
        font-size: 1.1rem;
    }
    
    .social-icons {
        gap: 1rem;
    }
    
    .social-icons a {
        font-size: 1.5rem;
    }
}
/* ===== STANDARD TEXT LINKS IN PARAGRAPHS ONLY ===== */

p a {
    color: #240502;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

p a:hover {
    color: #e00b8f;
}

p a:visited {
    color: #240502;
}

p a:active {
    color: #e00b8f;
}

p a:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}
#writing {
    background-color: #fff;
    margin: 2rem auto;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    max-width: 1000px;
}

.news-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.news-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.news-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    transform: translateY(-4px);
}

.news-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.news-card-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-card-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin: 0 0 0.5rem 0;
    color: #333;
}

.news-card-description {
    font-size: 0.9rem;
    color: #666;
    margin: 0 0 1rem 0;
    flex-grow: 1;
}

.news-card-url {
    font-size: 0.85rem;
    color: #999;
    margin: 0;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .news-container {
        grid-template-columns: 1fr;
    }
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}