/*
    Name: Matthew Powell
    Date: 03/21/2026
    Assignment: Demon Security Stylesheet

    Description:
    Controls the layout and appearance of Demon Security.
    Uses a centered content layout with a cyberpunk/retro aesthetic.
*/


/* =========================
   GLOBAL DOCUMENT SETTINGS
   ========================= */

html, body {
    min-height: 100%;
    margin: 0;
    padding: 0;
    background-color: #000;
    background-image: url("../images/brickwall.jpg");
    background-size: cover;
    background-position: center top;
    background-repeat: repeat-y;
    color: #00ffff;
    font-family: Arial, sans-serif;
    text-shadow: 0 0 2px #00ffff, 0 0 8px #00ffff;

    display: flex;
    flex-direction: column;
}


/* Main page container */

.container {
    width: 80%;
    max-width: 1200px;
    margin: 20px auto;
}


/* =========================
   HEADER
   ========================= */

header {
    font-family: cursive;
    padding: 20px;
    text-align: center;
    color: #00ffff;
    text-shadow: 0 0 8px #00ffff;
}


header h1 a {
    color: #00ffff;
    text-decoration: none;
    text-shadow: 0 0 8px #00ffff;
}


header h1 a:visited {
    color: #00ffff;
}


header h1 a:hover {
    color: #00ffff;
    text-shadow: 0 0 12px #00ffff;
}


/* Company motto */

.tagline {
    font-family: cursive;
    font-style: italic;
    color: #ffc400;
    font-size: 1.2em;
    margin-top: -10px;
    text-shadow: 0 0 8px #fbff04;
}



/* =========================
   NAVIGATION
   ========================= */

nav {
    padding: 18px;
    text-align: center;
    border: 2px solid rgb(0, 225, 255);
    margin-bottom: 20px;
}


nav a {
    margin: 0 10px;
    text-decoration: none;
    color: rgb(0, 225, 255);
}



/* =========================
   MAIN CONTENT
   ========================= */

main {
    padding: 30px;
    border: 2px solid rgb(0, 225, 255);
    background-color: black;
}


/* Section spacing */

section {
    margin: 50px 0;
}


/* Headings */

h2 {
    text-align: center;
    color: #00ffff;
}



/* Paragraph formatting */

p {
    max-width: 850px;
    margin: 20px auto;
    line-height: 1.7;
}



/* Intro text */

.intro {
    max-width: 850px;
    margin: auto;
    line-height: 1.7;
    text-align: left;
}



/* =========================
   IMAGES
   ========================= */

img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 20px auto;
}



/* =========================
   LISTS
   ========================= */

ul {
    max-width: 700px;
    margin: auto;
}


li {
    margin-bottom: 8px;
}



/* =========================
   BUTTONS
   ========================= */

.button {
    display: inline-block;
    margin: 10px;
    padding: 10px 18px;
    border: 2px solid #00ffff;
    color: #00ffff;
    text-decoration: none;
    background-color: black;
}


.button:hover {
    background-color: #00ffff;
    color: black;
    transition: .3s;
}



/* =========================
   SERVICE CARDS
   ========================= */

.service-card {

    background-color: #080808;

    padding: 25px;

    border: 2px solid #00ffff44;

    border-radius: 8px;

    margin-bottom: 35px;

    box-shadow: 0 0 25px #00ffff33;
}



.service-card h2 {

    color: #00ffff;

    font-size: 1.8rem;

    margin: 15px 0;

}



.service-card p {

    color: white;

    line-height: 1.6;

}



.service-card ul {

    list-style: none;

    padding: 0;

}



.service-card li {

    color: white;

    padding: 8px 0;

    border-bottom: 1px solid #00ffff33;

}



.service-card li:last-child {

    border-bottom: none;

}



/* =========================
   NOTICE TEXT
   ========================= */

.notice {

    margin-top: 20px;

    font-size: 0.9rem;

    color: #aaaaaa;

}



/* =========================
   FEATURED CONTENT
   ========================= */

.featured {

    border: 2px solid #00ffff;

    box-shadow: 0 0 25px #00ffff88;

}



/* =========================
   FOOTER
   ========================= */

footer {

    text-align: center;

    padding: 15px;

    margin-top: 30px;

    border: 2px solid rgb(0,225,255);

}

.consultation-button {
    display: inline-block;
    padding: 18px 45px;
    background: #00ffff;
    color: #111;
    text-decoration: none;
    font-weight: 900;
    border-radius: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 0 15px #00ffff;
    transition: all 0.3s ease;
}

.consultation-button:hover {
    background: #ffffff;
    box-shadow: 0 0 30px #00ffff;
    transform: translateY(-3px);
}