/* public/css/eventmenow.css */

/* Theme variables */
:root {
    --primary: #5600ff;
    --secondary: #ca0101;
    --muted: #6c6f75;
    --card-radius: 0.75rem;
}

a {
    transition: all 0.3s 0s linear;
}

.btn {
    padding: 12px 25px !important;
    border-radius: 15px  !important;
    outline: none;
    box-shadow: none;
    font-size: 16px;
    font-weight: 500 !important;
}

.web-btn1 {
    background-color: var(--primary) !important;
    color: white !important;
}

.web-btn1:hover {
    background-color: #4602d0 !important;
}

.web-btn2 {
    background-color: var(--secondary) !important;
    color: white !important;
}

.web-btn2:hover {
    background-color: #aa0202 !important;
}

.web-title {
    color: black;
    font-size: 52px;
    font-weight: 800;
}

/* Brand mark in the header */
.logo-img {
    height: 55px;
    width: auto;
}

/* Navbar */
.navbar .nav-link {
    color: #222;
}
.navbar .btn-primary {
    background: var(--primary);
    border-color: var(--primary);
}

/* Footer */
.emn-footer {
    background: #0f0f12;
    color: #fff;
}
.emn-footer a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}
.emn-footer .muted {
    color: rgba(255, 255, 255, 0.6);
}

/* Hero */
.hero .display-5 {
    color: #12121b;
}
.mock-device {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}
.mock-screen {
    background: linear-gradient(180deg, #fff, #f7f7ff);
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 10px 30px rgba(86, 0, 255, 0.08);
    border: 1px solid rgba(86, 0, 255, 0.06);
}

/* Cards */
.card {
    border-radius: var(--card-radius);
}

/* Small utilities */
.muted {
    color: var(--muted);
}

/* Responsive tweaks */
@media (max-width: 767px) {
    .hero .display-5 {
        font-size: 1.8rem;
    }
}

/* Accessibility focus */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 3px solid rgba(86, 0, 255, 0.15);
    outline-offset: 2px;
}

/* Simple invoice download button style used in mockups */
.invoice-btn {
    background: transparent;
    border: 1px dashed rgba(0, 0, 0, 0.08);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.9rem;
}

/* Form inputs */
input.form-control,
textarea.form-control {
    border-radius: 0.5rem;
    box-shadow: none;
}

.banner-img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.1);
}