body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: white;

    background-image: url("./images/stoutro.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* dark overlay so everything is readable */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: -1;
}

/* HEADER */
header {
    padding: 18px 25px;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

h1 {
    margin: 0;
    font-size: 24px;
    letter-spacing: 1px;
}

.highlight {
    color: #ff4d6d;
    text-shadow: 0 0 10px #ff4d6d;
}

/* NAV */
nav ul {
    list-style: none;
    display: flex;
    gap: 18px;
    margin: 0;
    padding: 0;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: 0.2s;
}

nav a:hover {
    color: #ff4d6d;
    transform: scale(1.1);
}

/* HERO */
.hero {
    text-align: center;
    padding: 80px 20px;
}

.hero h2 {
    font-size: 50px;
    margin: 0;
    text-shadow: 0 0 15px rgba(0,0,0,0.7);
}

.hero p {
    font-size: 18px;
    max-width: 600px;
    margin: 15px auto 0;
    opacity: 0.9;
}

/* SECTIONS */
.section {
    max-width: 900px;
    margin: auto;
    padding: 30px 20px;
}

.section h3 {
    color: #ff4d6d;
    font-size: 22px;
    margin-bottom: 10px;
    text-shadow: 0 0 8px rgba(255,77,109,0.5);
}

.section p {
    line-height: 1.6;
    opacity: 0.95;
}

/* BOX GRID */
.box-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.box {
    background: rgba(255,255,255,0.08);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.25s;
    backdrop-filter: blur(5px);
}

.box:hover {
    transform: translateY(-5px) scale(1.03);
    background: rgba(255,255,255,0.15);
}

/* FOOTER */
footer {
    text-align: center;
    padding: 18px;
    margin-top: 40px;
    background: rgba(0, 0, 0, 0.45);
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
}