* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.m-0{margin:0px;}
.m-5{margin:5px;}
.m-10{margin:10px;}
.m-15{margin:15px;}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1f2937;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.navbar {
    position: fixed;
    width: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    z-index: 1000;
	top:0;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo span {
    color: #3b82f6;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.hero {
    height: 100vh;
    background: url('hero-image.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
}

.hero-content {
    position: relative;
	text-align:center;
	margin-top:80px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    margin-bottom: 30px;
}

.btn-primary {
    background: #3b82f6;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #2563eb;
}

.latest {
    padding: 80px 0;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
    gap: 20px;
}

.card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 20px;
}

.community {
    background: #f9fafb;
    padding: 80px 0;
}

.community-flex {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact {
    padding: 80px 0;
}

.contact form input,
.contact form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

footer {
    background: #111827;
    color: white;
    padding: 30px 0;
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
