/* The Spatial Computing Company LTD - Stylesheet */

/* Charter Font Face Declarations */
@font-face {
    font-family: 'Charter';
    src: url('./public/fonts/Charter.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Charter';
    src: url('./public/fonts/Charter-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Charter';
    src: url('./public/fonts/Charter-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Charter';
    src: url('./public/fonts/Charter-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

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

:root {
    --primary-color: #1a365d;
    --secondary-color: #2d3748;
    --accent-color: #4a5568;
    --text-dark: #1a202c;
    --text-medium: #2d3748;
    --text-light: #4a5568;
    --text-lighter: #718096;
    --background-light: #f7fafc;
    --background-section: #edf2f7;
    --border-light: #e2e8f0;
    --white: #ffffff;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 8px 25px rgba(26, 54, 93, 0.15);
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--background-light);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.container {
    background: var(--white);
    border-radius: 2px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    padding: 4rem;
    max-width: 900px;
    width: 90%;
    text-align: left;
}

.logo {
    margin-bottom: 3rem;
    text-align: center;
    border-bottom: 2px solid var(--border-light);
    padding-bottom: 2rem;
}

h1 {
    font-family: 'Charter', Georgia, serif;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 2.75rem;
    font-weight: bold;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.tagline {
    font-family: 'Charter', Georgia, serif;
    font-size: 1.1rem;
    color: var(--text-light);
    font-style: italic;
    font-weight: normal;
}

.ip-section {
    background: var(--background-section);
    border-radius: 2px;
    padding: 2.5rem;
    margin: 3rem 0;
    border-left: 4px solid var(--primary-color);
}

.ip-title {
    font-family: 'Charter', Georgia, serif;
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.meadow-link {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 2px;
    margin: 1.5rem 0;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: 'Georgia', serif;
}

.meadow-link:hover {
    background: var(--secondary-color);
    box-shadow: var(--shadow-hover);
    text-decoration: none;
    color: var(--white);
}

.founders-section {
    margin: 3rem 0;
    padding: 2.5rem;
    background: var(--background-section);
    border-radius: 2px;
    border-left: 4px solid var(--accent-color);
}

.founders-title {
    font-family: 'Charter', Georgia, serif;
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.founders-info {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1.05rem;
}

.founders-info p {
    margin-bottom: 1rem;
}

.founders-info strong {
    color: var(--text-dark);
    font-weight: 600;
}

.untold-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.untold-link:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

.address-section {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 2px solid var(--border-light);
}

.address-title {
    font-family: 'Charter', Georgia, serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.address {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1.05rem;
}

.footer {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 2px solid var(--border-light);
    color: var(--text-lighter);
    font-size: 0.9rem;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 2.5rem;
        margin: 1rem;
    }

    h1 {
        font-size: 2.25rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .ip-section,
    .founders-section {
        padding: 2rem;
    }

    .ip-title,
    .founders-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1.5rem;
    }

    h1 {
        font-size: 1.9rem;
    }

    .ip-title,
    .founders-title {
        font-size: 1.3rem;
    }

    .address-title {
        font-size: 1.2rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .meadow-link,
    .untold-link {
        transition: none;
    }
}

/* Print styles */
@media print {
    body {
        background: var(--white);
        color: var(--text-dark);
    }
    
    .container {
        box-shadow: none;
        border: 1px solid var(--border-light);
        padding: 2rem;
    }
    
    .meadow-link {
        background: none;
        color: var(--text-dark);
        border: 2px solid var(--text-dark);
        text-transform: none;
    }
    
    .ip-section,
    .founders-section {
        background: none;
        border: 1px solid var(--border-light);
    }
}
