/* Hero Text Content */

.text-content {
    text-align: left;
}

.main-heading {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 1.5rem;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
}

.subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--white-text);
    margin-bottom: 2rem;
}

.highlight {
    color: var(--white);
    font-weight: bold;
}

.action-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--pink);
    color: var(--dark-bg);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color: var(--pink-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244, 168, 184, 0.3);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: var(--pink);
    font-size: 2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.social-icons a:hover {
    color: var(--pink-light);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(244, 168, 184, 0.3);
}

/* Scroll Down Button */
.scroll-down {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    z-index: 10;
    transition: opacity 0.3s ease;
}

.paw-icon {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transform: rotate(-45deg);
    animation: pawBounce 2s ease-in-out infinite;
}

.scroll-down:hover .paw-icon {
    transform: rotate(-45deg) scale(1.1);
}

.scroll-arrows {
    color: var(--pink);
    font-size: 1.5rem;
    animation: arrowBounce 2s ease-in-out infinite;
}

@keyframes pawBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: rotate(-45deg) translateY(0);
    }
    40% {
        transform: rotate(-45deg) translateY(-15px);
    }
    60% {
        transform: rotate(-45deg) translateY(-8px);
    }
}

@keyframes arrowBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-8px);
    }
}
