/* Modern CSS Logo for TenDzień */
.css-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.css-logo:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 4px 8px rgba(183, 110, 121, 0.2));
}

/* Logo Icon - Wedding Rings */
.logo-icon {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon::before {
    content: '';
    position: absolute;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(183, 110, 121, 0.1) 0%, rgba(141, 74, 86, 0.1) 100%);
    z-index: 0;
}

.wedding-rings {
    position: relative;
    z-index: 1;
}

.ring {
    width: 16px;
    height: 16px;
    border: 2.5px solid;
    border-radius: 50%;
    position: absolute;
}

.ring-1 {
    border-color: #b76e79;
    top: -2px;
    left: -2px;
}

.ring-2 {
    border-color: #8d4a56;
    top: 6px;
    left: 6px;
}

.diamond {
    position: absolute;
    top: -6px;
    left: 6px;
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-bottom: 4px solid #b76e79;
    z-index: 2;
}

/* Logo Text */
.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    color: #b76e79;
    line-height: 1;
    margin: 0;
    background: linear-gradient(135deg, #b76e79 0%, #8d4a56 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: #5a6873;
    line-height: 1;
    margin: 0;
    opacity: 0.8;
    position: relative;
}

.logo-subtitle::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, #b76e79 0%, transparent 100%);
    opacity: 0.3;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .css-logo {
        gap: 10px;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
    }
    
    .logo-icon::before {
        width: 35px;
        height: 35px;
    }
    
    .ring {
        width: 12px;
        height: 12px;
        border-width: 2px;
    }
    
    .ring-2 {
        top: 4px;
        left: 4px;
    }
    
    .diamond {
        top: -4px;
        left: 4px;
        border-left-width: 2px;
        border-right-width: 2px;
        border-bottom-width: 3px;
    }
    
    .logo-title {
        font-size: 24px;
    }
    
    .logo-subtitle {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .logo-title {
        font-size: 20px;
    }
    
    .logo-subtitle {
        font-size: 9px;
    }
}