/* ============================================================
   THE BUZZ SECTION
   ============================================================ */

.second-layered-section-bg {
    background-color: #F4E4E4; /* Light Pink Match */
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

/* ── Typography ── */
.buzz-subtext {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #333333;
    font-weight: 500;
    max-width: 90%;
}

/* ── Form Inputs ── */
.buzz-input {
    background-color: #ffffff;
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 14px 20px;
    font-size: 0.95rem;
    color: #1a1a1a;
    box-shadow: none !important; /* Disabling bootstrap default focus shadow */
}

.buzz-input:focus {
    border-color: var(--color-theme, #d13239); /* Red border on click */
}

/* Form Placeholders */
.buzz-input::placeholder {
    color: #888888;
    font-weight: 500;
}
.form-select.buzz-input {
    color: #888888; 
    font-weight: 500;
}

/* ── Form Action Text ── */
.buzz-contact {
    font-size: 1.2rem;
    color: #1a1a1a;
}
.buzz-contact a {
    font-weight: 600;
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

.buzz-contact a:hover {
    color: var(--color-theme, #d13239);
}

/* ── Mascot Image (Swing Boy) ── */
.buzz-swing-mascot {
    width: 100%;
    max-width: 238px;
    object-fit: contain;
    position: relative;
    z-index: 10;
}

.buzz-action-wrapper {
    position: relative;
    z-index: 20; 
}

/* ============================================================
   RESPONSIVE DESIGN (The Buzz Section)
   ============================================================ */

/* Large Tablets */
@media (max-width: 991.98px) {
    .buzz-subtext { max-width: 100%; }
    .buzz-swing-mascot { 
        max-width: 260px; 
        margin-bottom:0px; 
    }
}

/* Mobile Screens */
@media (max-width: 767.98px) {
    .second-layered-section-bg { padding: 20px 0 0; }
    
    .buzz-subtext { 
        font-size: 0.95rem; 
        margin-bottom: 2rem !important; 
    }
    
    .buzz-swing-mascot { 
        max-width:190px;
        margin-top: -10%;
    }
    
    /* Center the button and contact info on mobile */
    .buzz-contact { 
        display: block; 
        text-align: left;
        font-size: 0.85rem;
    }
    .cat-btn { 
        width: 100%; 
        text-align: center; 
    }
}