/* =====================================================
   HOSTIVOX HOSPITALITY STAFFING SECTION
===================================================== */

*{
    box-sizing:border-box;
}

.twelvemay-hospitality-wrapper{
    display:flex;
    gap:40px;
    align-items:flex-start;
    justify-content:space-between;
    padding:50px;
    border-radius:28px;

    /* MAIN BACKGROUND */
    background:linear-gradient(135deg,#0f172a,#111827,#1e293b);

    position:relative;
    overflow:hidden;

    box-shadow:0 20px 60px rgba(0,0,0,0.25);
}



/* =====================================================
   LEFT PANEL
===================================================== */

.twelvemay-left-panel{
    width:35%;
    display:flex;
    flex-direction:column;
    gap:30px;
}

.twelvemay-heading-box{
    width:100%;
}

.twelvemay-heading-box h2{
    font-size:42px;
    line-height:1.2;
    color:#ffffff;
    margin:0 0 18px;
    font-weight:700;
    letter-spacing:-0.5px;
}

.twelvemay-heading-box p{
    color:#cbd5e1;
    font-size:16px;
    line-height:1.8;
    margin:0;
}



/* =====================================================
   LEFT SIDE BUTTONS
===================================================== */

.twelvemay-category-buttons{
    display:flex;
    flex-direction:column;
    gap:18px;
    width:100%;
}

.twelvemay-role-btn{
    width:100%;
    position:relative;

    padding:20px 24px;

    border:none;
    border-radius:18px;

    background:rgba(255,255,255,0.08);

    border:1px solid rgba(255,255,255,0.08);

    color:#ffffff;

    font-size:16px;
    font-weight:600;
    text-align:left;

    cursor:pointer;

    transition:all 0.35s ease;

    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
}



/* LEFT BUTTON HOVER */
.twelvemay-role-btn:hover{

    transform:translateY(-3px);

    background:rgba(37,99,235,0.30);

    border-color:rgba(96,165,250,0.35);

    color:#ffffff;

    box-shadow:
        0 12px 30px rgba(37,99,235,0.25);

}



/* ACTIVE BUTTON */
.twelvemay-role-btn.active{

    background:linear-gradient(
        135deg,
        rgba(37,99,235,0.55),
        rgba(59,130,246,0.38)
    );

    border-color:rgba(96,165,250,0.45);

    color:#ffffff;

    box-shadow:
        0 15px 35px rgba(37,99,235,0.35);

}



/* =====================================================
   RIGHT PANEL
===================================================== */

.twelvemay-right-panel{
    width:65%;
}



/* =====================================================
   RIGHT SIDE GRID
===================================================== */

.twelvemay-role-content{
    display:none;

    grid-template-columns:repeat(2,minmax(0,1fr));

    gap:22px;

    animation:twelvemayFade 0.4s ease;
}

.twelvemay-role-content.active{
    display:grid;
}



/* =====================================================
   RIGHT SIDE ROLE CARDS
===================================================== */

.twelvemay-role-card{

    position:relative;

    display:flex;
    align-items:center;
    justify-content:flex-start;

    min-height:120px;

    padding:28px;

    border-radius:22px;

    /* DIFFERENT BACKGROUND */
    background:linear-gradient(
        135deg,
        #172554,
        #1e3a8a
    );

    border:1px solid rgba(96,165,250,0.20);

    color:#ffffff;

    font-size:17px;
    font-weight:600;
    line-height:1.5;

    transition:all 0.35s ease;

    overflow:hidden;

    box-shadow:
        0 10px 25px rgba(0,0,0,0.20);

}



/* TOP HIGHLIGHT */
.twelvemay-role-card::before{

    content:'';

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:linear-gradient(
        90deg,
        #38bdf8,
        #60a5fa,
        #818cf8
    );

}



/* RIGHT CARD HOVER */
.twelvemay-role-card:hover{

    transform:translateY(-6px);

    background:linear-gradient(
        135deg,
        #1d4ed8,
        #2563eb
    );

    border-color:rgba(147,197,253,0.50);

    box-shadow:
        0 20px 35px rgba(0,0,0,0.30),
        0 0 25px rgba(59,130,246,0.20);

}



/* =====================================================
   ANIMATION
===================================================== */

@keyframes twelvemayFade{

    from{
        opacity:0;
        transform:translateY(20px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}



/* =====================================================
   LARGE TABLET
===================================================== */

@media(max-width:1200px){

    .twelvemay-hospitality-wrapper{
        padding:40px;
        gap:30px;
    }

    .twelvemay-heading-box h2{
        font-size:36px;
    }

}



/* =====================================================
   TABLET
===================================================== */

@media(max-width:991px){

    .twelvemay-hospitality-wrapper{

        flex-direction:column;

        padding:32px;

        gap:35px;
    }

    .twelvemay-left-panel,
    .twelvemay-right-panel{
        width:100%;
    }

    .twelvemay-heading-box h2{
        font-size:32px;
    }

    .twelvemay-role-content{
        grid-template-columns:repeat(2,1fr);
    }

}



/* =====================================================
   MOBILE
===================================================== */

@media(max-width:767px){

    .twelvemay-hospitality-wrapper{

        padding:24px 18px;

        border-radius:22px;

        gap:28px;
    }

    .twelvemay-left-panel{
        gap:24px;
    }

    .twelvemay-heading-box h2{

        font-size:26px;

        line-height:1.3;

        margin-bottom:14px;
    }

    .twelvemay-heading-box p{

        font-size:14px;

        line-height:1.7;
    }

    .twelvemay-category-buttons{
        gap:14px;
    }

    .twelvemay-role-btn{

        padding:16px;

        font-size:14px;

        border-radius:14px;

        line-height:1.5;
    }

    .twelvemay-role-btn:hover{
        transform:none;
    }

    .twelvemay-role-btn.active{
        transform:none;
    }

    .twelvemay-role-content{

        grid-template-columns:1fr;

        gap:16px;
    }

    .twelvemay-role-card{

        min-height:auto;

        padding:20px;

        border-radius:18px;

        font-size:15px;
    }

    .twelvemay-role-card:hover{
        transform:none;
    }

}



/* =====================================================
   SMALL MOBILE
===================================================== */

@media(max-width:480px){

    .twelvemay-hospitality-wrapper{
        padding:18px 14px;
        border-radius:18px;
    }

    .twelvemay-heading-box h2{
        font-size:22px;
    }

    .twelvemay-heading-box p{
        font-size:13px;
    }

    .twelvemay-role-btn{

        padding:14px;

        font-size:13px;
    }

    .twelvemay-role-card{

        padding:18px;

        font-size:14px;
    }

}