:root {
    --color-primary: #014421;
    --color-accent: #D4AF37;
    --color-text: #1C1C1C;
    --color-bg: #F9F9F9;
    --color-muted: #A9A9A9;
    --font-body: 'Lucida Grande', sans-serif;
    --font-heading: 'Poppins', sans-serif;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
}

h1, h2, h3 {
    color: var(--color-primary);
}

h1 {
    font-family: var(--font-heading);
    text-align: center;
    font-size: 40px;
    margin: 0px 0px;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.tagline {
    color: var(--color-accent);
    text-align: center;
    font-size: 24px;
    font-style: italic;
    margin: 0px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif
}

a {
    color: var(--color-muted);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

body {
    margin: 0;
    padding: 0 1rem;
}

main,
footer {
    max-width: 720px;
    margin: 0 auto;
    padding: 2rem 0;
}

p {
    margin-bottom: 1rem;
}

section {
    padding: 2rem 0;
    border-bottom: 1px solid var(--color-muted);
}

/* Bullet points */
ul {
    padding-left: 1.5rem;
    list-style: disc;
    line-height: 1.6;
}

.icon-bullets {
    list-style: none;
    padding-left: 0;
}

.icon-bullets li {
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.icon-bullets span {
    margin-right: 0.5rem;
}

/* Form */
input[type="text"],
input[type="email"] {
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    width: 100%;
    margin-bottom: 1rem;
    font-size: 1rem;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

/* Tools */
.tool-link a,
button {
    background-color: var(--color-primary);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 1rem;
    transition: background 0.2s ease;
    border-width: 2px;
    border-color: var(--color-primary);
    border-style: outset;
}

.tool-link a:hover,
button:hover {
    background: var(--color-accent);
}

.tool-preview {
    border-radius: 8px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
    max-width: 100%;
    height: auto;
    margin-top: 1rem;
}

/* Navigation */
nav {
    text-align: center;
    margin: 28px 0 18px 0;
}

/* Remove bullet points if nav uses a list */
nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 36px;
    list-style: none;
    padding: 0;
    margin: 0;
}

@media (max-width: 600px) {
    nav ul {
        flex-direction: column;
        gap: 12px;
    }
}

nav li {
    display: block;
    margin: 0;
    padding: 0;
}

nav a {
    font-family: 'Inter', 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 18px;
    text-decoration: none;
    color: #2d2d2d;
    font-weight: 600;
    font-size: 1em;
    padding: 6px 0;
    border: none;
    background: none;
    position: relative;
    transition: color 0.18s;
    display: block;
}

nav a::after {
    content: "";
    display: block;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
    transition: width 0.2s;
    margin: 4px auto 0 auto;
    border-radius: 1px;
}

nav a:hover,
nav a:focus {
    color: var(--color-accent);
    text-decoration: none;
}

nav a:hover::after,
nav a:focus::after {
    width: 100%;
}