/* Define the primary accent color variable (Gold/Yellow) */
:root {
    --primary-accent: #FFC300; /* Deep Gold/Yellow */
    --background-dark: #000000;
    --card-background: #1a1a1a;
}

/* Base Styles */
body {
    background-color: var(--background-dark);
    color: #f3f4f6; /* Light gray text */
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Main Content Container - Center everything */
.main-container {
    max-width: 800px;
    width: 100%;
    margin: auto;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 4px 60px rgba(255, 195, 0, 0.05); /* Subtle gold glow for depth */
}

/* Header/Logo */
.header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--primary-accent);
}

/* Main Content Section */
.content-section {
    padding-bottom: 3rem;
    text-align: center;
}

.headline {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #ffffff;
    line-height: 1.2;
}

.summary-text {
    font-size: 1.15rem;
    color: #a0a0a0;
    margin-bottom: 2rem;
}

.expertise-list {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #b0b0b0;
}

.expertise-list strong {
    color: var(--primary-accent);
    font-weight: 600;
}

/* Call to Action */
.call-to-action {
    font-size: 1.25rem;
    font-weight: 500;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-accent);
}

/* Contact Card */
.contact-card {
    background-color: var(--card-background);
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 195, 0, 0.1);
    display: inline-block;
}

.contact-label {
    font-size: 0.9rem;
    color: #71717a;
    margin-bottom: 0.5rem;
}

.contact-email {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-accent);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-email:hover {
    color: #ffd700; /* Slightly brighter gold on hover */
    text-decoration: underline;
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #282828;
    color: #4b5563;
    font-size: 0.85rem;
}

/* Mobile Responsiveness */
@media (max-width: 640px) {
    .main-container {
        padding: 1.5rem;
        border-radius: 0.5rem;
    }
    .headline {
        font-size: 1.8rem;
    }
    .contact-email {
        font-size: 1.1rem;
    }
}
