
.navbar-logo {
    height: 42px;
    width: auto;
}

/* =========================
   Base
========================= */
html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

:root {
    --primary: #2563eb;
    --primary-light: #0ea5e9;
    --bg: #f8fafc;
    --card: #ffffff;
    --text: #0f172a;
    --muted: #64748b;
    --border: #dbe2ea;
    --brand-blue: #0071BA;
}

/* =========================
   Body
========================= */

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(to bottom right, #f8fafc, #eef2ff);
    color: var(--text);
    font-family: Inter, system-ui, sans-serif;
}

.main-content {
    flex: 1 0 auto;
}

.footer {
    background: #212529;
    color: white;
    margin-top: auto;
    padding: 1.5rem 0;
}

    .footer a {
        color: #ffc107;
        text-decoration: none;
        transition: color .2s;
    }

        .footer a:hover {
            color: white;
        }
/* =========================
   Focus States
========================= */

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem rgba(37, 99, 235, 0.25);
}

/* =========================
   Cards
========================= */

.card,
.modern-card {
    position: relative;
    border: none;
    border-radius: 24px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

/* =========================
   Top Gradient Bar
========================= */

.card-topbar {
    height: 6px;
    background: linear-gradient( 90deg, var(--primary), var(--primary-light) );
}

/* =========================
   Section Headers
========================= */

.section-header {
    margin-bottom: 22px;
}

    .section-header h5 {
        margin-bottom: 5px;
        font-size: 1.15rem;
        font-weight: 700;
        color: var(--text);
    }

    .section-header p {
        margin: 0;
        color: var(--muted);
        font-size: 0.92rem;
    }

.section-title {
    font-weight: 700;
    color: var(--text);
    margin-bottom: 5px;
}

.section-subtitle {
    color: var(--muted);
    font-size: 0.9rem;
}

/* =========================
   Divider
========================= */

.divider {
    height: 1px;
    background: #e2e8f0;
    margin: 34px 0;
}

/* =========================
   Form Elements
========================= */

.form-label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #334155;
}

.form-control,
textarea,
select {
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px 16px;
    background-color: white;
    transition: border-color .2s ease, box-shadow .2s ease, transform .15s ease;
}

    .form-control:focus,
    textarea:focus,
    select:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 4px rgba(37, 99, 235, .12);
    }

textarea {
    resize: none;
}

/* =========================
   Buttons
========================= */

.btn {
    border-radius: 14px;
    font-weight: 600;
    transition: transform .2s ease, box-shadow .2s ease;
}

    .btn:hover {
        transform: translateY(-1px);
    }

.btn-modern-primary {
    border: none;
    background: linear-gradient( 90deg, var(--primary), var(--primary-light) );
    color: white;
    padding: 12px 26px;
}

    .btn-modern-primary:hover {
        color: white;
        box-shadow: 0 10px 20px rgba(37, 99, 235, .18);
    }

.btn-modern-secondary {
    padding: 12px 24px;
}

.top-action-btn {
    border-radius: 999px;
    padding: 10px 18px;
}

/* =========================
   Checkbox
========================= */

.form-check-input {
    width: 1.15rem;
    height: 1.15rem;
    border-radius: 6px;
}

/* =========================
   Meta Text
========================= */

.meta-info {
    font-size: .85rem;
    color: #94a3b8;
}


/* pill for the event details view date time location */
.badge-pill {
    background-color: #f3f4f6; /* Soft light grey fill from screenshot */
    border: 1px solid #e5e7eb; /* Very subtle border to define shape */
    border-radius: 9999px; /* Fully rounded pill edges */
    padding: 8px 18px; /* Generous inner breathing room */
    font-size: 0.92rem;
    font-weight: 500;
    color: #2d3748;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}


/* =========================
   Validation
========================= */

.text-danger {
    font-size: .85rem;
}

.alert {
    border-radius: 16px;
}

/* =========================
   Floating Forms
========================= */

.form-floating > .form-control-plaintext::placeholder,
.form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder,
.form-floating > .form-control:focus::placeholder {
    text-align: start;
}

/* =========================
   Mobile
========================= */

@media (max-width: 768px) {

    .card,
    .modern-card {
        border-radius: 18px;
    }

    .page-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 16px;
    }

    .btn-modern-primary,
    .btn-modern-secondary {
        width: 100%;
    }
}

.event-card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 4px 25px rgba(15, 23, 42, 0.03);
    background-color: #ffffff;
}

/* Minimalist Form Elements Layout Structure */
.form-section-header {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #64748b;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.form-label-custom {
    font-size: 0.88rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
    display: block;
}

.form-control-custom {
    background-color: #e2e8f0;
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 0.75rem 1.1rem;
    color: #1e293b;
    font-size: 0.95rem;
    transition: all 0.2s ease-in-out;
}

    .form-control-custom:focus {
        background-color: #ffffff;
        border-color: #cbd5e1;
        box-shadow: 0 0 0 1px #cbd5e1;
        color: #0f172a;
    }

    .form-control-custom::placeholder {
        color: #94a3b8;
    }

.form-divider {
    border-color: #f1f5f9;
    opacity: 1;
    margin: 2rem 0;
}

/* Counter Controls */
.btn-counter {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #0f172a;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease-in-out;
    font-size: 0.95rem;
}

    .btn-counter:hover {
        background-color: #f8fafc;
        border-color: #cbd5e1;
    }

    .btn-counter.active {
        background: #050b14;
        color: #ffffff;
        border-color: #050b14;
        font-weight: 600;
    }

/* Summary Panel Widget Sidebar */
.summary-title-label {
    font-size: 0.9rem;
    color: #64748b;
}

.summary-value-data {
    font-weight: 600;
    color: #0f172a;
}

.tips-card {
    background-color: #eef2ff;
    border: 1px solid #e0e7ff;
    border-radius: 16px;
}

.btn-checkout {
    background: #ffffff;
    color: #0f172a;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    letter-spacing: 0.01em;
    transition: opacity 0.2s;
}

    .btn-checkout:hover {
        background-color: #f8fafc;
        color: black !important;
    }

.btn-cancel-custom {
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
}

.sticky-sidebar {
    position: sticky;
    top: 25px;
}