/* Reset & Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #0d0d0d;
    color: #e0e0e0;
}

/* Navbar */
nav {
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.8rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 1.2rem;
}

nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #00e0ff;
}

/* Hero Section */
.hero {
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: white;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    line-height: 1.5;
}

.hero button {
    margin-top: 1.5rem;
    padding: 0.8rem 2rem;
    border: none;
    background: #00e0ff;
    color: #0d0d0d;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.hero button:hover {
    background: #00b8d4;
}

/* Content Container */
.container {
    max-width: 1100px;
    margin: auto;
    padding: 3rem 2rem;
}

/* Footer */
footer {
    background: #141414;
    padding: 1rem;
    text-align: center;
    color: #777;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    nav ul {
        flex-direction: column;
    }
}
