/* SeventyTwoPixel - Main Stylesheet - Updated Branding December 2025 */

:root {
    /* Brand Colors */
    --stp-blue: #1F3A93;
    --stp-orange: #FF7F32;
    --stp-light: #EAF8FF;
    --white: #FFFFFF;
    --gray-600: #4B5563;
    --gray-300: #D1D5DB;
    --success: #10B981;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    
    /* Shadows */
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--stp-blue);
    background-color: var(--stp-light);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Header */
.header {
    background-color: var(--stp-blue);
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--white);
    font-weight: 700;
    font-size: 1.25rem;
    text-decoration: none;
}

.logo-text {
    color: var(--stp-orange);
}

.nav-links {
    display: flex;
    gap: var(--spacing-xl);
    list-style: none;
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 0.5rem;
    transition: all 0.2s;
    text-decoration: none;
}

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

.nav-links a.active {
    background-color: var(--stp-orange);
}

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--stp-blue) 0%, #2D4BA5 100%);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
    min-height: 200px;
    display: flex;
    align-items: center;
}

.hero h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: var(--spacing-lg);
}

.hero .tagline {
    font-size: 1.25rem;
    color: var(--stp-orange);
    font-weight: 600;
    margin-bottom: var(--spacing-xl);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--stp-orange);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--stp-blue);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: transparent;
    color: var(--white);
}

/* Cards */
.grid {
    display: grid;
    gap: var(--spacing-xl);
}

.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.card {
    background-color: var(--white);
    border-radius: 1rem;
    padding: var(--spacing-xl);
    box-shadow: var(--shadow);
    transition: all 0.2s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 64px;
    height: 64px;
    background-color: var(--stp-light);
    color: var(--stp-orange);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
}

.card-title {
    font-size: 1.25rem;
    color: var(--stp-blue);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.card-description {
    color: var(--gray-600);
    margin-bottom: var(--spacing-lg);
}

.card-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--success);
    color: var(--white);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.card-badge.coming-soon {
    background-color: var(--gray-600);
}

/* Forms */
.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--stp-blue);
    margin-bottom: var(--spacing-sm);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--gray-300);
    border-radius: 0.5rem;
    font-family: var(--font-family);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--stp-orange);
    box-shadow: 0 0 0 3px rgba(255, 127, 50, 0.1);
}

/* Footer */
.footer {
    background-color: var(--stp-blue);
    color: var(--white);
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-xl);
}

.footer h3 {
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--stp-orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-lg);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Section */
.section {
    padding: var(--spacing-2xl) 0;
}

.section-title {
    text-align: center;
    font-size: 2.25rem;
    color: var(--stp-blue);
    margin-bottom: var(--spacing-xl);
    font-weight: 700;
}

/* Utilities */
.text-center {
    text-align: center;
}

.text-orange {
    color: var(--stp-orange);
}

.mb-4 {
    margin-bottom: var(--spacing-xl);
}

/* Responsive */
@media (max-width: 768px) {
    .grid-cols-3 {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .nav-links {
        display: none;
    }
}
