/* CSS Document for Stratoset Systems - Web Project 2
   Author: Leo Humbach
   Course: ITWP 1000
   File: styles.css
   External stylesheet for all pages of the Stratoset Systems website.
   Template style inspired by HTML5 UP Stellar (html5up.net)
   Free for personal and commercial use under the CCA 3.0 license
*/

body {
    background-color: #f4f7fa;
    color: #222222;
    font-family: Georgia, "Times New Roman", serif;
    margin: 0;
    padding: 0;
}

a {
    color: #1a6fba;
}

a:hover {
    color: #0d4a80;
}

img {
    max-width: 100%;
}

/* Top banner */
#top-banner {
    background-color: #1a6fba;
    color: #ffffff;
    text-align: center;
    padding: 6px;
    font-size: 13px;
}

/* Navigation bar */
#site-nav {
    background-color: #0d1b2a;
    overflow: hidden;
    padding: 0 20px;
}

#site-nav .nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

#site-nav .nav-logo img {
    height: 34px;
    background-color: #ffffff;
    padding: 2px 6px;
    border-radius: 3px;
    vertical-align: middle;
}

#site-nav .nav-logo span {
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    margin-left: 10px;
    vertical-align: middle;
}

#site-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

#site-nav ul li a {
    color: #ccddee;
    text-decoration: none;
    padding: 8px 14px;
    display: block;
    font-size: 15px;
}

#site-nav ul li a:hover,
#site-nav ul li a.active {
    background-color: #1a6fba;
    color: #ffffff;
}

/* Hero section - homepage only */
#hero {
    background-color: #0d1b2a;
    color: #ffffff;
    text-align: center;
    padding: 70px 20px;
}

#hero img.hero-logo {
    width: 200px;
    background-color: #ffffff;
    padding: 10px 18px;
    border-radius: 6px;
    margin: 0 auto 24px auto;
    display: block;
}

#hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

#hero p.hero-sub {
    font-size: 18px;
    color: #aabbcc;
    margin-bottom: 20px;
}

#hero .hero-typewriter {
    font-size: 20px;
    color: #66aaee;
    min-height: 30px;
    margin-bottom: 30px;
}

#hero .btn {
    display: inline-block;
    background-color: #1a6fba;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 15px;
    margin: 5px;
}

#hero .btn:hover {
    background-color: #0d4a80;
    color: #ffffff;
    text-decoration: none;
}

#hero .btn.outline {
    background-color: transparent;
    border: 2px solid #aabbcc;
    color: #ffffff;
}

#hero .btn.outline:hover {
    background-color: #1a3a5c;
}

/* Page header for inner pages */
.page-header {
    background-color: #0d1b2a;
    color: #ffffff;
    text-align: center;
    padding: 44px 20px;
}

.page-header img.page-logo {
    height: 55px;
    background-color: #ffffff;
    padding: 6px 14px;
    border-radius: 4px;
    display: block;
    margin: 0 auto 16px auto;
}

.page-header h1 {
    font-size: 34px;
    margin-bottom: 8px;
}

.page-header p {
    color: #aabbcc;
    font-size: 16px;
}

/* Main content area */
.content-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px 24px;
}

/* Section headings */
.section-title {
    font-size: 28px;
    border-bottom: 3px solid #1a6fba;
    padding-bottom: 8px;
    margin-bottom: 10px;
    display: inline-block;
}

/* White content boxes */
.text-section {
    background-color: #ffffff;
    border: 1px solid #dde4ee;
    border-radius: 4px;
    padding: 36px 40px;
    margin-bottom: 28px;
}

.text-section h2 {
    font-size: 22px;
    border-bottom: 1px solid #dde4ee;
    padding-bottom: 8px;
    margin-bottom: 14px;
}

.text-section p {
    color: #444444;
    margin-bottom: 14px;
    line-height: 1.75;
}

/* Feature cards grid */
.feature-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 36px;
}

.feature-card {
    background-color: #ffffff;
    border: 1px solid #dde4ee;
    border-radius: 4px;
    padding: 28px 24px;
    width: calc(50% - 12px);
    box-sizing: border-box;
}

.feature-card .icon {
    font-size: 30px;
    margin-bottom: 12px;
}

.feature-card h3 {
    font-size: 16px;
    color: #1a6fba;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.feature-card p {
    color: #555555;
    font-size: 14px;
    line-height: 1.7;
}

/* Two column layout */
.two-col {
    display: flex;
    gap: 24px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.two-col .text-section {
    flex: 1;
    min-width: 280px;
}

/* Media embeds */
.media-embed {
    background-color: #ffffff;
    border: 1px solid #dde4ee;
    border-radius: 4px;
    padding: 32px 40px;
    margin-bottom: 28px;
}

.media-embed h2 {
    font-size: 22px;
    border-bottom: 1px solid #dde4ee;
    padding-bottom: 8px;
    margin-bottom: 16px;
}

.media-embed iframe {
    display: block;
    width: 100%;
    max-width: 560px;
    border-radius: 3px;
}

.media-embed audio {
    width: 100%;
    margin-top: 10px;
}

/* Tech pills */
.tech-pills {
    margin-top: 16px;
}

.pill {
    display: inline-block;
    background-color: #e0edf8;
    color: #1a6fba;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 14px;
    margin: 4px 3px;
    border: 1px solid #b0cce8;
}

/* Contact form */
.contact-section {
    background-color: #ffffff;
    border: 1px solid #dde4ee;
    border-radius: 4px;
    padding: 40px 44px;
    max-width: 660px;
    margin: 0 auto;
}

.contact-section h2 {
    font-size: 24px;
    margin-bottom: 8px;
}

.contact-section .contact-intro {
    color: #555555;
    margin-bottom: 26px;
    font-size: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: #222222;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 15px;
    color: #222222;
    background-color: #f9fafc;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #1a6fba;
    outline: none;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    background-color: #1a6fba;
    color: #ffffff;
    font-size: 15px;
    font-weight: bold;
    padding: 12px 34px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 6px;
}

.form-submit:hover {
    background-color: #0d4a80;
}

/* Contact info cards */
.contact-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 36px;
    max-width: 660px;
    margin-left: auto;
    margin-right: auto;
}

.contact-card {
    background-color: #ffffff;
    border: 1px solid #dde4ee;
    border-radius: 4px;
    padding: 22px 18px;
    text-align: center;
    flex: 1;
    min-width: 160px;
}

.contact-card .icon {
    font-size: 26px;
    margin-bottom: 8px;
}

.contact-card h4 {
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    color: #1a6fba;
    margin-bottom: 6px;
}

.contact-card p {
    font-size: 13px;
    color: #555555;
}

/* Footer */
#site-footer {
    background-color: #0d1b2a;
    color: #99aabb;
    padding: 40px 24px 24px;
    margin-top: 50px;
}

#site-footer .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 28px;
    border-bottom: 1px solid #223344;
}

#site-footer .footer-col {
    flex: 1;
    min-width: 200px;
}

#site-footer h4 {
    color: #ffffff;
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

#site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#site-footer ul li {
    margin-bottom: 7px;
}

#site-footer ul li a {
    color: #99aabb;
    font-size: 14px;
    text-decoration: none;
}

#site-footer ul li a:hover {
    color: #66aaee;
}

#site-footer p {
    font-size: 13px;
    line-height: 1.7;
}

#site-footer a {
    color: #66aaee;
}

.footer-bottom {
    max-width: 1100px;
    margin: 18px auto 0;
    font-size: 12px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6px;
}
