/* ============================================
   CONTACT.CSS — Minimal Impact Design
   ============================================ */

/* === AMBIENT EFFECTS === */
.ambient-glow {
    position: fixed;
    width: 900px;
    height: 900px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
    animation: ambientFloat 20s ease-in-out infinite;
}

.glow-1 {
    background: var(--accent-gold);
    top: -450px;
    right: -250px;
    animation-delay: 0s;
}

.glow-2 {
    background: var(--accent-teal);
    bottom: -450px;
    left: -250px;
    animation-delay: -10s;
}

@keyframes ambientFloat {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(30px, -20px); }
    50% { transform: translate(-20px, 30px); }
    75% { transform: translate(-30px, -10px); }
}

/* === CONTACT LAYOUT === */
.contact-main {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--nav-height) + var(--space-12)) var(--space-12) var(--space-20);
}

.contact-container {
    text-align: center;
    max-width: 720px;
    animation: fadeInUp 0.8s var(--ease-out) 0.2s both;
}

/* === CONTACT HEADER === */
.contact-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-4);
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: var(--space-8);
}

.contact-label::before,
.contact-label::after {
    content: '';
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold));
}

.contact-label::after {
    background: linear-gradient(90deg, var(--accent-gold), transparent);
}

.contact-title {
    font-family: var(--font-display);
    font-size: clamp(var(--text-4xl), 10vw, 6rem);
    font-weight: 500;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-6);
    line-height: 1.05;
}

.contact-title .highlight {
    display: block;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-description {
    font-size: var(--text-xl);
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: var(--space-16);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* === CONTACT LINKS === */
.contact-links {
    display: flex;
    justify-content: center;
    gap: var(--space-6);
    flex-wrap: wrap;
    margin-bottom: var(--space-16);
}

.contact-link {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-5) var(--space-8);
    background: var(--bg-card);
    border: 1px solid var(--border-muted);
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    font-weight: 600;
    font-size: var(--text-base);
    transition: all var(--duration-slow) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.contact-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-gold-muted), var(--accent-teal-muted));
    opacity: 0;
    transition: opacity var(--duration-base) ease;
}

.contact-link:hover {
    border-color: var(--accent-gold);
    transform: translateY(-8px);
    box-shadow: 
        0 20px 50px rgba(212, 168, 83, 0.2),
        0 8px 24px rgba(0, 0, 0, 0.3);
}

.contact-link:hover::before {
    opacity: 1;
}

.contact-link svg {
    width: 26px;
    height: 26px;
    position: relative;
    z-index: 1;
    transition: transform var(--duration-base) var(--ease-out);
}

.contact-link:hover svg {
    transform: scale(1.15);
}

.contact-link span {
    position: relative;
    z-index: 1;
}

/* === EMAIL DIRECT === */
.email-direct {
    margin-bottom: var(--space-10);
}

.email-direct a {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    color: var(--accent-gold);
    position: relative;
    transition: all var(--duration-base) ease;
    display: inline-block;
}

.email-direct a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width var(--duration-base) var(--ease-out);
}

.email-direct a:hover {
    text-shadow: 0 0 40px var(--glow-gold);
}

.email-direct a:hover::after {
    width: 100%;
}

/* === LOCATION === */
.location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    color: var(--text-muted);
    font-size: var(--text-base);
}

.location svg {
    width: 20px;
    height: 20px;
    color: var(--accent-teal);
}

/* === CONTACT FOOTER === */
.contact-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-8) var(--space-12);
    text-align: center;
    color: var(--text-muted);
    font-size: var(--text-sm);
    border-top: 1px solid var(--border-muted);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .contact-main {
        padding: calc(var(--nav-height) + var(--space-8)) var(--space-6) var(--space-24);
    }
    
    .contact-links {
        flex-direction: column;
        gap: var(--space-4);
    }
    
    .contact-link {
        width: 100%;
        justify-content: center;
    }
    
    .email-direct a {
        font-size: var(--text-xl);
    }
    
    .contact-description {
        margin-bottom: var(--space-12);
    }
    
    .contact-footer {
        padding: var(--space-6);
    }
    
    .ambient-glow {
        width: 500px;
        height: 500px;
    }
    
    .glow-1 {
        top: -250px;
        right: -150px;
    }
    
    .glow-2 {
        bottom: -250px;
        left: -150px;
    }
}
