/* Hero Section Styles */
.hero-section {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 0 20px 40px;
    padding-top: calc(33.333vh - 300px);
}

.logo-icon {
    width: 600px;
    height: auto;
    margin-bottom: -180px;
}

.tagline {
    font-size: 1.3359375rem;
    font-weight: 700;
    color: #006d8f;
    text-align: center;
    margin-bottom: 120px;
    margin-top: -85px; /* 5px higher on desktop */
}

.tap-effect {
    position: fixed;
    pointer-events: none;
    width: 100px;
    height: 100px;
    border: 3px solid rgba(0, 170, 255, 0.6);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    animation: tapPulse 0.6s ease-out;
    z-index: 3;
}

@keyframes tapPulse {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}
