/*
Theme Name: Trustoverse Acquisition
Theme URI: https://trustoverse.com
Author: Trustoverse Admin
Description: An ultra-premium, single-page acquisition theme built for high-value domain sales.
Version: 1.0
Requires at least: 5.0
Tested up to: 6.5
Text Domain: trustoverse
*/

:root {
    --bg-color: #050505;
    --text-main: #FFFFFF;
    --text-muted: #A0A0A0;
    --accent-primary: #0047FF;
    --accent-hover: #0036CC;
    --border-color: #333333;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Hero Marquee Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    
    /* REVISED PADDING: Reduced significantly to accommodate the banner graphic height */
    padding: 5vh 5% 10vh 5%; 
    border-bottom: 1px solid var(--border-color);
}

/* NEW: The Structural Banner */
.hero-banner {
    width: 100%;            /* Forces it to use the full parent width, up to max-width */
    max-width: 1200px;      /* Restricts the maximum expansion */
    height: auto;           /* Maintains correct proportions */
    
    /* Crucial: Enforces the generated 1200x300 aspect ratio (4:1) */
    aspect-ratio: 4 / 1;    
    
    margin-bottom: 3rem;    /* Spacing between the banner and the text elements */
    opacity: 0.9;
    filter: drop-shadow(0 4px 16px rgba(0, 71, 255, 0.2)); /* Cobalt glow matching the primary CTA */
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-weight: 600;
	margin-bottom: 1.5rem; /* Reduced margin: the banner handles the primary top spacing */
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #00FF66;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 102, 0.5);
}

.domain-title {
    font-family: 'Syncopate', sans-serif;
    font-size: clamp(2rem, 6vw, 6rem);
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--text-muted);
    max-width: 600px;
    font-weight: 300;
}

/* Investment Thesis Grid */
.thesis {
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.thesis-col h3 {
    font-family: 'Syncopate', sans-serif;
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.thesis-col p {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 300;
}

/* Transaction Portal */
.portal {
    background-color: #0B0C10;
    padding: 6rem 5%;
    text-align: center;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.portal h2 {
    font-family: 'Syncopate', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.portal p {
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 3rem auto;
    font-weight: 300;
}

.button-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--accent-primary);
    color: #FFF;
    border: 1px solid var(--accent-primary);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid var(--text-muted);
}

.btn-secondary:hover {
    border-color: var(--text-main);
    background-color: rgba(255, 255, 255, 0.05);
}

.trust-note {
    display: block;
    margin-top: 2rem;
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
.footer {
    margin-top: auto;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--text-main);
}

@media (max-width: 768px) {
    .button-group {
        flex-direction: column;
    }
    .btn {
        width: 100%;
    }
    .footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
