.logo-container {
    position: relative;
    width: 120px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    gap: 5px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 4.2rem;
    font-weight: 700;
    color: transparent;
    background: linear-gradient(45deg, #D8906D, #EFE8DB);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    animation: gentle-pulse 3s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(216, 144, 109, 0.4));
}

.logo-text-j {
    margin-left: -5px;
    animation: gentle-pulse 3s ease-in-out infinite 0.5s;
}

.logo-heart {
    font-size: 4.2rem;
    color: transparent;
    background: linear-gradient(45deg, #D8906D, #EFE8DB);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: absolute;
    animation: gentle-pulse 3s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(216, 144, 109, 0.4));
    z-index: 1;
}

.logo-feet {
    font-size: 1.8rem;
    color: transparent;
    background: linear-gradient(45deg, #EFE8DB, #F1EAE3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: absolute;
    transform: translateY(2px);
    animation: gentle-float 3s ease-in-out infinite;
    z-index: 2;
    opacity: 0.85;
}

@keyframes gentle-pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.06);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes gentle-float {
    0% {
        transform: translateY(2px) scale(1);
    }
    50% {
        transform: translateY(0px) scale(1.04);
    }
    100% {
        transform: translateY(2px) scale(1);
    }
} 