/* ========================================
   WORK RAIDERS
   Main Stylesheet
   ======================================== */


/* ========================================
   GLOBAL RESET
   ======================================== */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


/* ========================================
   HTML
   ======================================== */

html {
    scroll-behavior: smooth;
}


/* ========================================
   BODY
   ======================================== */

body {
    font-family: Arial, Helvetica, sans-serif;

    background-color: #0a0a0a;
    color: #ffffff;

    line-height: 1.6;

    overflow-x: hidden;
}


/* ========================================
   GENERAL LINKS
   ======================================== */

a {
    color: inherit;
}


/* ========================================
   HEADER
   STICKY / FROZEN WHILE SCROLLING
   ======================================== */

header {
    position: sticky;
    top: 0;
    z-index: 1000;

    width: 100%;

    padding: 15px 5%;

    background-color: #0a0a0a;

    border-bottom: 1px solid #222222;
}


/* ========================================
   NAVIGATION
   ======================================== */

nav {
    display: flex;

    justify-content: space-between;
    align-items: center;

    max-width: 1400px;

    margin: 0 auto;
}


/* ========================================
   LOGO
   ======================================== */

.logo a {
    display: block;

    text-decoration: none;
}


.logo img {
    width: 150px;

    height: auto;

    display: block;
}


/* ========================================
   NAVIGATION LINKS
   ======================================== */

.nav-links {
    display: flex;

    align-items: center;

    gap: 25px;
}


.nav-links a {
    color: #ffffff;

    text-decoration: none;

    font-size: 15px;

    transition:
        color 0.3s ease,
        opacity 0.3s ease;
}


.nav-links a:hover {
    opacity: 0.65;
}


/* ========================================
   GENERAL SECTION
   ======================================== */

section {
    width: 100%;

    max-width: 1200px;

    margin: 0 auto;

    padding: 100px 5%;
}


/* ========================================
   HERO SECTION
======================================== */

.hero {

    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;

    overflow: hidden;
}


/* Background Image */

.hero-image {

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center center;

    z-index: -2;
}


/* Dark Overlay */

.hero-overlay {

    position: absolute;

    inset: 0;

    background: rgba(0,0,0,.45);

    z-index: -1;
}


/* Hero Content */

.hero-content {

    width: 100%;

    max-width: 1200px;

    margin: auto;

    padding: 0 5%;
}


/* ========================================
   HERO IMAGE
   ======================================== */

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ========================================
   CTA BUTTON
   ======================================== */

.cta-button {
    display: inline-block;

    padding: 15px 30px;

    margin-top: 15px;

    background-color: #ffffff;

    color: #000000;

    text-decoration: none;

    border: none;

    border-radius: 5px;

    font-size: 16px;

    font-weight: bold;

    cursor: pointer;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}


.cta-button:hover {
    opacity: 0.8;

    transform: translateY(-2px);
}


/* ========================================
   HEADINGS
   ======================================== */

h2 {
    font-size: 42px;

    line-height: 1.2;

    letter-spacing: -1px;

    margin-bottom: 30px;
}


h3 {
    font-size: 22px;

    line-height: 1.3;

    margin-bottom: 12px;
}


/* ========================================
   GENERAL PARAGRAPHS
   ======================================== */

p {
    max-width: 700px;

    margin-bottom: 20px;
}


/* ========================================
   SERVICES SECTION
   ======================================== */

.services-section {
    border-top: 1px solid #222222;
}


.services-section > p {
    max-width: 700px;

    color: #cccccc;

    margin-bottom: 50px;
}


/* ========================================
   SERVICES GRID
   ======================================== */

.services-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}


/* ========================================
   SERVICE CARD
   ======================================== */

.service-card {
    overflow: hidden;

    border: 1px solid #333333;

    border-radius: 10px;

    background-color: #111111;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}


.service-card:hover {
    transform: translateY(-5px);

    border-color: #666666;
}


/* ========================================
   SERVICE CARD IMAGE
   ======================================== */

.service-card img {
    width: 100%;

    height: 200px;

    display: block;

    object-fit: cover;
}


/* ========================================
   SERVICE CARD CONTENT
   ======================================== */

.service-card h3,
.service-card p {
    margin-left: 25px;

    margin-right: 25px;
}


.service-card h3 {
    margin-top: 25px;
}


.service-card p {
    color: #cccccc;

    margin-bottom: 25px;
}


/* ========================================
   WHY WORK RAIDERS SECTION
   ======================================== */

.why-us-section {
    border-top: 1px solid #222222;
}


.why-us-section p {
    max-width: 700px;

    color: #cccccc;

    margin-bottom: 30px;
}


.why-us-section h3 {
    font-size: 30px;
}


/* ========================================
   HOW IT WORKS SECTION
   ======================================== */

.how-it-works-section {
    border-top: 1px solid #222222;
}


.how-it-works-section ol {
    max-width: 700px;

    padding-left: 25px;
}


.how-it-works-section li {
    font-size: 18px;

    margin-bottom: 15px;

    color: #cccccc;
}


/* ========================================
   PRICING SECTION
   ======================================== */

.pricing-section {
    border-top: 1px solid #222222;
}


.price {
    font-size: 30px;

    font-weight: bold;

    color: #ffffff;

    margin-bottom: 20px;
}


.pricing-section p:last-child {
    color: #cccccc;
}


/* ========================================
   CONTACT SECTION
   ======================================== */

.contact-section {
    border-top: 1px solid #222222;
}


.contact-section > p {
    max-width: 700px;

    color: #cccccc;

    margin-bottom: 30px;
}


/* ========================================
   CONTACT DETAILS
   ======================================== */

.contact-details {
    margin-top: 30px;
}


.contact-details p {
    margin-bottom: 10px;
}


.contact-details a {
    color: #ffffff;

    text-decoration: none;

    transition: opacity 0.3s ease;
}


.contact-details a:hover {
    opacity: 0.7;
}


/* ========================================
   FOOTER
   ======================================== */

footer {
    padding: 30px 5%;

    border-top: 1px solid #222222;

    text-align: center;

    color: #888888;
}


footer p {
    max-width: none;

    margin-bottom: 0;
}


/* ========================================
   RESPONSIVE DESIGN
   TABLET
   ======================================== */

@media (max-width: 1000px) {

    /* Navigation */

    .nav-links {
        gap: 15px;
    }


    .nav-links a {
        font-size: 14px;
    }


    /* Hero */

    .hero h1 {
        font-size: 60px;
    }


    /* Services */

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* ========================================
   RESPONSIVE DESIGN
   MOBILE
   ======================================== */

@media (max-width: 768px) {

    /* Header */

    header {
        padding: 15px 5%;
    }


    /* Navigation */

    nav {
        flex-direction: column;

        gap: 20px;
    }


    /* Logo */

    .logo img {
        width: 130px;
    }


    /* Navigation Links */

    .nav-links {
        width: 100%;

        display: flex;

        flex-wrap: wrap;

        justify-content: center;

        gap: 12px 18px;
    }


    .nav-links a {
        font-size: 14px;
    }


    /* General Sections */

    section {
        padding: 70px 5%;
    }


    /* Hero */

    .hero {
        min-height: 75vh;

        align-items: flex-start;
    }


    .hero h1 {
        font-size: 44px;

        letter-spacing: -1px;
    }


    .hero-subtitle {
        font-size: 24px;
    }


    .hero p {
        font-size: 16px;
    }


    /* Headings */

    h2 {
        font-size: 34px;
    }


    h3 {
        font-size: 21px;
    }


    /* Services */

    .services-grid {
        grid-template-columns: 1fr;
    }


    /* Service Images */

    .service-card img {
        height: 220px;
    }


    /* Why Work Raiders */

    .why-us-section h3 {
        font-size: 25px;
    }


    /* Pricing */

    .price {
        font-size: 25px;
    }

}


/* ========================================
   SMALL MOBILE DEVICES
   ======================================== */

@media (max-width: 768px) {

    .hero {
        background-attachment: scroll;
    }


    /* Logo */

    .logo img {
        width: 120px;
    }


    /* Navigation */

    .nav-links {
        gap: 10px 14px;
    }


    .nav-links a {
        font-size: 13px;
    }


    /* Hero */

    .hero h1 {
        font-size: 38px;
    }


    .hero-subtitle {
        font-size: 21px;
    }


    /* Headings */

    h2 {
        font-size: 30px;
    }


    /* Button */

    .cta-button {
        width: 100%;

        text-align: center;
    }


    /* Service Images */

    .service-card img {
        height: 180px;
    }


    /* Footer */

    footer {
        font-size: 14px;
    }

}