/* ============================= */
/*  FULL PAGE BACKGROUND & TEXT  */
/* ============================= */
body {
    font-family: 'Glacial Indifference', sans-serif;
    background: linear-gradient(rgba(246,175,10,0.3), rgba(246,175,10,0.3)),
                url('https://jesusyouth.us/wp-content/uploads/2026/01/Screenshot-2026-01-19-at-5.53.20 PM.png') center/cover no-repeat fixed;
    background-size: cover;
    background-attachment: fixed;
    color: #2D4B4B;
}

/* ============================= */
/*  MAIN SECTIONS READABILITY  */
/* ============================= */
.qr-section,
.qr-intro,
.qr-hero-nav {
    background-color: rgba(255,255,255,0.85); /* semi-transparent white */
    border-radius: 12px;
    padding: 20px;
    margin: 0 auto 30px;
    max-width: 1100px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

/* ============================= */
/*  QR INTRO SECTION – JUBILEE STYLED */
/* ============================= */
.qr-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: center;
    padding: 30px 20px;
    font-family: 'Glacial Indifference', sans-serif;
    border-left: 6px solid #F6AF0A; /* Jubilee gold accent */
    background: linear-gradient(rgba(158,172,142,0.25), rgba(255,255,255,0.9)); /* soft green wash */
}

.qr-intro p {
    color: #2D4B4B; /* readable body text */
}

.qr-intro strong,
.qr-intro b {
    color: #9EAC8E; /* Jubilee soft green emphasis */
}

.qr-intro em {
    color: #61A5C2; /* Jubilee blue highlight */
}

/* ============================= */
/*  HERO NAV BUTTONS / NAVIGATION  */
/* ============================= */
.qr-hero-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    margin: 30px auto 15px;
    background: linear-gradient(rgba(246,175,10,0.5), rgba(246,175,10,0.5)),
                url('https://jesusyouth.us/wp-content/uploads/2026/01/Screenshot-2026-01-19-at-5.53.20 PM.png') center/cover no-repeat;
    box-shadow: 0 9px 25px rgba(45,75,75,0.25);
}

.qr-hero-nav p {
    font-family: 'Radley', serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: #2D4B4B;
    margin-bottom: 25px;
}

.qr-hero-nav .qr-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.qr-hero-nav .qr-buttons a {
    font-family: 'Radley', serif;
    font-size: 1.5rem;
    font-weight: 900;
    text-decoration: none;
    padding: 18px 30px;
    border-radius: 12px;
    background-color: #61A5C2;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 110px;
    text-align: center;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.qr-hero-nav .qr-buttons a:hover {
    background-color: #2D4B4B;
    transform: translateY(-3px);
}

/* ============================= */
/*  DROPDOWN NAV  */
/* ============================= */
.qr-dropdown {
    max-width: 1200px;
    margin: 10px auto 10px;
    text-align: center;
}

.qr-dropdown label {
    font-family: 'Radley', serif;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
    color: #2D4B4B;
}

.qr-dropdown select {
    font-family: 'Glacial Indifference', sans-serif;
    font-size: 0.7rem;
    padding: 6px 9px;
    border-radius: 4px;
    border: 2px solid #61A5C2;
    background-color: #ffffff;
    color: #2D4B4B;
    cursor: pointer;
    min-width: 110px;
}

/* ============================= */
/*  QR SECTIONS  */
/* ============================= */
.qr-section h2 {
    font-family: 'Radley', serif;
    font-size: 2rem;
    margin-bottom: 5px;
    color: #61A5C2;
}

.qr-section h3 {
    font-family: 'Radley', serif;
    font-size: 1.1rem;
    font-weight: 400;
    opacity: 0.7;
    margin-bottom: 30px;
}

.qr-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.qr-content {
    font-size: 1rem;
    line-height: 1.7;
}

.qr-image img {
    width: 100%;
    border-radius: 14px;
}

/* ============================= */
/*  MOBILE RESPONSIVE  */
/* ============================= */
@media (max-width: 768px) {
    .qr-layout {
        grid-template-columns: 1fr;
    }

    .qr-hero-nav .qr-buttons {
        gap: 20px;
    }

    .qr-hero-nav .qr-buttons a {
        font-size: 1.2rem;
        padding: 12px 20px;
    }

    .qr-intro {
        font-size: 1rem;
        padding: 20px;
    }
}
