:root {
    --bg-color: #050505;
    --text-color: #f5f5f5;
    --accent-color: #333333;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow: hidden;
    cursor: none; /* Custom cursor for premium feel */
}

/* Custom Cursor */
.cursor {
    width: 20px;
    height: 20px;
    border: 1px solid var(--text-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, background-color 0.3s ease;
    z-index: 9999;
    mix-blend-mode: difference;
}

.cursor.hovered {
    transform: translate(-50%, -50%) scale(1.5);
    background-color: var(--text-color);
}

.hero-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 2.5rem 5rem;
    position: relative;
    z-index: 1;
}

/* Subtle background grid effect */
.hero-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(var(--accent-color) 1px, transparent 1px),
                      linear-gradient(90deg, var(--accent-color) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.15;
    z-index: -1;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: fadeInDown 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.location {
    font-size: 0.875rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: #b0b0b0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-transform: uppercase;
}

.location::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--text-color);
    border-radius: 50%;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 900px;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
    transition: transform 0.1s linear;
}

.title {
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    font-weight: 300;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
}

.subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    color: #a0a0a0;
    margin-bottom: 3.5rem;
    max-width: 550px;
}

.progress-container {
    width: 100%;
    max-width: 350px;
    height: 1px;
    background-color: var(--accent-color);
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
}

.progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: var(--text-color);
    width: 0%;
    animation: loading 2.5s cubic-bezier(0.65, 0, 0.35, 1) infinite alternate;
}

.contact-info {
    font-size: 0.9rem;
    color: #888888;
    font-weight: 300;
}

.contact-info a {
    color: var(--text-color);
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
    margin-left: 5px;
    font-weight: 400;
}

.contact-info a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--text-color);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-info a:hover::after {
    width: 100%;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #555555;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animations */
@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 loading {
    0% { width: 0%; transform: translateX(0); }
    50% { width: 100%; transform: translateX(0); }
    100% { width: 100%; transform: translateX(100%); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        padding: 2rem;
    }
    body {
        cursor: auto; /* Revert to default cursor on mobile */
    }
    .cursor {
        display: none;
    }
    .footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}
