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

html, body {
    height: 100%;
}

body {
    font-family: 'Urbanist', sans-serif;
    background-color: #e1e1e1;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.banner {
    background-color: #e1e1e1;
    padding: 8px 0 10px 0;
    border-bottom: 1px solid #d0d0d0;
}

.banner-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.logo {
    font-size: 2.3em;
    font-weight: 700;
    line-height: 1;
}

.brackets {
    color: white;
    font-size: 3.2em;
    font-weight: 700;
    margin-right: 10px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brand {
    color: #9f9f9f;
    font-size: 2.3em;
    font-weight: 700;
}

.tagline {
    font-size: 0.9em;
    color: #9f9f9f;
    margin-top: -6px;
    margin-left: 0;
}

.menu {
    display: flex;
    gap: 30px;
}

.menu a {
    color: #7a7a7a;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 500;
    transition: color 0.2s ease;
}

.menu a:hover {
    color: #5a5a5a;
}

h1 {
    font-size: 2.3em;
    width: 600px;
    margin: auto;
    text-align: center;
    color: azure;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.subs {
    font-size: 0.9em;
    width: 110px;
    margin: auto;
    text-align: right;
    color: #9f9f9f;
}

main {
    padding: 20px;
    text-align: center;
    color: #9f9f9f;
    flex: 1;
}

.blog-post h2 a {
    color: #5a5a5a;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.2s;
}

.blog-post h2 a:hover {
    color: #222222;
    text-decoration: underline;
}

.blog-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.blog-post {
    background: #f5f5f5;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 2rem 1.5rem;
    text-align: left;
    transition: box-shadow 0.2s;
}

.blog-post:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.blog-post h2,
.blog-post .blog-date,
.blog-post p,
.blog-post ul,
.blog-post ol {
    text-align: left;
}

.blog-date {
    color: #bbbbbb;
    font-size: 0.95em;
    font-weight: 400;
    margin: 0.02em 0 0.7em 0;
    padding: 0;
}

.blog-post.single {
    max-width: 750px;
    margin: 2.5rem auto;
    background: #f5f5f5;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 2.5rem 2rem;
    text-align: left;
}

.about-main {
    max-width: 900px;
    margin: 0 auto;
    padding: 1rem 1rem 3rem 1rem;
}

.about-title {
    text-align: center;
    font-size: 2.5em;
    margin-top: 0.5rem;
    margin-bottom: 2.5rem;
    color: #5a5a5a;
}

.founders-section {
    margin-bottom: 2.5rem;
}

.founders-list {
    display: flex;
    gap: 3.5rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.founder-card {
    background: #f5f5f5;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 1 0;
    min-width: 260px;
    max-width: 400px;
}

.founder-photo {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1.1rem;
    background: #e1e1e1;
    border: 1px solid #bbbbbb;
}

.founder-info {
    text-align: center;
}

.founder-name {
    font-weight: bold;
    font-size: 1.15em;
    color: #5a5a5a;
}

.founder-title {
    color: #9f9f9f;
    font-size: 1em;
    margin: 0.2em 0 0.5em 0;
}

.founder-email {
    color: #5a7cff;
    text-decoration: none;
    font-size: 0.98em;
}

.founder-email:hover {
    text-decoration: underline;
}

.about-section {
    margin-bottom: 2.5rem;
    background: #f5f5f5;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 2rem 1.5rem;
}

.about-section h2 {
    color: #5a5a5a;
    margin-top: 0;
}

.philosophy-section h2 {
    text-align: center;
}

.philosophy-text {
    color: #5a5a5a;
    font-size: 1.1em;
    text-align: left;
}

.philosophy-text, .philosophy-text * {
    text-align: left !important;
}

.about-section, .about-section * {
    text-align: left !important;
}

.philosophy-blurb-strong {
    color: #5a5a5a;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    padding: 0.7em;
    border-radius: 6px;
    border: 1px solid #d0d0d0;
    font-size: 1em;
    font-family: inherit;
    background: #fff;
    resize: none;
}

.contact-form textarea {
    min-height: 90px;
}

.contact-form button {
    background: #5a5a5a;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0.7em 1.2em;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
    text-align: center;
    display: block;
    width: 100%;
}

.contact-form button:hover {
    background: #222;
}

.project-card {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.project-screenshot {
    width: 180px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #bbbbbb;
    background: #e1e1e1;
}

.project-info h3 {
    margin-top: 0;
    margin-bottom: 0.5em;
    color: #5a5a5a;
    text-align: left;
}

.project-info p {
    margin: 0;
    color: #5a5a5a;
    text-align: left;
}

.project-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.project-list-link {
    display: inline-block;
    margin-top: 1em;
    color: #5a5a5a;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.2s;
}
.project-list-link:hover {
    color: #222;
    text-decoration: underline;
}

.front-slogan {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.2em;
    font-weight: 700;
    color: #5a5a5a;
    text-align: center;
    letter-spacing: 0.02em;
    z-index: 10;
} 