/* 
    Unwoke Patriots
    INDEX - index.html, styles.css
    Author: Ole Rieper
    Company: Unwoke Patriots UG

    Last Update:     2026-01-20  YYYY-MM-DD
    Version:         1.0 
*/



/* Color Profile - DEFAULT */
:root {
  --bg: linear-gradient(135deg, #848484, #000);
  --title: #f2f2f2;
  --text: #e0e0e0;
  --text-foo: #777;
  --shadow: 0px 4px 6px rgba(0, 0, 0, 0.73);
}



/* All */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



/* Body */
body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--title);
    min-height: 100vh;
}



/* Container */
.container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}



/* Content */
.content {
    text-align: center;
    max-width: 600px;
    width: 100%;
    padding: 24px;

    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}



/* Logo */
.logo {
    max-width: 160px;
    width: 100%;
    height: auto;
    margin-bottom: 30px;
}



/* Title - Headline */
h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}



/* Text - Status */
.status-text {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text);
}



/* Text - Brand */
.brand-text {
    font-size: 0.96rem;
    line-height: 1.5;
    margin-bottom: 40px;
    color: var(--text);
}



/* Footer */
.footer-text {
    font-size: 0.85rem;
    color: var(--text-foo);
}



/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 1.7rem;
    }

    .status-text {
        font-size: 1rem;
    }
}



@media (max-width: 480px) {
    .logo {
        max-width: 120px;
    }

    h1 {
        font-size: 1.5rem;
    }

    .brand-text {
        font-size: 0.95rem;
    }
}