/* ==========================
   GhostWrite Studios
   ========================== */

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

body {
    background: #111111;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

/* ==========================
   Header
   ========================== */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1a1a1a;
    padding: 20px 50px;
    border-bottom: 2px solid #f0c75e;
}

.logo {
    width: 180px;
    height: auto;
}

/* ==========================
   Navigation
   ========================== */

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: .3s;
}

nav a:hover {
    color: #f0c75e;
}

/* ==========================
   Hero Section
   ========================== */

.hero {
    min-height: 80vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 40px;
}

.hero h2 {
    font-size: 72px;
    margin-bottom: 25px;
    color: white;
}

.hero p {
    max-width: 700px;
    font-size: 24px;
    color: #cccccc;
}

/* ==========================
   Buttons
   ========================== */

.button {
    display: inline-block;

    margin-top: 35px;

    padding: 15px 35px;

    background: #f0c75e;

    color: black;

    text-decoration: none;

    font-weight: bold;

    border-radius: 8px;

    transition: .3s;
}

.button:hover {

    background: white;

    transform: translateY(-2px);

}

/* ==========================
   Footer
   ========================== */

footer {

    background: #1a1a1a;

    text-align: center;

    padding: 40px;

    margin-top: 80px;

    border-top: 2px solid #f0c75e;

}

footer p {

    color: #888888;

}

/* ==========================
   Mobile
   ========================== */

@media (max-width: 900px) {

header {

    flex-direction: column;

    gap: 20px;

}

nav {

    flex-wrap: wrap;

    justify-content: center;

}

.hero h2 {

    font-size: 42px;

}

.hero p {

    font-size: 20px;

}

.logo {

    width: 140px;

}

}
/* ==========================
   Genome Banners
   ========================== */

.banner {
    width: 100%;
    overflow: hidden;
}

.banner img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}
/* ==========================
   Card Showcase
   ========================== */

.card-showcase {
    text-align: center;
    padding: 60px 20px;
}

.card-showcase img {
    width: 100%;
    max-width: 450px;
    height: auto;

    border-radius: 18px;

    box-shadow:
        0 0 25px rgba(240,199,94,.25),
        0 0 60px rgba(0,0,0,.6);

    transition: transform .3s ease;
}

.card-showcase img:hover {
    transform: scale(1.03);
}/* ==========================
   Loki's Proposal Banner
   ========================== */

.proposal-banner {
    text-align: center;
    padding: 60px 20px;
}

.proposal-banner img {
    display: block;
    width: 100%;
    max-width: 1200px;
    height: auto;
    margin: 0 auto;

    border-radius: 12px;

    box-shadow:
        0 0 25px rgba(240, 199, 94, 0.25),
        0 15px 40px rgba(0, 0, 0, 0.6);
}/* ==========================
   Contact Form
   ========================== */

.contact-form {
    max-width: 700px;
    margin: 60px auto;
    padding: 0 20px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {

    background: #1d1d1d;
    color: white;

    border: 2px solid #cfa44b;

    padding: 15px;

    font-size: 1rem;

    border-radius: 8px;
}

.contact-form button {

    background: #cfa44b;
    color: black;

    border: none;

    padding: 16px;

    font-size: 1rem;

    font-weight: bold;

    cursor: pointer;

    border-radius: 8px;

    transition: .3s;
}

.contact-form button:hover {

    background: #e2bc67;

    transform: translateY(-2px);

}/* ==========================
   About Page Images
   ========================== */

.about-image {
    text-align: center;
    padding: 50px 20px;
}

.about-image img {
    width: 100%;
    max-width: 900px;
    height: auto;

    border-radius: 12px;

    box-shadow:
        0 0 25px rgba(240, 199, 94, 0.2),
        0 15px 40px rgba(0, 0, 0, 0.6);
}.about-image {
    text-align: center;
    padding: 50px 20px;
}

.about-image img {
    width: 100%;
    max-width: 900px;
    height: auto;

    border-radius: 12px;

    box-shadow:
        0 0 25px rgba(240, 199, 94, 0.2),
        0 15px 40px rgba(0, 0, 0, 0.6);
}/* ==========================
   Portfolio Image
   ========================== */

.portfolio-image {
    text-align: center;
    padding: 40px 20px;
}

.portfolio-image img {

    width: 100%;
    max-width: 900px;
    height: auto;

    border-radius: 14px;

    box-shadow:
        0 0 30px rgba(240,199,94,.25),
        0 20px 50px rgba(0,0,0,.55);
}