/* TicketOrder Index Page - Mobile First Refactor */

/* Mobile First Defaults */
.container {
    max-width: 800px;
    margin: 40px auto;
    /* Mobile margin */
    padding: 20px 15px;
    /* Mobile padding */
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.icon {
    font-size: 60px;
    /* Mobile size */
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

.container h1 {
    font-size: 1.75rem;
    /* Mobile size */
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.container p {
    font-size: 1rem;
    /* Mobile size */
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    /* Mobile padding */
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.95rem;
    /* Mobile size */
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

.btn span {
    margin-right: 8px;
    font-size: 1.2rem;
}

.features {
    display: flex;
    justify-content: center;
    gap: 15px;
    /* Mobile gap */
    margin-top: 60px;
    flex-wrap: wrap;
    /* Allow wrapping on mobile */
    flex-direction: column;
    /* Stack on mobile */
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    min-width: 100%;
    /* Full width on mobile */
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2rem;
    /* Mobile size */
    margin-bottom: 10px;
}

.feature-text {
    font-size: 0.9rem;
    /* Mobile size */
    color: #2c3e50;
    font-weight: 500;
}

/* ========================================
   DESKTOP ENHANCEMENTS (min-width)
   ======================================== */

/* Tablet & Up */
@media (min-width: 768px) {
    .container {
        margin: 80px auto;
        padding: 40px 20px;
    }

    .icon {
        font-size: 80px;
    }

    .container h1 {
        font-size: 2.5rem;
    }

    .container p {
        font-size: 1.1rem;
    }

    .btn {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .features {
        flex-direction: row;
        /* Row on desktop */
        gap: 30px;
    }

    .feature-item {
        min-width: 200px;
        /* Specific width on desktop */
    }

    .feature-icon {
        font-size: 2.5rem;
    }

    .feature-text {
        font-size: 1rem;
    }
}