:root {
    --primary: #344267; /* Dark blue */
    --secondary: #e0e8f0; /* Light blue-gray */
    --accent: #4f648f; /* Blue gray */
    --green: #00c853; /* Success green */
    --white: #ffffff;
    --text-dark: #17181e;
    --neutral: #aab8c7;
    --highlight: #7f9394;
    --progress-bg: #e0e0e0;
    --progress-fill: #4caf50;
    --glow-color: rgba(79, 100, 143, 0.5); /* Faint glow */
}
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom, #3E5285, #8CB0EE, #2C3A5D);
    color: var(--text-dark);
}
header {
    background-color: var(--primary);
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.logo-container {
    display: flex;
    align-items: center;
}
.logo {
    height: 50px;
    margin-right: 10px;
}
h1 {
    color: #ffcc00; /* Colorful MOVE+INSPIRE */
    font-size: 36px;
    margin: 0;
}
.tagline {
    color: var(--white);
    font-size: 18px;
}
nav ul {
    list-style: none;
    display: flex;
    padding: 0;
}
nav li {
    margin: 0 10px;
}
nav a {
    color: var(--white);
    text-decoration: none;
}
.hero {
    position: relative;
    height: 300px;
    overflow: hidden;
    background-color: var(--primary);
}
.hero-images {
    position: absolute;
    width: 100%;
    height: 100%;
}
.hero-image {
    position: absolute;
    width: 30%;
    height: auto;
    object-fit: cover;
}
.family {
    left: 5%;
    top: 20%;
    transform: rotate(-10deg);
}
.yoga {
    left: 25%;
    top: 40%;
}
.hike {
    right: 35%;
    top: 10%;
}
.watch {
    right: 20%;
    top: 50%;
    width: 20%;
}
.cycle {
    right: 5%;
    top: 30%;
    transform: rotate(10deg);
}
.community-feed, .content {
    padding: 40px 20px;
    background-color: var(--primary);
    color: var(--white);
}
h2 {
    text-align: center;
    font-size: 28px;
}
.feed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.feed-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 10px;
    color: var(--text-dark);
    box-shadow: 0 0 10px var(--glow-color);
    animation: glow 2s ease-in-out infinite alternate;
}
.large {
    grid-column: span 2;
}
.card-header {
    display: flex;
    align-items: center;
}
.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}
.card-info {
    flex: 1;
}
.points {
    color: var(--green);
    font-weight: bold;
}
.card-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
}
.large .card-image {
    height: 300px;
}
.progress {
    margin-top: 10px;
}
.progress-bar {
    background-color: var(--progress-bg);
    height: 8px;
    border-radius: 4px;
}
.progress-fill {
    background-color: var(--progress-fill);
    height: 100%;
    border-radius: 4px;
}
.rewards {
    display: flex;
    justify-content: space-around;
    margin-top: 10px;
}
.rewards button {
    background-color: var(--accent);
    color: var(--white);
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}
footer {
    background-color: var(--primary);
    padding: 20px;
    text-align: center;
    color: var(--white);
}
footer .logo {
    height: 40px;
}
form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}
label {
    margin-top: 10px;
    color: var(--white);
}
input, select, textarea {
    padding: 8px;
    margin-top: 5px;
    border-radius: 5px;
    border: none;
}
button {
    margin-top: 20px;
    background-color: var(--green);
    color: var(--white);
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: var(--white);
    color: var(--text-dark);
}
th, td {
    padding: 10px;
    border: 1px solid var(--neutral);
    text-align: left;
}
th {
    background-color: var(--accent);
    color: var(--white);
}
.filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}
.filters button {
    background-color: var(--accent);
    color: var(--white);
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
@keyframes glow {
    from {
        box-shadow: 0 0 5px var(--glow-color);
    }
    to {
        box-shadow: 0 0 15px var(--glow-color);
    }
}
.feed-card:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}
.full {
    min-height: 80vh;
}