/*
Theme Name: The Central Digital Custom
Theme URI: https://thecentraldigital.top
Description: A minimalist, high-converting custom theme built as a sales copy engine.
Version: 1.1.0
Author: The Central Digital
Author URI: https://thecentraldigital.top
Text Domain: the-central-digital
*/

:root {
    --primary-dark: #001532;
    --bg-light: #f5f5f5;
    --text-dark: #111111;
    --text-light: #ffffff;
    --accent-red: #d14124;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

/* Stretched, Slim Hero Layout Rules */
.hero-stretched {
    display: flex;
    flex-wrap: wrap;
    min-height: 45vh; /* Slimmed down height */
    border-bottom: 1px solid #e0e0e0;
}

.hero-left-slim {
    background-color: var(--primary-dark);
    color: var(--text-light);
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
}

.hero-right-slim {
    flex: 1.5;
    min-width: 350px;
    background-color: var(--bg-light);
    padding: 3rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Structural Layout Sections */
.site-section {
    padding: 5rem 4rem;
    border-bottom: 1px solid #eaeaea;
}
.site-section:nth-child(even) {
    background-color: #ffffff;
}
.site-section:nth-child(odd) {
    background-color: var(--bg-light);
}

/* Nav Menu Styling */
header nav ul, footer nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}
header nav ul a, footer nav ul a {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 500;
}
footer nav ul a {
    color: var(--bg-light);
}
header nav ul a:hover, footer nav ul a:hover {
    color: var(--accent-red);
}

/* Modals & Forms */
.cta-btn {
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 12px 28px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
    text-align: center;
}
.cta-btn:hover {
    background-color: var(--accent-red);
}
.menu-i{
    background-color: #f5f5f5;
    color: #111111;
}
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,21,50,0.8);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--bg-light);
    padding: 3rem;
    width: 100%;
    max-width: 500px;
    border-radius: 4px;
    position: relative;
}

@media(max-width: 768px) {
    .hero-stretched { flex-direction: column; }
    .site-section { padding: 3rem 1.5rem; }
    header nav ul { display: none; } /* Mobile responsive simplicity */
}
