/* Simplified Awesome Birthday Features CSS - Only Birthday Wishes Wall and Photo Slideshow */

/* Birthday Wishes Wall - Updated to match other cards */
.wishes-wall-section {
    padding: 60px 20px;
    margin: 40px auto;
    text-align: center;
    max-width: 1200px;
}

.wishes-wall-section h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 80px;
    letter-spacing: -0.02em;
    position: relative;
}

.wishes-wall-section h2::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: rgba(184, 134, 11, 0.6);
}

.wishes-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.unified-wishes-card {
    background: rgba(20, 20, 20, 0.3);
    border-radius: 25px;
    padding: 25px;
    border: 1px solid rgba(184, 134, 11, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    color: white;
}

.unified-wishes-card:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
    border-color: rgba(184, 134, 11, 0.4);
}

.add-wish-section {
    margin-bottom: 20px;
}

.add-wish-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: rgba(184, 134, 11, 0.9);
    text-shadow: 0 2px 10px rgba(184, 134, 11, 0.3);
}

.wishes-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(184, 134, 11, 0.3) 50%, transparent 100%);
    margin: 20px 0;
}

.wishes-feed-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: rgba(184, 134, 11, 0.8);
    text-shadow: 0 2px 8px rgba(184, 134, 11, 0.2);
}

/* Keep existing styles for form elements and wish items */
.add-wish-card {
    background: rgba(20, 20, 20, 0.3);
    border-radius: 30px;
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid rgba(184, 134, 11, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    color: white;
}

.add-wish-card:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
    border-color: rgba(184, 134, 11, 0.4);
}

.add-wish-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 25px;
    color: rgba(184, 134, 11, 0.9);
    text-shadow: 0 2px 10px rgba(184, 134, 11, 0.3);
}

#wishText {
    width: 100%;
    min-height: 120px;
    padding: 12px 20px;
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: 25px;
    font-size: 1.125rem;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    resize: none;
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    font-weight: 500;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

#wishText::placeholder {
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: normal;
}

#wishText:focus {
    outline: none;
    border-color: rgba(184, 134, 11, 0.6);
    box-shadow: 0 0 20px rgba(184, 134, 11, 0.2);
}

.add-wish-btn {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.8) 0%, rgba(184, 134, 11, 0.6) 100%);
    color: white;
    border: 1px solid rgba(184, 134, 11, 0.4);
    padding: 15px 35px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

.add-wish-btn:hover {
    background: linear-gradient(135deg, rgba(184, 134, 11, 1) 0%, rgba(184, 134, 11, 0.8) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(184, 134, 11, 0.4);
}

.wishes-feed {
    max-height: 500px;
    overflow-y: auto;
    padding: 10px;
    scrollbar-width: none;
}

.wish-item {
    background: rgba(20, 20, 20, 0.5);
    border-radius: 20px;
    padding: 30px 35px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    color: white;
}

.wish-item:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(184, 134, 11, 0.2);
}

.wish-item.new-wish {
    animation: wishSlideIn 0.6s ease-out;
}

@keyframes wishSlideIn {
    from {
        opacity: 0;
        transform: translateX(-50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.wish-content {
    font-size: 1.3rem;
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
}

.wish-author {
    font-style: italic;
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: rgba(184, 134, 11, 0.8);
    margin-bottom: 15px;
    font-weight: 300;
}

/* Video Slideshow Background */
.slideshow-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.5;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Fallback photo slideshow styles (kept for compatibility) */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* Animation Keyframes */
@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .wishes-wall-section {
        padding: 40px 15px;
        margin: 30px auto;
    }
    
    .wishes-wall-section h2 {
        font-size: 2.5rem;
    }
    
    .wishes-container {
        padding: 0 15px;
    }
    
    .unified-wishes-card {
        padding: 20px;
        margin: 0 10px;
    }
    
    .add-wish-section h3 {
        font-size: 1.4rem;
    }
    
    .wishes-feed-section h4 {
        font-size: 1.3rem;
    }
    
    .add-wish-card {
        padding: 20px;
        margin: 0 10px 40px 10px;
    }
    
    #wishText {
        min-height: 80px;
    }
}

@media (max-width: 480px) {
    .wishes-wall-section {
        padding: 30px 10px;
        margin: 20px auto;
    }
    
    .wishes-wall-section h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .wishes-container {
        padding: 0 10px;
    }
    
    .unified-wishes-card {
        padding: 15px;
        margin: 0 5px;
    }
    
    .add-wish-section h3 {
        font-size: 1.2rem;
    }
    
    .wishes-feed-section h4 {
        font-size: 1.2rem;
    }
    
    .add-wish-card {
        padding: 15px;
        margin: 0 5px 30px 5px;
    }
    
    .add-wish-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}