/* Font setup */
body {
    font-family: "Poppins", sans-serif;
    background: #f7f9fc;
    color: #222;
    padding-bottom: 40px;
}

/* Layout */
.main-container {
    margin-top: 40px;
}

/* Header */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.event-title {
    font-size: 30px;
    font-weight: 700;
    color: #222;
}

.lead {
    color: #666;
    font-size: 17px;
}

/* Marquee Header */
.marquee-wrap {
    background: #ffdd55;
    padding: 10px 0;
    overflow: hidden;
    border-bottom: 1px solid #eee;
}

.marquee {
    display: inline-block;
    white-space: nowrap;
    font-weight: 600;
    font-size: 16px;
    animation: marquee 18s linear infinite;
}

@keyframes marquee {
    from { transform: translateX(100%); }
    to { transform: translateX(-100%); }
}

/* QR */
.qr-img {
    width: 130px;
    border-radius: 10px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.15);
}

.qr-box {
    text-align: right;
    max-width: 200px;
}

/* Divider */
.divider {
    margin: 25px 0;
    border-color: #eee;
}

/* Glass Cards */
.glass-card {
    background: #ffffffcc;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid #f1f1f1;
    backdrop-filter: blur(5px);
}

.glass-card h5 {
    font-weight: 600;
    margin-bottom: 15px;
}

/* Lists */
.feature-list {
    padding-left: 20px;
    color: #444;
}

.feature-list li {
    margin-bottom: 6px;
}

/* Form */
.form-label {
    font-weight: 600;
}

.btn-primary {
    background: #ffcc00;
    border: none;
    font-weight: 600;
    padding: 12px;
    color: #111;
    border-radius: 10px;
    transition: 0.2s ease;
}

.btn-primary:hover {
    background: #e6b800;
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    color: #666;
}

.footer strong {
    color: #111;
}

/* ------------------------------------------------------ */
/*          RESPONSIVE FIXES FOR QR & HEADER              */
/* ------------------------------------------------------ */

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        text-align: center;
    }

    .qr-box {
        text-align: center !important;
        max-width: none;
        margin-top: 10px;
    }

    .qr-img {
        width: 110px;
    }

    .event-title {
        font-size: 24px;
    }

    .lead {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .qr-img {
        width: 95px;
    }
}
