/* GLOBAL DARK THEME */
body {
    background-color: #000 !important;
    color: #fff !important;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.7;
}

/* NAVIGATION BAR */
.navbar {
    background-color: #000 !important;
    color: #fff !important;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

/* "Through the Cracks" Home Button */
.navbar .logo {
    font-size: 2rem;
    font-weight: bold;
    color: #fff !important;
    text-decoration: none;
    margin-left: 2rem;
}

/* NAVIGATION LINKS */
.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin-right: 2rem;
}

.nav-links a {
    color: #fff !important;
    text-decoration: none !important;
    font-size: 1.2rem;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.nav-links a:hover {
    color: #f39c12 !important;
}

.nav-links a.active {
    text-decoration: underline !important;
}

/* HERO SECTION */
.hero {
    background-color: #111;
    padding: 100px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    color: #ddd;
    max-width: 800px;
    margin: 0 auto;
}

/* CONTACT FORM */
.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    background-color: #111 !important;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.1);
    text-align: center;
}

.contact-form h2 {
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.contact-form p {
    font-size: 1.1rem;
    color: #ddd;
    margin-bottom: 2rem;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

label {
    font-size: 1rem;
    font-weight: bold;
    text-align: left;
}

input, textarea {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    background-color: #222;
    color: #fff;
}

input::placeholder, textarea::placeholder {
    color: #bbb;
}

/* BUTTON STYLING */
.btn {
    display: inline-block;
    background-color: #f39c12;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.btn:hover {
    background-color: #d37f0d;
}

/* FOOTER */
footer {
    background-color: #000;
    color: #fff;
    padding: 1.5rem 0;
    text-align: center;
    font-size: 1rem;
}
