@import url("./base.css");

.main-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.hero-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cat-container {
    width: 200px;
    height: 250px;
    margin-bottom: 15px;
    animation: floatAndPlay 4.5s ease-in-out infinite;
}

.single-line-cat {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.15));
}

.brand-title {
    font-size: 3.2rem;
    font-weight: 200;
    letter-spacing: 12px; 
    text-transform: uppercase;
    color: #ffffff;
    margin-right: -12px; 
    animation: fadeIn 1.8s ease;
}

.brand-subtitle {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 5px;
    color: #555555;
    text-transform: uppercase;
    margin-top: 8px;
    margin-right: -5px;
}


@keyframes floatAndPlay {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-18px) rotate(4deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 768px) {
    .cat-container {
        width: 150px;
        height: 190px;
    }

    .brand-title {
        font-size: 2.3rem;
        letter-spacing: 8px;
        margin-right: -8px;
    }
}

@media (max-width: 480px) {
    .cat-container {
        width: 120px;
        height: 155px;
    }

    .brand-title {
        font-size: 1.8rem;
        letter-spacing: 5px;
        margin-right: -5px;
    }
}