body, html {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    background-color: black;
    color: white;
    min-height: 100vh;
}

.bg-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/bg.png?height=2000&width=3000');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.content {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gradient-text {
    background: linear-gradient(to right, #a78bfa, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

h1 {
    font-size: 4rem;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.5rem;
    color: #d8b4fe;
    margin-bottom: 1rem;
}

.button-group {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.button {
    background-color: #7c3aed;
    color: white;
    font-weight: bold;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.button:hover {
    background-color: #6d28d9;
    transform: scale(1.05);
}

.about, .contact {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.about-content {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
}

ul {
    list-style-type: disc;
    padding-left: 1.25rem;
    margin: 0.5rem 0;
    color: #d8b4fe;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
}

input, textarea {
    width: 100%;
    padding: 0.5rem 1rem;
    margin-bottom: 0.5rem;
    background-color: rgba(31, 41, 55, 0.5);
    border: none;
    border-radius: 9999px;
    color: white;
}

textarea {
    border-radius: 1rem;
}

footer {
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-top: 1px solid #7c3aed;
    text-align: center;
}

.form-status {
    text-align: center;
    margin-top: 0.5rem;
    color: #d8b4fe;
}

@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2rem;
    }

    .about-content {
        flex-direction: column;
    }

    .button-group {
        flex-direction: column;
    }

    .about, .contact {
        padding: 1rem 0;
    }
}
