/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-navy: #1a2332;
    --secondary-navy: #2c3e50;
    --accent-gold: #C9A961;
    --light-gold: #D4B76A;
    --text-primary: #ffffff;
    --text-secondary: #e8e8e8;
    --text-muted: #b8b8b8;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header Styles */
.header {
    padding: 2rem 1.5rem;
    text-align: center;
    animation: fadeInDown 1s ease-out;
}

.logo {
    display: inline-block;
    animation: logoFloat 3s ease-in-out infinite;
}

.logo svg {
    filter: drop-shadow(0 4px 8px rgba(201, 169, 97, 0.3));
}

/* Main Content Styles */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    animation: fadeIn 1.2s ease-out;
}

.firm-name {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-transform: uppercase;
    position: relative;
    animation: slideUp 1s ease-out;
}

.firm-name::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    margin: 1.5rem auto 0;
}

.tagline {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    color: var(--accent-gold);
    font-weight: 400;
    letter-spacing: 0.15em;
    margin-bottom: 3rem;
    text-transform: uppercase;
    animation: slideUp 1.2s ease-out;
}

.message {
    max-width: 800px;
    margin: 0 auto 3rem;
    animation: fadeIn 1.5s ease-out;
}

.message p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif;
    line-height: 1.8;
}

.sub-message {
    font-size: clamp(1.1rem, 3vw, 1.4rem) !important;
    color: var(--accent-gold) !important;
    font-style: italic;
    margin-top: 2rem !important;
    font-family: 'Georgia', serif !important;
}

.contact-info {
    margin-top: 2rem;
    animation: fadeIn 1.8s ease-out;
}

.contact-info p {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif;
}

.email-link {
    display: inline-block;
    color: var(--accent-gold);
    text-decoration: none;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    padding: 0.8rem 2rem;
    border: 2px solid var(--accent-gold);
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
    letter-spacing: 0.05em;
}

.email-link:hover {
    background-color: var(--accent-gold);
    color: var(--primary-navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(201, 169, 97, 0.3);
}

/* Footer Styles */
.footer {
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(201, 169, 97, 0.2);
    margin-top: auto;
    animation: fadeInUp 1s ease-out;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 2rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    font-size: 1.4rem;
    color: var(--accent-gold);
    letter-spacing: 0.1em;
}

.footer-links span {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.3), transparent);
    margin: 1.5rem 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-family: 'Arial', sans-serif;
}

.legal-note {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-family: 'Arial', sans-serif;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem;
    }

    .main-content {
        padding: 1.5rem 1rem;
    }

    .firm-name::after {
        width: 60px;
        margin-top: 1rem;
    }

    .tagline {
        margin-bottom: 2rem;
    }

    .message {
        margin-bottom: 2rem;
    }

    .sub-message {
        margin-top: 1.5rem !important;
    }

    .email-link {
        padding: 0.7rem 1.5rem;
        font-size: 1rem;
    }

    .footer-content {
        padding: 2rem 1rem 1.5rem;
    }

    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .footer-logo {
        font-size: 1.2rem;
    }

    .copyright,
    .legal-note {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .logo svg {
        width: 40px;
        height: 40px;
    }

    .email-link {
        padding: 0.6rem 1.2rem;
        font-size: 0.95rem;
    }

    .footer-content {
        padding: 1.5rem 1rem 1rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
