/* Base Styles */
@font-face {
    font-family: 'SF Pro Text';
    src: url('/fonts/SF-Pro-Text-Regular.woff2') format('woff2'),
    url('/fonts/SF-Pro-Text-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    }
    
    @font-face {
    font-family: 'SF Pro Text';
    src: url('/fonts/SF-Pro-Text-Bold.woff2') format('woff2'),
    url('/fonts/SF-Pro-Text-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    }
    
    /* Add more weights/styles as needed */
    
    :root {
    --white: #FFFFFF;
    --space-gray: #333333;
    --silver: #B0B0B0;
    --deep-blue: #007AFF;
    --charcoal: #1C1C1C;
    --pale-silver: #F4F4F4;
    --electric-teal: #00D1B2;
    --font-primary: 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    }
    
    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-primary);
    -webkit-font-smoothing: antialiased;
    }
    
    body {
    background-color: var(--white);
    color: var(--space-gray);
    line-height: 1.6;
    }
    
    h1, h2, h3, h4 {
    color: var(--charcoal);
    font-weight: 600;
    }
    
    a {
    color: var(--deep-blue);
    text-decoration: none;
    transition: all 0.3s ease;
    }
    
    a:hover {
    color: var(--electric-teal);
    }
    
    .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    }
    
    /* Header */
    header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }
    
    nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    }
    
    .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
    }
    
    .logo span {
    color: var(--electric-teal);
    }
    
    .nav-links {
    display: flex;
    gap: 30px;
    }
    
    .nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--space-gray);
    }
    
    .nav-links a:hover {
    color: var(--deep-blue);
    }

    /* Active link indicator */
    .nav-links a.active {
        color: var(--deep-blue);
    }
    
    .nav-links a.active::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 100%;
        height: 2px;
        /*background-color: var(--deep-blue);*/
        transition: width 0.3s ease;
    }
    
    /* Hero Section */
    .hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(to bottom, var(--white) 0%, var(--pale-silver) 100%);
    position: relative;
    overflow: hidden;
    }
    
    .hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('Assets/background.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.05;
    z-index: 0;
    }
    
    .hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
    }
    
    .hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--charcoal);
    }
    
    .hero p.tagline {
    font-size: 1.5rem;
    color: var(--space-gray);
    margin-bottom: 30px;
    font-weight: 300;
    }
    
    .hero-cta {
    display: inline-block;
    background-color: var(--deep-blue);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    }
    
    .hero-cta:hover {
    color: var(--white);
    background-color: var(--electric-teal);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 209, 178, 0.2);
    }
    
    /* Typing animation */
    .typing-container {
    display: inline-block;
    }
    
    .typing-text {
    border-right: 0.1em solid var(--electric-teal);
    white-space: nowrap;
    overflow: hidden;
    color: var(--deep-blue);
    animation: typing 3.5s steps(30, end), blink-caret 0.75s step-end infinite;
    }
    
    @keyframes typing {
    from { width: 0 }
    to { width: 100% }
    }
    
    @keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: var(--electric-teal) }
    }
    
    /* About Section */
    .about {
    padding: 100px 0;
    background-color: var(--white);
    }
    
    .section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    }
    
    .section-title h2 {
    font-size: 2.5rem;
    display: inline-block;
    color: var(--charcoal);
    }
    
    .section-title h2:after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--electric-teal);
    margin: 15px auto 0;
    }
    
    .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    }
    
    .about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }
    
    .about-image img {
    width: 100%;
    height: auto;
    display: block;
    }
    
    .about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--charcoal);
    }
    
    .about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--space-gray);
    }
    
    .about-text .poetic {
    font-style: italic;
    color: var(--charcoal);
    border-left: 3px solid var(--electric-teal);
    padding-left: 20px;
    margin: 30px 0;
    }
    
    /* Creator & Inventor Section */
    .creator-identity {
    padding: 100px 0;
    background-color: var(--pale-silver);
    }
    
    .creator-headline h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 500;
    color: var(--charcoal);
    }
    
    .creator-blurb {
    max-width: 800px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    }
    
    .creator-blurb p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--space-gray);
    }
    
    .personal-quote {
    position: relative;
    max-width: 700px;
    margin: 3rem auto;
    padding: 1.5rem 2rem;
    background-color: var(--white);
    border-left: 4px solid var(--electric-teal);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }
    
    .personal-quote p {
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
    }
    
    .personal-quote cite {
    display: block;
    text-align: right;
    font-weight: 500;
    color: var(--space-gray);
    }
    
    /* Projects Section */
    /*.projects {
    padding: 100px 0;
    background-color: var(--pale-silver);
    }
    
    .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    }
    
    .project-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    }
    
    .project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }
    
    .project-image {
    height: 200px;
    overflow: hidden;
    }
    
    .project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    }
    
    .project-card:hover .project-image img {
    transform: scale(1.05);
    }
    
    .project-content {
    padding: 25px;
    }
    
    .project-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--charcoal);
    }
    
    .project-content p {
    color: var(--space-gray);
    margin-bottom: 20px;
    }
    
    .project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    }
    
    .project-tag {
    background-color: var(--pale-silver);
    color: var(--space-gray);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    }
    
    .project-link {
    display: inline-flex;
    align-items: center;
    color: var(--deep-blue);
    font-weight: 500;
    font-size: 0.9rem;
    }
    
    .project-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
    }
    
    .project-link:hover i {
    transform: translateX(3px);
    }*/
    
    /* Vision Section */
    .vision {
    padding: 100px 0;
    background-color: var(--white);
    /*background-color: var(--pale-silver);*/
    text-align: center;
    position: relative;
    overflow: hidden;
    }
    
    .vision::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://placehold.co/1920x1080/ffffff/333333?text=Future+Vision') no-repeat center center;
    background-size: cover;
    opacity: 0.03;
    z-index: 0;
    }
    
    .vision-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    }
    
    .vision-quote {
    font-size: 2rem;
    font-weight: 300;
    font-style: italic;
    color: var(--charcoal);
    margin-bottom: 30px;
    line-height: 1.4;
    }
    
    .vision-author {
    font-size: 1.2rem;
    color: var(--space-gray);
    }
    
    /* Contact Section */
    .contact {
    padding: 100px 0;
    background-color: var(--pale-silver);
    /*background: linear-gradient(to bottom, var(--white) 0%, var(--pale-silver) 100%);*/
    }
    
    .contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    }
    
    .contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--charcoal);
    }
    
    .contact-info p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--space-gray);
    }
    
    .contact-links {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    }
    
    .contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    color: var(--deep-blue);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    }
    
    .contact-link:hover {
    background-color: var(--electric-teal);
    color: var(--white);
    transform: translateY(-5px);
    }
    
    .contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }
    
    .form-group {
    margin-bottom: 20px;
    }
    
    .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--charcoal);
    }
    
    .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--silver);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    }
    
    .form-control:focus {
    border-color: var(--deep-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
    }
    
    textarea.form-control {
    min-height: 150px;
    resize: vertical;
    }
    
    .submit-btn {
    background-color: var(--deep-blue);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    }
    
    .submit-btn:hover {
    background-color: var(--electric-teal);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 209, 178, 0.2);
    }
    
    /* Form success/error messages */
    .form-message {
    padding: 15px;
    margin-top: 20px;
    border-radius: 8px;
    display: none;
    }
    
    .form-message.success {
    background-color: rgba(0, 209, 178, 0.1);
    color: var(--electric-teal);
    border: 1px solid var(--electric-teal);
    }
    
    .form-message.error {
    background-color: rgba(255, 59, 48, 0.1);
    color: #FF3B30;
    border: 1px solid #FF3B30;
    }
    
    /* Footer */
    footer {
    padding: 50px 0;
    background-color: var(--charcoal);
    color: var(--white);
    text-align: center;
    }
    
    .footer-content {
    max-width: 600px;
    margin: 0 auto;
    }
    
    .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    }
    
    .footer-logo span {
    color: var(--electric-teal);
    }
    
    .footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    }
    
    .footer-links a {
    color: var(--silver);
    }
    
    .footer-links a:hover {
    color: var(--white);
    }
    
    .copyright {
    color: var(--silver);
    font-size: 0.9rem;
    }
    
    /* Responsive Design */
    @media (max-width: 992px) {
    .hero h1 {
    font-size: 3rem;
    }
    
    .about-content,
    .contact-content {
    grid-template-columns: 1fr;
    }
    
    .about-image {
    order: -1;
    }
    }
    
    @media (max-width: 768px) {
    .hero h1 {
    font-size: 2.5rem;
    }
    
    .hero p.tagline {
    font-size: 1.2rem;
    }
    
    .section-title h2 {
    font-size: 2rem;
    }
    
    .projects-grid {
    grid-template-columns: 1fr;
    }
    
    .nav-links {
    display: none;
    }
    
    .creator-headline h3 {
    font-size: 1.5rem;
    }
    
    .personal-quote {
    padding: 1rem 1.5rem;
    }
    
    .personal-quote p {
    font-size: 1.1rem;
    }
    }
    
    /* Animation */
    @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
    }
    
    .fade-in {
    animation: fadeIn 1s ease forwards;
    }
    
    .delay-1 {
    animation-delay: 0.2s;
    }
    
    .delay-2 {
    animation-delay: 0.4s;
    }
    
    .delay-3 {
    animation-delay: 0.6s;
    }
