/* Custom CSS Styles - InvitacionesDigitalesPremium */

/* Custom Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse-slow {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.4; }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-pulse-slow {
    animation: pulse-slow 8s ease-in-out infinite;
}

/* Glassmorphism Styles */
.glass-premium {
    background: rgba(26, 26, 26, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-light {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.glass-gold {
    background: rgba(197, 148, 77, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(197, 148, 77, 0.25);
}

/* Gold Metallic Text Gradient */
.text-gold-metallic {
    background: linear-gradient(135deg, #f5efdb 0%, #dec790 25%, #c5944d 50%, #926131 80%, #dec790 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gold-gradient {
    background: linear-gradient(135deg, #c5944d 0%, #eaaf57 50%, #af7c3c 100%);
}

.border-gold-gradient {
    border-image: linear-gradient(135deg, #c5944d, #dec790, #926131) 1;
}

/* Custom Scrollbars */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #121212;
}

::-webkit-scrollbar-thumb {
    background: #c5944d;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #af7c3c;
}

/* Custom Input Styling */
.form-input {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid #2d2d2d;
    color: #f3f4f6;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #c5944d;
    box-shadow: 0 0 0 2px rgba(197, 148, 77, 0.2);
}

/* Photo Gallery Canvas Styles */
#canvas-container {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
}

/* Timeline Custom Styles */
.timeline-item::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: #c5944d;
    border: 2px solid #121212;
    border-radius: 50%;
    top: 6px;
    left: -6px;
}

/* Section Background Colors (To ensure they exist without JIT) */
.bg-white { background-color: #ffffff; }
.bg-black { background-color: #000000; }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-gray-900 { background-color: #111827; }
.bg-amber-50 { background-color: #fffbeb; }
.bg-amber-900 { background-color: #78350f; }
.bg-slate-50 { background-color: #f8fafc; }
.bg-slate-900 { background-color: #0f172a; }
.bg-transparent { background-color: transparent; }
