/* style.css - Temple Bright Dark Theme */

/* --- 1. GLOBAL RESET & TYPOGRAPHY --- */
body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; /* Professional Sans-Serif */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #111111; /* Deep Black Background */
    color: #eeeeee; /* Soft White Text */
    line-height: 1.6;
}

a { text-decoration: none; transition: 0.3s; color: inherit; }
ul { list-style: none; padding: 0; }

/* --- 2. HEADER --- */
header {
    background-color: #1a1a1a; /* Dark Grey */
    border-bottom: 1px solid #333;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container img {
    height: 50px;
    width: auto;
}

nav a {
    color: #bbbbbb;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 20px;
}

nav a:hover {
    color: #ff6600; /* Temple Bright Orange */
}

/* Auth Buttons in Header */
.auth-buttons a {
    background-color: transparent;
    color: #fff;
    padding: 10px 20px;
    border-radius: 0; /* Sharp edges for professional look */
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.85em;
    border: 1px solid transparent;
}

.auth-buttons a:last-child {
    background-color: #ff6600; /* Orange Button */
}

.auth-buttons a:last-child:hover {
    background-color: #fff;
    color: #111;
}

/* --- 3. HERO SECTION --- */
.hero {
    background-color: #111;
    padding: 100px 20px;
    text-align: center;
    border-bottom: 4px solid #ff6600;
}

.hero h1 {
    color: #ffffff;
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero p {
    color: #cccccc;
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    background-color: #ff6600;
    color: white;
    padding: 15px 40px;
    font-size: 1.1em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
}

.cta-button:hover {
    background-color: #fff;
    color: #000;
}

/* Footer Container */
.site-footer {
    background-color: #1a1a1a; /* Dark background for professionalism */
    color: #b0b0b0; /* Light grey text for readability */
    padding: 40px 20px;
    font-size: 14px;
    text-align: center;
    border-top: 3px solid #d4af37; /* Optional: Gold accent line */
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Branding */
.footer-branding h3 {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}

/* Links */
.footer-links {
    margin-bottom: 25px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d4af37; /* Gold hover effect */
}

/* Legal Text */
.footer-legal {
    margin-bottom: 20px;
    font-size: 12px; /* Slightly smaller for disclaimer text */
    line-height: 1.6;
    color: #888888;
}

.footer-legal p {
    margin-bottom: 10px;
}

.footer-legal strong {
    color: #d4d4d4; /* Highlight numbers slightly */
}

/* Copyright */
.footer-copyright {
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 12px;
    color: #666;
}

/* --- 5. GLOBAL FORM STYLING (Targeting Login/Register) --- */

/* Centers forms if they are inside a generic container */
.login-container, .register-container, .form-container {
    max-width: 400px;
    margin: 80px auto;
    padding: 40px;
    background: #1a1a1a;
    border: 1px solid #333;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Headings inside forms */
.login-container h2, .register-container h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 300;
    font-size: 2em;
}

/* Labels */
label {
    display: block;
    margin-bottom: 8px;
    color: #aaa;
    font-size: 0.9em;
}

/* Input Fields */
input[type="text"], 
input[type="email"], 
input[type="password"] {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background-color: #222; /* Dark Input Background */
    border: 1px solid #444;
    color: #fff; /* White text inside input */
    box-sizing: border-box; /* Prevents width issues */
    font-size: 1em;
}

input:focus {
    outline: none;
    border-color: #ff6600; /* Orange border on click */
    background-color: #000;
}

/* Buttons inside forms */
button[type="submit"], input[type="submit"] {
    width: 100%;
    padding: 15px;
    background-color: #ff6600;
    color: #fff;
    border: none;
    font-size: 1em;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

button[type="submit"]:hover, input[type="submit"]:hover {
    background-color: #fff;
    color: #111;
}