/*
Theme Name: Nav Pointe Properties Redesign
Theme URI: http://navpointeproperties.com
Author: Nav Pointe Properties, LLC
Author URI: http://navpointeproperties.com
Description: Redesigned theme for Nav Pointe Properties as a property owner and commercial real estate software developer, featuring integration with CREValuationPro.com.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nav-pointe-redesign
*/

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #0f172a;
    background-color: #f3f4f6;
}

a {
    color: #2563eb;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    width: 90%;
    max-width: 1120px;
    margin: 0 auto;
}

.section {
    padding: 4rem 0;
}

.section-heading {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subheading {
    max-width: 640px;
    margin: 0.5rem auto 0;
    text-align: center;
    color: #6b7280;
}

.btn-primary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    background-color: #0f172a;
    color: #ffffff;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #1f2933;
    text-decoration: none;
}

/* Header & Nav */

.site-header {
    background-color: #020617;
    color: #e5e7eb;
    padding: 1rem 0;
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.site-branding .logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.site-branding .tagline {
    display: block;
    font-size: 0.8rem;
    color: #9ca3af;
}

.primary-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.5rem;
}

.primary-menu a {
    color: #e5e7eb;
    font-size: 0.95rem;
    font-weight: 500;
}

.header-cta .btn-primary {
    background-color: #10b981;
}

.header-cta .btn-primary:hover {
    background-color: #059669;
}

/* Hero */

.hero {
    background: radial-gradient(circle at top left, #38bdf8 0, #0f172a 45%, #020617 100%);
    color: #e5e7eb;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.05rem;
    color: #cbd5f5;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(15, 23, 42, 0.8);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
}

.hero-stat-card {
    background-color: rgba(15, 23, 42, 0.95);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(148, 163, 184, 0.3);
}

/* Cards */

.cards-grid {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.card {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

.card h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

/* Properties */

.properties-grid {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.property-card {
    background-color: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

.property-card-image img {
    width: 100%;
    display: block;
}

.property-card-body {
    padding: 1rem 1.25rem 1.5rem;
}

.property-meta {
    font-size: 0.85rem;
    color: #6b7280;
}

/* Forms */

.beta-form {
    max-width: 600px;
    margin: 2rem auto 0;
    background-color: #ffffff;
    padding: 1.75rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

.form-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.form-row label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.form-row input,
.form-row textarea {
    padding: 0.6rem 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid #d1d5db;
    font-size: 0.95rem;
}

/* Footer */

.site-footer {
    background-color: #020617;
    color: #9ca3af;
    padding: 2rem 0;
    font-size: 0.9rem;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
}

.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1rem;
}

.footer-menu a {
    color: #9ca3af;
}

/* Responsive */

@media (max-width: 768px) {
    .site-header-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }
}
