* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0a0a0a; /* Almost black background */
    background-image: url('backgroundWave.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 50%;
    background-attachment: fixed;
    font-family: 'Roboto', sans-serif;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    line-height: 1.6;
    text-align: center;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    text-align: center;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.8rem;
    color: #e0e0e0;
    text-align: center;
}

.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
}
.gradient-text2 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
}
.gradient-text2:hover {
    background: linear-gradient(135deg, #ea1644 0%, #df82be 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
    
}

/* Responsive design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    body {
        padding: 1rem;
        background-size: cover; /* Full screen background on tablets */
        justify-content: flex-start; /* Move content up */
        padding-top: 15vh; /* Add top spacing to position text higher */
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    body {
        background-size: cover; /* Full screen background on mobile */
        padding-top: 20vh; /* More top spacing for smaller screens */
        background-attachment: scroll; /* Fix iOS background attachment issues */
    }
}
