:root {
    --bg-color: #05070a;
    --text-color: #ffffff;
    --text-muted: #a0aec0;
    --accent: #63b3ed;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Background */
.bg-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/images/hero.png') center/cover no-repeat;
    z-index: -2;
    animation: zoomIn 20s infinite alternate linear;
}

@keyframes zoomIn {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5,7,10,0.95) 0%, rgba(5,7,10,0.8) 100%);
    backdrop-filter: blur(5px);
    z-index: -1;
}

/* Content Container */
.container {
    width: 100%;
    max-width: 800px;
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Logo */
.logo {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    letter-spacing: 4px;
    margin-bottom: 3rem;
}

.logo-bold { font-weight: 900; }
.logo-light { font-weight: 300; opacity: 0.8; }

/* Text */
.title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    letter-spacing: 10px;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #a0aec0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 300;
    letter-spacing: 1px;
}

/* Divider */
.divider {
    width: 50px;
    height: 2px;
    background-color: var(--accent);
    margin: 3rem auto;
}

/* Contact Info */
.contact-info {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 12px;
    display: inline-block;
    width: 100%;
    max-width: 500px;
    backdrop-filter: blur(10px);
}

.contact-title {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.name {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.email {
    display: inline-block;
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 400;
    transition: color 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 2px;
}

.email:hover {
    color: var(--accent);
    border-color: var(--accent);
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 1.5s cubic-bezier(0.1, 0, 0.3, 1) forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 600px) {
    .logo { font-size: 2rem; }
    .title { letter-spacing: 5px; }
    .email { font-size: 1rem; }
    .contact-info { padding: 1.5rem; }
}
