/* Custom colors from your palette */
:root {
    --color-deep-navy: #1A2B5B;
    --color-accent: #ACA6A0;
    --color-white: #FFFFFF;
    --color-gray-light: #F8F9FA;
    --color-gray-medium: #6B7280;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--color-deep-navy);
    background-image: url('info_bg_DRZ07074.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Hero container - takes full viewport */
.hero-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    min-height: calc(100vh - 80px); /* Account for footer */
    position: relative;
}

/* Add overlay for better text readability */
.hero-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(1px);
    z-index: 1;
}

.content-wrapper {
    max-width: 600px;
    width: 100%;
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    z-index: 2;
}

/* Typography */
.main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--color-deep-navy);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.subtitle-container {
    margin-bottom: 2rem;
}

.subtitle {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 450;
    color: var(--color-accent);
    font-style: italic;
    margin-bottom: 0;
}

.body-text {
    margin-bottom: 3rem;
}

.body-text p {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    color: var(--color-gray-medium);
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto;
}

/* CTA Section */
.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--color-deep-navy);
    color: var(--color-white);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(26, 43, 91, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    background-color: var(--color-accent);
    color: var(--color-deep-navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(26, 43, 91, 0.3);
}

.button-arrow {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.cta-button:hover .button-arrow {
    transform: translateX(4px);
}

.cta-subtext {
    font-size: 0.875rem;
    color: var(--color-gray-medium);
    font-weight: 400;
}

/* Footer */
.site-footer {
    padding: 1.5rem 2rem;
    text-align: center;
    background-color: transparent;
    border-top: 1px solid rgba(26, 43, 91, 0.1);
}

.site-footer p {
    font-size: 0.875rem;
    color: var(--color-gray-medium);
    margin: 0;
}

.site-footer a {
    color: var(--color-deep-navy);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: var(--color-accent);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Button loading effect */
.cta-button.loading {
    pointer-events: none;
    opacity: 0.7;
}

.cta-button.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    body {
        background-attachment: scroll; /* Better performance on mobile */
    }
    
    .hero-container {
        padding: 1.5rem;
        min-height: calc(100vh - 60px);
    }
    
    .hero-container::before {
        background: rgba(255, 255, 255, 0.9); /* Slightly more opacity on mobile */
    }
    
    .content-wrapper {
        max-width: 100%;
    }
    
    .cta-button {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
    
    .site-footer {
        padding: 1rem 1.5rem;
    }
}

/* Focus states for accessibility */
.cta-button:focus {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .subtitle {
        color: var(--color-deep-navy);
    }
    
    .body-text p {
        color: var(--color-deep-navy);
    }
}