/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;900&display=swap');

* {
    margin: 0; padding: 0; box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    /* Rich Purple Gradient */
    background: linear-gradient(135deg, #2e1065 0%, #4c1d95 50%, #6d28d9 100%);
    background-attachment: fixed;
    color: #ffffff;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
}

nav {
    position: fixed;
    top: 0; width: 100%; padding: 40px 5%;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 1000;
}

.logo {
    font-weight: 900; font-size: 1.5rem; color: #ffffff;
    text-decoration: none; letter-spacing: -1px;
}

.nav-links { list-style: none; display: flex; gap: 40px; }
.nav-links a {
    text-decoration: none; color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem; font-weight: 600; text-transform: uppercase;
    transition: 0.3s;
}

.nav-links a:hover { color: #ffffff; text-shadow: 0 0 10px rgba(255,255,255,0.5); }

.hero {
    flex: 1; display: flex; flex-direction: column;
    justify-content: center; align-items: center; text-align: center;
    padding: 0 10%;
}

.hero h1 {
    font-size: clamp(3.5rem, 15vw, 10rem);
    font-weight: 900; line-height: 0.8; letter-spacing: -0.06em;
    color: #ffffff; margin-bottom: 30px;
}

.hero .tagline {
    font-size: 0.9rem; color: #ddd6fe;
    text-transform: uppercase; letter-spacing: 0.5em;
    font-weight: 800; margin-bottom: 25px;
}

.hero .description {
    font-size: 1.2rem; color: #ffffff; font-weight: 400;
    line-height: 1.8; margin-bottom: 40px; max-width: 800px;
}

/* SEO Highlight */
.hero .description strong { color: #fdf4ff; border-bottom: 1px solid rgba(255,255,255,0.2); }

.email-link {
    display: inline-block; font-size: 1.1rem; font-weight: 700;
    color: #ffffff; text-decoration: none; padding: 12px 35px;
    border: 2px solid rgba(255, 255, 255, 0.3); border-radius: 50px;
    transition: 0.3s;
}

.email-link:hover { background: #ffffff; color: #4c1d95; transform: translateY(-3px); }

.location {
    margin-top: 25px; font-size: 0.8rem; text-transform: uppercase;
    letter-spacing: 2px; color: rgba(255, 255, 255, 0.4);
}

.hamburger { display: none; flex-direction: column; gap: 6px; cursor: pointer; }
.hamburger span { width: 25px; height: 2px; background: #fff; }

@media (max-width: 768px) {
    .hamburger { display: flex; z-index: 1001; }
    .nav-links {
        display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
        background: #2e1065; flex-direction: column; justify-content: center; align-items: center; z-index: 1000;
    }
    .nav-links.active { display: flex; }
}