:root {
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.15);
    --text-glow: rgba(255, 255, 255, 0.3);
}

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

body, html {
    width: 100%;
    min-height: 100%;
    font-family: 'Outfit', sans-serif;
    background-color: #0c0c0e; /* Dark fallback */
    color: #fff;
}

/* Hero image styling */
.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin-bottom: 40px;
    max-height: 70vh; /* Keep it mostly contained on standard screens */
    object-fit: contain;
}

/* 
 * Main content container to center the single button
 */
.content {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

/*
 * Premium glassmorphism contact link
 */
.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 48px;
    font-size: 1.15rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    
    /* Glassmorphism properties */
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
    
    /* Micro-animation transitions */
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.contact-link:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 45px 0 rgba(0, 0, 0, 0.5), 0 0 20px var(--text-glow);
    color: #ffffff;
}

.contact-link:active {
    transform: translateY(0);
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.4);
}

.contact-link .icon {
    font-size: 1.4rem;
    transition: transform 0.4s ease;
}

.contact-link:hover .icon {
    transform: scale(1.1) rotate(5deg);
}
