/* Custom Styles for Hoss & Hopf Landing Page */

/* Base Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Gradient Backgrounds */
.hero-gradient {
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
}
.whatsapp-gradient-box{
    background:#999;
}
.whatsapp-gradient {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

/* WhatsApp Pulse Animation */
.pulse-whatsapp {
    animation: pulseWhatsApp 2s infinite;
}

@keyframes pulseWhatsApp {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
        transform: scale(1.05);
    }
}

/* Floating Animation */
.floating-animation {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    animation: whatsappFloat 3s ease-in-out infinite;
    display:none;
}

@keyframes whatsappFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

/* Modal Styles */
.modal-overlay {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.slide-up {
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Creative Badge */
.creative-badge {
    position: relative;
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 50%, #B91C1C 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.5);
    animation: badgeGlow 2s ease-in-out infinite;
    overflow: hidden;
}

.creative-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: rotate(45deg);
    animation: badgeShine 3s infinite;
}

.badge-icon {
    position: relative;
    z-index: 2;
    animation: iconPulse 1.5s ease-in-out infinite;
}

.badge-text {
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Badge Sparkle Effects */
.badge-sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #FFD700;
    border-radius: 50%;
    animation: sparkle 1.5s infinite;
}

.badge-sparkle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.badge-sparkle:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 0.3s;
}

.badge-sparkle:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 0.6s;
}

/* Badge Animations */
@keyframes badgeGlow {
    0%, 100% { 
        box-shadow: 0 8px 25px rgba(239, 68, 68, 0.5);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 12px 35px rgba(239, 68, 68, 0.8);
        transform: scale(1.05);
    }
}

@keyframes badgeShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes sparkle {
    0%, 100% { 
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    50% { 
        opacity: 1;
        transform: scale(1.2) rotate(180deg);
    }
}

/* Success Metrics */
.success-metric {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    color: white;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    margin: 5px;
    position: relative;
    overflow: hidden;
}

.success-metric::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: metricShine 3s infinite;
}

@keyframes metricShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Exclusive Highlight */
.exclusive-highlight {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 800;
    display: inline-block;
    margin: 0 4px;
    animation: highlightPulse 2s infinite;
}

@keyframes highlightPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Urgency Text */
.urgency-text {
    color: #EF4444;
    font-weight: 700;
    animation: urgencyBlink 2s infinite;
}

@keyframes urgencyBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Social Proof */
.social-proof {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin: 4px;
    animation: proofPulse 3s infinite;
}

@keyframes proofPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

/* Performance Optimizations */
.hero-gradient {
    will-change: transform;
}

.creative-badge, .success-metric, .social-proof {
    will-change: transform;
}

/* Preload Animation */
.preload-animation {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.preload-animation.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .hero-section {
        min-height: 100vh;
        padding: 0.5rem;
    }
    
    .mobile-padding {
        padding: 0.5rem;
    }
    
    .mobile-hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .mobile-friendly-btn {
        width: 100%;
        padding: 1rem;
        font-size: 1.1rem;
        border-radius: 12px;
        font-weight: 600;
    }
    .mobile-friendly-btn-fixed {
        padding: .5rem;
        font-size: .9rem;
    }
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .compact-section {
        padding: 1rem 0;
    }
    
    .success-metric {
        padding: 8px;
        margin: 3px;
    }
    
    .creative-badge {
        padding: 6px 12px;
        font-size: 11px;
        margin-bottom: 16px;
    }
    
    .badge-sparkle {
        width: 3px;
        height: 3px;
    }
}

/* Tap Target for Mobile */
.tap-target {
    min-height: 44px;
    min-width: 44px;
}
.box{
    background-color:#999;
    padding:15px 5px;
    border-radius:10px;
    color:#fff;
    margin-bottom:10px;
}
.active{
    background:#2aa81b;
}
.question{
    color:#ff0000;
    padding-bottom:5px;
    text-align:center;
    display:none;
}
.container {
    width: 100vw;
    max-width: 600px;
    margin: auto;
    margin: 0 auto;
    background: url(../pic/Frame_440.png) center center / 100% 100% no-repeat;
}
