/* Hebrew font */
body {
    font-family: 'Heebo', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    position: relative;
}

/* Playful background pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255,255,255,0.1) 2px, transparent 2px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
}

/* Glassmorphism Card styling */
.card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

/* Form controls */
.form-control {
    border-radius: 10px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.9);
}

.form-control:focus {
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.25);
    border-color: #667eea;
}

/* Buttons */
.btn {
    border-radius: 10px;
    padding: 12px 24px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #5a6fd6 0%, #6a4190 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.btn-success {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    border: none;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(17, 153, 142, 0.4);
}

.btn-warning {
    background: linear-gradient(135deg, #f5af19 0%, #f12711 100%);
    border: none;
    color: white;
}

.btn-warning:hover {
    background: linear-gradient(135deg, #e5a019 0%, #e11701 100%);
    color: white;
    transform: translateY(-2px);
}

/* Step indicator */
.step-indicator .badge {
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 20px;
}

/* Image container */
.image-container {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container img {
    max-height: 500px;
    width: auto;
}

/* Paper Shadow - makes image look like a real paper */
.paper-shadow {
    background: white;
    padding: 15px;
    border: 10px solid white;
    border-radius: 5px;
    transform: rotate(-2deg);
    box-shadow:
        0 1px 1px rgba(0,0,0,0.12),
        0 2px 2px rgba(0,0,0,0.12),
        0 4px 4px rgba(0,0,0,0.12),
        0 8px 8px rgba(0,0,0,0.12),
        0 16px 16px rgba(0,0,0,0.12);
    transition: transform 0.3s ease;
}

.paper-shadow:hover {
    transform: rotate(0deg) scale(1.02);
}

.paper-shadow img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* CTA box */
.cta-box {
    border: 2px dashed #667eea;
}

/* Golden Ticket - Premium Sales Banner */
.golden-ticket {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 50%, #ffecd2 100%);
    border: 3px solid #d4a574;
    border-radius: 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 0 20px rgba(212, 165, 116, 0.3),
        inset 0 0 30px rgba(255, 255, 255, 0.5);
}

.golden-ticket::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.golden-ticket h5 {
    color: #5a3d2b;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.golden-ticket p {
    color: #6b4423;
    position: relative;
    z-index: 1;
}

.golden-ticket .btn {
    position: relative;
    z-index: 1;
}

.golden-ticket .special-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 15px;
}

/* Sales Banner (legacy) */
.sales-banner {
    background-color: #fff9e6;
    border: 2px dashed #f0c14b;
    border-radius: 15px;
    text-align: center;
}

.sales-banner h5 {
    color: #333;
}

/* Example buttons */
.example-btn {
    border-radius: 20px;
}

/* Floating animation */
.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Responsive */
@media (max-width: 576px) {
    .card-body {
        padding: 2rem !important;
    }

    .display-6 {
        font-size: 1.5rem;
    }

    .paper-shadow {
        padding: 8px;
        border-width: 5px;
    }
}

/* Success icon animation */
.success-icon {
    animation: bounce 1s ease-in-out;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Pulse animation for sales button */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(245, 87, 108, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(245, 87, 108, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(245, 87, 108, 0);
    }
}
