<?php
// ===============================
// assets/css/style.css
// ===============================
?>
body {
    font-family: Arial;
    margin: 0;
    background: #f4f8fb;
}

.navbar {
    display: flex;
    justify-content: space-between;
    background: #2c7be5;
    padding: 15px;
    color: white;
}

.navbar ul {
    list-style: none;
    display: flex;
}

.navbar ul li {
    margin-left: 20px;
}

.navbar a {
    color: white;
    text-decoration: none;
}

.hero {
    text-align: center;
    padding: 80px;
    background: #dceeff;
}

.card {
    background: white;
    padding: 20px;
    margin: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

footer {
    background: #2c7be5;
    color: white;
    text-align: center;
    padding: 15px;
}

/* NAVBAR CONTAINER */
.navbar {
    display: flex;
    justify-content: space-between;  /* pushes logo left, menu right */
    align-items: center;
    background-color: #2c7be5;
    padding: 15px 40px;
}

/* LOGO */
.logo {
    color: white;
    font-size: 22px;
    font-weight: bold;
}

/* NAV LINKS CONTAINER */
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;   /* 🔥 THIS creates proper spacing between links */
    margin: 0;
    padding: 0;
}

/* INDIVIDUAL LINKS */
.nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    padding: 8px 12px;
    transition: 0.3s;
}

/* HOVER EFFECT */
.nav-links li a:hover {
    background-color: white;
    color: #2c7be5;
    border-radius: 5px;
}