/*
Theme Name: TDPel Media Holding Theme
Theme URI: https://tdpelmedia.com
Description: A minimalist theme designed to display a holding message and redirect users to the main domain.
Version: 1.0
Author: TDPel Media
Text Domain: tdpel-holding
*/

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 650px;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-top: 5px solid #0056b3; /* Professional blue accent */
}

h1 {
    font-size: 1.8rem;
    color: #111111;
    margin-bottom: 5px;
    line-height: 1.3;
}

.tagline {
    font-size: 1.1rem;
    color: #666666;
    font-weight: 500;
    margin-bottom: 25px;
}

.welcome-text {
    font-size: 1.05rem;
    margin-bottom: 25px;
    color: #444444;
}

.cta-box {
    background-color: #f0f7ff;
    border: 1px solid #d0e7ff;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 25px;
    text-align: center;
}

.cta-box p {
    font-weight: 600;
    margin-bottom: 10px;
    color: #004085;
}

.btn {
    display: inline-block;
    background-color: #0056b3;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: bold;
    transition: background 0.2s ease;
}

.btn:hover {
    background-color: #004085;
}

h2 {
    font-size: 1.2rem;
    color: #111111;
    margin-bottom: 15px;
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 5px;
}

ul {
    list-style: none;
    margin-bottom: 25px;
}

li {
    margin-bottom: 12px;
    padding-left: 15px;
    position: relative;
}

li::before {
    content: "•";
    color: #0056b3;
    font-weight: bold;
    position: absolute;
    left: 0;
}

strong {
    color: #111111;
}

footer {
    font-size: 0.9rem;
    color: #777777;
    text-align: center;
    margin-top: 20px;
}