/* Resets everything before continuing */
* {
    margin: 0;
    padding: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote::before, blockquote::after, q::before, q::after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Begin CSS script */
body {
    font-family: 'Courier New', Courier, monospace;
    background: #f9f9f9;
    color: #222;
}

section {
    padding: 80px 20px;
}

/* ----- Header ----- */
.header .items li {
    margin: 0 20px;
}

.header .items a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.header .items a:hover {
    color: #FFB400;
}

.header .items {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #222;
    padding: 15px 40px;
    height: 60px;
    color: white;
    position: inherit;
    top: 0;
    z-index: 100;
}

.header > * {
    margin-right: 10px;
    margin-bottom: 10px;
}

.header h1 {
    text-decoration: underline;
    color: white;
}

/* ---- Main div ---- */
.main {
    display: block;
}

/* ---- Hero ---- */
.hero {
    background: linear-gradient(135deg, #FFB400, #FF7B00);
    color: white;
    padding: 90px 20px;
}
.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero h1 span {
    color: #222;
    background: #FFF;
    padding: 0 8px;
    border-radius: 4px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.btn {
    display: inline-block;
    background: #222;
    color: #FFF;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s;
}

.btn:hover {
    background: #333;
}

.hero .links {
    padding: 0;
    margin: 0;
    height: 0;
}

/* ---- Career ---- */
.career {
    background-color: #FFF;
}

.career h2 {
    margin-bottom: 30px;
    font-size: 2rem;
    text-align: center;
}

.timeline {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.job {
    margin-bottom: 25px;
}

.job h3 {
    color: #FF7B00;
    margin-bottom: 5px;
}

.job .place {
    text-decoration: underline;
    color: black;
    padding: 0;
}

/* ---- Story ---- */
.about {
    background: #f2f2f2;
}

.about h2 {
    margin-bottom: 20px;
    text-align: center;
    text-decoration: none;
    font-size: 1.2rem;
    display: block;
    font-weight: bold;
}

.about p {
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    text-align: justify;
}

/* ---- Contact ---- */
.contact {
    background: #FFF;
}

.contact h2 {
    margin-bottom: 15px;
    padding: 0;
}

.contact .phone {
    text-decoration: underline;
    padding: 0;
    font-size: 1.2rem;
    text-align: center;
}

/* ---- Socials ---- */
.socials {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
    margin-bottom: -35px;
}

.socials > * {
    margin-bottom: 10px;
    margin-right: 10px;
}

.socials a {
    color: #222;
    font-size: 1.4rem;
    text-decoration: underline;
    transition: color 0.3s, transform 0.3s;
}

.socials a:hover {
    color: #FFB400;
    transform: translateY(-3px);
}

.socials span {
    display: block;
    color: #FFB400;
    font-size: 1.2rem;
    text-decoration: none;
}


/* ---- Footer ---- */
.footer {
    background: #222;
    color: #AAA;
    padding: 15px 10px;
}

.content {
    display: flex;
    flex-wrap: wrap;
}

.content > * {
    margin-bottom: 10px;
    margin-right: 10px;
}

.footer .socials a {
    color: #AAA;
}

.footer .socials a:hover {
    color: #FFB400;
}

/* ---- Logo ---- */
.logo {
    font-size: 1.5rem;
    font-weight: 600;
}

.logo span {
    color: #FFB400;
}

/* ---- General Text ---- */
.text {
    padding: 0;
    color: #FFB400;
    text-decoration: none;
}

.text_u {
    padding: 0;
    color: #FFB400;
    text-decoration: underline;
}