/* showticket.css */

/* Base font and color setup */
body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f8f9fa;
    color: #212529;
}

/* Brand styling */
.navbar-brand {
    font-weight: bold;
    color: #5b2be0;
}

.navbar-brand:hover {
    color: #3d1cb3;
}

/* Custom buttons */
.btn-primary,
.btn-purple {
    background-color: #5b2be0;
    border-color: #5b2be0;
}

.btn-primary:hover,
.btn-purple:hover {
    background-color: #3d1cb3;
    border-color: #3d1cb3;
}

/* Sidebar style */
.sidebar {
    background-color: #f2f2f2;
    min-height: 100vh;
}

.sidebar .nav-link {
    color: #333;
    font-weight: 500;
}

.sidebar .nav-link:hover {
    color: #5b2be0;
}

.sidebar .nav-link.active {
    color: #5b2be0;
    font-weight: bold;
}

/* Collapsible menu icons */
.nav-link[data-bs-toggle="collapse"]::after {
    content: " ▾";
    float: right;
}

/* Flash messages spacing */
.alert {
    margin-top: 1rem;
}

/* Hero section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), url('/images/showticket_background_clean.png') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 80px 30px;
    border-radius: 10px;
    text-align: center;
}

/* Section headers */
.section-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #5b2be0;
}

/* Pricing cards */
.pricing-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #ddd;
    border-radius: 12px;
    background-color: white;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
}

.pricing-card h4 {
    color: #5b2be0;
    font-weight: bold;
}

.pricing-card ul {
    padding-left: 1.2rem;
    list-style: none;
}

.pricing-card ul li::before {
    content: "✔ ";
    color: #5b2be0;
    font-weight: bold;
}
.trial-badge {
    display: inline-block;
    background-color: #d1c4f7;
    color: #4b2994;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    margin-top: 0.5rem;
}


.star{
   width: 20px;
}