/* ===================== */
/* GOOGLE FONTS           */
/* ===================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Roboto:wght@400;500&display=swap');

/* ===================== */
/* RESET / BASE STYLES    */
/* ===================== */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background: #111;
    color: #fff;
}

a {
    color: #ff0000;
    text-decoration: none;
}

img {
    max-width: 60%; /* smaller images for text focus */
    margin: 15px auto;
    display: block;
    border-radius: 8px;
}

/* ===================== */
/* NAVBAR                */
/* ===================== */
.navbar {
    background: #000;
    padding: 12px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: STICKY;
    top: 0;
    z-index: 1000;
}
/* LOGO CONTAINER */
.logo {
    display: flex;
    align-items: center;
}
.logo-img {
    height: 100px;
    width: 8000;
   
}

.nav-links a {
    margin-left: 80px;
    font-weight: bold;
}

.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* ===================== */
/* HERO HEADER / HOMEPAGE */
/* ===================== */
header {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?fit=crop&w=1400&q=80') center/cover no-repeat;
    color: #fff;
}

header h1 {
    font-size: 42px;
    line-height: 1.4;
    font-family: 'Montserrat', sans-serif;
    color: #ff0000;
    margin-bottom: 20px;
    position: relative;
}

header h1::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #ff0000;
    margin: 15px auto 0;
    border-radius: 2px;
}

header h2 {
    font-size: 24px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: #fff;
    margin-top: 15px;
}

/* ===================== */
/* CONTAINER & CONTENT   */
/* ===================== */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

p, ul {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* ===================== */
/* PREMIUM HEADERS        */
/* ===================== */
h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    color: #ff0000;
    margin-top: 40px;
    margin-bottom: 20px;
    line-height: 1.3;
    position: relative;
}

h1::after, h2::after, h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #ff0000;
    margin: 10px 0 0;
    border-radius: 2px;
}

/* ===================== */
/* LISTS / BUTTONS        */
/* ===================== */
ul {
    padding-left: 20px;
}

.button, button {
    background: #ff0000;
    color: #000;
    padding: 14px 25px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    display: inline-block;
    margin-top: 15px;
}

/* ===================== */
/* FORMS                  */
/* ===================== */
input, textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    background: #222;
    border: none;
    color: #fff;
}

/* ===================== */
/* STICKY CTA             */
/* ===================== */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ff0000;
    text-align: center;
    padding: 15px;
    z-index: 999;
}

.sticky-cta a {
    color: #000;
    font-weight: bold;
    font-size: 18px;
}

/* ===================== */
/* SECTION SPACING        */
/* ===================== */
.container section {
    margin-bottom: 50px;
}

/* Optional section dividers */
.container section {
    border-top: 1px solid #222;
    padding-top: 30px;
    margin-top: 30px;
}

/* ===================== */
/* MOBILE / RESPONSIVE    */
/* ===================== */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background: #000;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        padding: 20px 0;
    }

    .nav-links a {
        margin: 12px 0;
        font-size: 18px;
    }

    .nav-links.active {
        display: flex;
    }

    header {
        padding: 50px 15px;
    }

    header h1 {
        font-size: 28px;
    }

    header h2 {
        font-size: 18px;
    }

    .container {
        padding: 20px;
        padding-bottom: 100px;
    }

    .sticky-cta {
        display: block;
    }
}
/* =========================
   FOOTER
   ========================= */

footer {
    background: #000;
    color: #fff;
    padding: 25px 20px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    border-top: 1px solid #222;
}

footer p {
    margin: 5px 0;
}