/*
Theme Name: Carbon
Theme URI: https://node.linkpc.net/
Description: Black Background, Red Buttons, Neon Pink Text. Supports Custom Backgrounds.
Version: 1.2.0
*/

/* === 1. GLOBAL DARK MODE & BACKGROUND === */
body {
    background-color: #000000; /* Default Black (can be overridden by Customizer) */
    color: #ff69b4 !important; /* Neon Pink Text */
    font-family: "Courier New", Courier, monospace; /* Hacker/Terminal Font */
    margin: 0;
    padding: 0;
}

/* Ensure background image covers the screen fixed */
body.custom-background {
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
}

/* Make all paragraphs and lists neon pink */
p, li, span, div {
    color: #ff69b4;
}

/* === 2. LINKS === */
a {
    color: #ff1493; /* Darker Pink/Magenta for links */
    text-decoration: none;
    border-bottom: 1px dashed #ff1493; /* The Global Dotted Line */
}

a:hover {
    color: #ff0000; /* Red on hover */
    border-bottom: 1px solid #ff0000;
}

/* === 3. HEADERS === */
h1, h2, h3, h4, h5, h6 {
    color: #ff1493 !important; /* Deep Neon Pink */
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 5px rgba(255, 20, 147, 0.5); /* Pink Glow */
}

/* === 3.1. TITLE LINK FIX (Remove Dotted Underline) === */
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    border-bottom: none !important; /* Removes the distracting dashed border from titles */
}

/* === 4. HERO SECTION === */
.hero-section {
    /* Transparent background so user image shows through, with a dark tint overlay */
    background-color: rgba(0, 0, 0, 0.7); 
    border-bottom: 2px solid #d63638; /* Red Line */
    padding: 80px 20px;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero-description {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px auto;
    color: #ffb6c1 !important; /* Lighter Pink for description */
}

/* === 5. BUTTONS (Red) === */
.button, .button-primary, input[type="submit"] {
    background-color: #d63638 !important; /* Red Background */
    color: #ffffff !important; /* White Text for readability */
    border: 2px solid #ff0000;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    display: inline-block;
    text-shadow: none;
    text-decoration: none;
    margin-top: 10px;
}

.button:hover, input[type="submit"]:hover {
    background-color: #b00020 !important;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.6); /* Red Glow */
    color: #fff !important;
}

/* === 6. FEATURES GRID === */
.features-grid {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.features-grid > div {
    flex: 1;
    min-width: 250px;
    background-color: rgba(10, 10, 10, 0.85); /* Semi-transparent dark grey */
    border: 1px solid #d63638; /* Red Border */
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

/* === 7. HEADER & FOOTER === */
.site-header {
    background-color: rgba(0, 0, 0, 0.9);
    border-bottom: 1px solid #d63638;
    padding: 20px;
    display: flex;
    justify-content: space-between;
}

.site-footer {
    background-color: rgba(0, 0, 0, 0.9);
    border-top: 1px solid #d63638;
    text-align: center;
    padding: 40px;
    margin-top: 50px;
}

/* === 8. INPUT FIELDS === */
input, textarea, select {
    background-color: rgba(17, 17, 17, 0.9);
    border: 1px solid #ff69b4; /* Pink Border */
    color: #ff69b4;
    padding: 10px;
}

/* === 9. ACCOUNT & SUB-PAGES BOX === */
/* This targets the Account/Subscription text specifically */
body:not(.home) .entry-content {
    background-color: rgba(0, 0, 0, 0.85); /* The Transparent Box */
    padding: 40px;
    margin: 20px auto;
    max-width: 900px; /* Keeps the box from hitting the edges */
    border: 1px solid #ff69b4; /* Pink Border */
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 1); /* Drop Shadow */
}

/* Fix for the Account Menu items to make them stand out */
ul.pms-account-navigation {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    border-bottom: 1px dashed #d63638;
    padding-bottom: 10px;
}

ul.pms-account-navigation li {
    display: inline-block;
    margin-right: 15px;
}