﻿:root {
    --purple: #33006F;
    --purple-dark: #22004A;
    --teal: #00A3A0;
    --copper: #E69A29;
    --white: #FFFFFF;
    --black: #000000;
    --cream: #FFF8EC;
    --light-copper: #FFEAC6;
}

/* Headings */
h1, h2, h3 {
    font-family: 'Bebas Neue', sans-serif;
}

/* Buttons and subheadings */
button, .btn, .subheading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; /* Bold */
}

/* Navigation/menu items */
.nav-item, .menu-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500; /* Medium */
}

/* Body text */
body, p, .body-text, label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300; /* Light or Regular */
}

/* Hero Section */
.hero {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(to bottom right, #E69A29, #F24D8A);
    color: var(--white);
}

    .hero h2 {
        font-size: 4rem;
        margin-bottom: 10px;
    }

    .hero h6 {
        font-size: 1.25rem;
        margin-bottom: 30px;
        font-weight: normal;
    }

.hero-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
}

    .hero-controls button {
        background-color: var(--white);
        color: var(--purple);
        border: none;
        padding: 12px 24px;
        font-size: 1rem;
        border-radius: 8px;
        cursor: pointer;
        font-weight: bold;
        transition: all 0.3s ease;
    }

        .hero-controls button:hover {
            background-color: var(--light-copper);
        }

/* What You Can Do Section */
.can-do-container {
    text-align: center;
    padding: 60px 20px;
    background-color: var(--white);
}

    .can-do-container h3 {
        font-size: 2rem;
        color: var(--purple);
        margin-bottom: 40px;
    }

.can-do-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.can-do {
    background-color: var(--cream);
    border-radius: 12px;
    padding: 20px;
    width: 280px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    text-align: left;
}

    .can-do label {
        display: block;
        font-weight: bold;
        color: var(--purple);
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

/* Shared section styles */
.how-it-works,
.pricing,
.built-this,
.paperwork {
    padding: 60px 20px;
    text-align: center;
}

.how-it-works {
    background-color: var(--light-copper);
}

.pricing {
    background-color: var(--cream);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.built-this {
    background-color: var(--white);
}

.paperwork {
    background-color: var(--purple);
    color: var(--white);
}

    .paperwork button,
    .built-this button {
        margin-top: 20px;
        padding: 12px 24px;
        font-size: 1rem;
        font-weight: bold;
        background-color: var(--copper);
        color: var(--white);
        border: none;
        border-radius: 8px;
        cursor: pointer;
    }

        .paperwork button:hover,
        .built-this button:hover {
            background-color: #d18325;
        }

ul {
    list-style: none;
    padding-left: 0;
    max-width: 600px;
    margin: 0 auto;
}

    ul li {
        margin-bottom: 10px;
        padding-left: 20px;
        text-align: left;
        position: relative;
    }

        ul li::before {
            content: "✔";
            color: var(--teal);
            font-weight: bold;
            position: absolute;
            left: 0;
        }

.top-nav {
    background-color: var(--purple);
    color: var(--white);
    padding: 12px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--white);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background 0.2s ease;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

    .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

.logout {
    color: #ffdddd;
}

    .logout:hover {
        background-color: rgba(255, 0, 0, 0.1);
    }

/* Make typeahead results more interactive */
.blazored-typeahead__result {
    padding: 10px 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-weight: 500;
}

    .blazored-typeahead__result:hover {
        background-color: var(--light-copper); /* or #f8f9fa for light gray */
        color: var(--purple); /* or any highlight color */
        border-radius: 4px;
    }

/* Optional: spacing between results */
.blazored-typeahead__results-container {
    margin-top: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    overflow: hidden;
}

strong{
    font-weight: bold;
}

/* bump all radios up by 50% */
input[type="radio"] {
    transform: scale(1.5);
    /* optional: keep your layout from shifting too much: */
    margin: 0.2em;
}