/* GLOBAL */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0d0d0d;
    color: #eaeaea;
}

/* NAV */
header {
    background: #000;
    padding: 15px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 10;
}

nav a {
    color: #d6d6d6;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    color: #ffffff;
}

/* HERO */
/* HERO SECTION */
.hero {
    position: relative;
    height: 100vh;                 /* Full screen height */
    width: 100%;
    background: #000;              /* Solid black background */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;              /* Prevent overflow issues */
}

/* Optional overlay (you can delete if unwanted) */
.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);   /* Darken effect */
    pointer-events: none;
}

/* FULL SIZE LOGO */
.hero-logo {
    position: relative;
    width: 90vw;                   /* Takes 90% of screen width */
    max-width: 1600px;             /* Prevents ultra-huge scaling on big monitors */
    height: auto;
    display: block;
    margin: 0 auto;
    z-index: 5;                    /* Above overlay */
    filter: drop-shadow(0 0 25px #000);
}

/* TAGLINE UNDER LOGO */
.tagline {
    position: relative;
    margin-top: 20px;
    font-size: 1.5rem;
    color: #cfcfcf;
    z-index: 5;
    text-align: center;
}

/* ABOUT */
.about, .services, .cta {
    padding: 60px 20px;
    text-align: center;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

/* SERVICES */
.service-box {
    margin: 25px auto;
    padding: 20px;
    max-width: 600px;
    background: #151515;
    border: 1px solid #333;
    border-radius: 5px;
}

/* CTA */
.cta-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #ffffff;
    color: #000;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
}

.cta-btn:hover {
    background: #d3d3d3;
}

/* CONTACT PAGE */
.contact-body {
    background: #0d0d0d;
}

.contact-container {
    padding: 60px 20px;
    text-align: center;
}

.contact-form {
    max-width: 500px;
    margin: 30px auto;
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    margin-bottom: 15px;
    padding: 12px;
    background: #1a1a1a;
    border: 1px solid #333;
    color: white;
}

.contact-form button {
    padding: 12px;
    border: none;
    background: #fff;
    color: #000;
    font-weight: bold;
    cursor: pointer;
}

.contact-form button:hover {
    background: #d6d6d6;
}
