/* hero.css */
.hero {
    width: 100vw;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem;
}

.container {
    max-width: 80vw;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.content {
    flex: 1;
}

.emoji-container {
    min-width: 30%;
    max-width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.emoji {
    width: 100%;
    max-width: 500px;
    height: auto;
}

h1, h2, .gradient-text {
    font-size: clamp(5rem, 6vw, 9rem);
    line-height: 1.1;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-family: 'SF Pro Display', sans-serif;
}

.gradient-text {
    background: linear-gradient(90deg, #00C6FF 0%, #9B4BFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
    margin-bottom: 2rem;
}

.waving-hand {
    display: inline-block;
    font-size: 0.8em;
    margin-left: 0.2em;
    animation: wave 2s infinite;
    transform-origin: 70% 70%;
}

@keyframes wave {
    0% { transform: rotate( 0.0deg) }
    10% { transform: rotate(14.0deg) }
    20% { transform: rotate(-8.0deg) }
    30% { transform: rotate(14.0deg) }
    40% { transform: rotate(-4.0deg) }
    50% { transform: rotate(10.0deg) }
    60% { transform: rotate( 0.0deg) }
    100% { transform: rotate( 0.0deg) }
}

.contact-button {
    display: inline-block;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 15px;
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    background: linear-gradient(45deg, var(--button-gradient-start), var(--button-gradient-end));
    color: var(--button-text-color);
    border: 2px solid var(--button-text-color);
  }
  
  .contact-button:hover {
    transform: scale(1.05);
  }

@media (max-width: 1024px) {

    .container {
        flex-direction: column;
        text-align: center;
        height: 150px;
    }

    .content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .emoji-container {
        width: 100%;
    }

    .emoji {
        max-width: 300px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 1rem;
    }

    h1, h2, .gradient-text {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }

    .emoji {
        max-width: 200px;
    }
}