@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@100;200;300;400;600;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #3b82f6;
    --primary-hover: #2563eb;
    --text-color: #e5e7eb;
    --text-light: #9ca3af;
    --bg-color: #1a1a2e;
    --bg-gray: #16162a;
    --border-color: #2d2d4a;
    --success-color: #10b981;
    --card-bg: #1e1e38;
    --font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.8;
    background-color: var(--bg-color);
    font-size: 1.1rem;
}

.container {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header and Navigation */
header {
    background-color: #0f0f1e;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    overflow: hidden;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

nav {
    padding: 0.5rem 0;
    position: relative;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-logo {
    height: 107px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 1.25rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1d4ed8 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.tagline {
    font-size: 1.25rem;
    opacity: 0.95;
}

/* Content Sections */
section {
    padding: 3rem 0;
}

section h3 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

section h4 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.content {
    background-color: var(--bg-color);
}

.content .container {
    max-width: 95%;
}

.content p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.content li {
    margin-bottom: 0.5rem;
}

.content a {
    color: var(--primary-color);
    text-decoration: none;
}

.content a:hover {
    text-decoration: underline;
}

.last-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
}

/* Apps Section */
.apps {
    background-color: var(--bg-gray);
    padding-top: 2rem;
}

/* Project Tabs */
.project-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.project-tab {
    padding: 0.75rem 1.5rem;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
    font-family: var(--font-family);
    margin-bottom: -2px;
}

.project-tab:hover {
    color: var(--text-color);
}

.project-tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.project-panel {
    display: none;
}

.project-panel.active {
    display: block;
}

.app-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2.5rem;
    text-align: left;
    transition: transform 0.2s, box-shadow 0.2s;
}

.app-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.app-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 0;
}

.app-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.app-screenshot {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin-top: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.logo-container {
    background: #0f0f0f;
    padding: 1rem 2.5rem;
    margin: -2.5rem -2.5rem 2rem -2.5rem;
    border-radius: 8px 8px 0 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-logo {
    height: auto;
    max-width: 500px;
    max-height: 60px;
    object-fit: contain;
}

.thoughtmaker-card .app-logo {
    max-width: 350px;
    max-height: 50px;
}

.bluesky-card .logo-container {
    padding: 0.3rem 2.5rem;
}

.bluesky-card .app-logo {
    max-width: 688px;
    max-height: 83px;
}

.skywire-card .logo-container {
    padding: 0.5rem 2.5rem;
}

.skywire-card .app-logo {
    max-width: 350px;
    max-height: 60px;
}

.app-title {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
}

.app-buttons {
    margin-top: 1.5rem;
    text-align: center;
}

.app-description {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.15rem;
    line-height: 1.7;
}

.janua-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-style: italic;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    text-align: left;
}

.feature-list li {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 1.25rem;
    transition: background-color 0.2s;
}

.btn:hover {
    background-color: var(--primary-hover);
}

.btn-secondary {
    background-color: #374151;
    margin-left: 0.5rem;
    margin-top: 0.5rem;
}

.btn-secondary:hover {
    background-color: #4b5563;
}

/* About Section */
.about {
    text-align: center;
}

.about p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 1.125rem;
}

/* Contact Info */
.contact-info {
    background-color: var(--bg-gray);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.contact-info p {
    margin-bottom: 0.75rem;
}

/* Footer */
footer {
    background-color: #0f0f1e;
    color: var(--text-light);
    padding: 2rem 0;
    margin-top: 4rem;
    border-top: 1px solid var(--border-color);
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

footer p {
    margin: 0;
}

.footer-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.footer-links a:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1.125rem;
    }

    section h3 {
        font-size: 1.5rem;
    }

    footer .container {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .nav-links {
        display: none;
    }

    .logo {
        font-size: 1.25rem;
    }

    .hero h2 {
        font-size: 1.75rem;
    }
}
