/* Valentine's Love Notes Plugin Styles */

.love-note-container {
    position: relative;
    max-width: 600px;
    margin: 30px auto;
    padding: 20px;
}

.love-note-hearts {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.floating-heart {
    position: absolute;
    font-size: 20px;
    animation: float-up 6s ease-in-out infinite;
    opacity: 0;
}

.floating-heart:nth-child(1) { left: 10%; }
.floating-heart:nth-child(2) { left: 30%; }
.floating-heart:nth-child(3) { left: 50%; }
.floating-heart:nth-child(4) { left: 70%; }
.floating-heart:nth-child(5) { left: 90%; }

@keyframes float-up {
    0% {
        transform: translateY(100%) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-200%) rotate(360deg);
        opacity: 0;
    }
}

.love-note-card {
    background: linear-gradient(135deg, #fff5f7 0%, #ffe8f0 100%);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(255, 105, 180, 0.2);
    border: 3px solid #ffb6d9;
    position: relative;
    overflow: hidden;
}

.love-note-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 182, 217, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.love-note-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.love-note-header h3 {
    margin: 0;
    color: #d63384;
    font-size: 28px;
    font-family: 'Georgia', serif;
    font-weight: normal;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.heart-icon {
    font-size: 28px;
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    10%, 30% {
        transform: scale(1.1);
    }
    20%, 40% {
        transform: scale(0.9);
    }
}

.love-note-message {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.7);
    padding: 30px;
    border-radius: 15px;
    border: 2px dashed #ffb6d9;
    margin-bottom: 20px;
}

.love-note-message p {
    margin: 0;
    font-size: 20px;
    line-height: 1.8;
    color: #6b2d5c;
    font-family: 'Georgia', serif;
    font-style: italic;
    text-align: center;
}

.love-note-footer {
    text-align: center;
    position: relative;
    z-index: 1;
}

.signature {
    display: inline-block;
    font-size: 18px;
    color: #d63384;
    font-family: 'Brush Script MT', cursive;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(255, 105, 180, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .love-note-container {
        margin: 20px 10px;
        padding: 10px;
    }
    
    .love-note-card {
        padding: 30px 20px;
    }
    
    .love-note-header h3 {
        font-size: 22px;
    }
    
    .heart-icon {
        font-size: 22px;
    }
    
    .love-note-message p {
        font-size: 16px;
    }
    
    .signature {
        font-size: 16px;
    }
}

/* Widget Specific Styles */
.widget .love-note-container {
    margin: 15px 0;
}

.widget .love-note-card {
    padding: 20px 15px;
}

.widget .love-note-message p {
    font-size: 16px;
}

/* Admin Page Styles */
.valentines-admin-preview {
    margin-top: 20px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
}
