/* Protopia Color Palette */
:root {
    --deep-green: #1B5E20;
    --light-mint: #A5D6A7;
    --soft-beige: #F5F5DC;
    --warm-gold: #FFD700;
}

/* Body background */
body {
    background-color: var(--soft-beige);
    color: var(--deep-green);
}

/* Navigation Bar */
.navbar {
    background-color: var(--deep-green);
    color: white;
}

/* Hero Section */
.hero {
    background: var(--deep-green);
    color: white;
    text-align: center;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo {
    width: 120px;
    height: auto;
}

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

.hero p {
    font-size: 1.2rem;
    font-weight: 300;
}

/* Navigation Bar */
.navbar {
    background: var(--light-mint);
    padding: 10px 0;
    text-align: center;
}

.navbar a {
    text-decoration: none;
    color: var(--deep-green);
    font-weight: bold;
    margin: 0 15px;
}

/* Main Content Area */
.content-wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

/* Footer */
.footer {
    background: var(--deep-green);
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

/* Buttons */
.button {
    background-color: var(--warm-gold);
    color: var(--deep-green);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

/* Card Styling */
.card {
    background-color: white;
    border: 2px solid var(--light-mint);
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 20px;
}

/* Ensure the navigation bar takes the full width */
.primary-nav {
    background: var(--light-mint);
    /* Light Mint background */
    padding: 15px 0;
    text-align: center;
}

/* Style the menu container */
.primary-nav ul.menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    /* Centers menu items horizontally */
    gap: 20px;
    /* Adds spacing between menu items */
}

/* Style individual menu items */
.primary-nav ul.menu li {
    display: inline-block;
}

/* Style menu links */
.primary-nav ul.menu li a {
    text-decoration: none;
    color: var(--deep-green);
    /* Deep Green text color */
    font-weight: bold;
    font-size: 1.1rem;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

/* Hover effect */
.primary-nav ul.menu li a:hover {
    background: var(--warm-gold);
    /* Warm Gold background on hover */
    color: white;
}
