/*=========================================================
    FIREPOP DIGITAL MENU
=========================================================*/

:root{

    --bg:#050505;
    --bg2:#111111;

    --orange:#ff6a00;
    --red:#ff3c2e;
    --purple:#8b3dff;

    --white:#ffffff;
    --gray:#bdbdbd;

}

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    background:
        radial-gradient(circle at top,
        rgba(255,106,0,.08),
        transparent 35%),
        linear-gradient(#090909,#020202);

    color:white;

    font-family:Poppins,sans-serif;

    overflow-x:hidden;

}

/*=========================================================
    HEADER
=========================================================*/

header{

    position:sticky;

    top:0;

    z-index:1000;

    height:72px;

    padding:0 25px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:rgba(5,5,5,.80);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(255,255,255,.08);
    
    transition:.35s ease;

}

.logo{

    height:46px;

    width:auto;

}

.back-button{

    width:42px;

    height:42px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:#181818;

    color:white;

    text-decoration:none;

    font-size:26px;

    transition:.3s;

}

.back-button:hover{

    background:var(--orange);

    box-shadow:0 0 18px rgba(255,106,0,.5);

}

/*=========================================================
    HERO
=========================================================*/

.hero{

    text-align:center;

    padding:45px 20px 25px;

}

.hero h1{

    font-size:40px;

    font-weight:700;

}

.hero h2{

    margin-top:10px;

    color:#d8d8d8;

    font-family:"Noto Sans KR",sans-serif;

}

.hero p{

    margin-top:14px;

    color:#aaaaaa;

}

/*=========================================================
    MENU
=========================================================*/

.menu-wrapper{

    width:min(1800px,95%);

    margin:35px auto 50px;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:30px;

}

.menu-page{

    border-radius:20px;

    overflow:hidden;

    background:#111;

    transition:.35s;

    box-shadow:

        0 15px 40px rgba(0,0,0,.45);

}

.menu-page:hover{

    transform:translateY(-8px);

    box-shadow:

        0 20px 60px rgba(255,106,0,.28);

}

.menu-page img{

    display:block;

    width:auto;

    height:min(85vh,1100px);

    max-width:100%;

    object-fit:contain;

}

.social-icon{

    width:22px;

    height:22px;

    display:block;

    margin:0 auto 8px;

    color:#ffffff;

    transition:all .3s ease;

}

.quick-actions a:hover .social-icon{

    color:#E1306C;

    transform:scale(1.15);

}
/*=========================================================
    NEON DIVIDER
=========================================================*/

.menu-divider{

    position:relative;

    width:60px;

    display:flex;

    justify-content:center;

    align-items:center;

}

.menu-divider::before{

    content:"";

    position:absolute;

    width:4px;

    height:82vh;

    border-radius:50px;

    background:linear-gradient(

        transparent,

        #ff6a00,

        #ff3c2e,

        #ff6a00,

        transparent

    );

    box-shadow:

        0 0 12px #ff6a00,

        0 0 30px rgba(255,106,0,.7);

    animation:dividerGlow 3s ease-in-out infinite;

}

.menu-divider img{

    position:relative;

    width:68px;

    background:#050505;

    padding:8px;

    border-radius:50%;

    filter:

        drop-shadow(0 0 20px #ff6a00);

}

@keyframes dividerGlow{

    0%,100%{

        opacity:.6;

    }

    50%{

        opacity:1;

    }

}

/*=========================================================
    QUICK ACTIONS
=========================================================*/

.quick-actions{

    width:min(900px,95%);

    margin:0 auto 50px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:18px;

}

.quick-actions a{

    background:#151515;

    border:1px solid rgba(255,255,255,.06);

    border-radius:18px;

    padding:18px;

    color:white;

    text-decoration:none;

    text-align:center;

    transition:.3s;

    font-size:26px;

}

.quick-actions span{

    display:block;

    margin-top:8px;

    font-size:15px;

}

.quick-actions a:hover{

    background:#1f1f1f;

    transform:translateY(-5px);

    box-shadow:

        0 0 25px rgba(255,106,0,.35);

}

/*=========================================================
    FOOTER
=========================================================*/

footer{

    padding:30px;

    text-align:center;

    color:#777;

    border-top:1px solid rgba(255,255,255,.06);

}
/* Navigation */

.quick-actions a:nth-child(1):hover .social-icon{

    color:#4285F4;

}

/* Instagram */

.quick-actions a:nth-child(2):hover .social-icon{

    color:#E1306C;

}

/* WhatsApp */

.quick-actions a:nth-child(3):hover .social-icon{

    color:#25D366;

}

/* Website */

.quick-actions a:nth-child(4):hover .social-icon{

    color:#FF6A00;

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

@media(max-width:992px){

.menu-wrapper{

    display:block;

}

.menu-divider{

    width:100%;

    height:80px;

    margin:20px 0;

}

.menu-divider::before{

    width:70%;

    max-width:320px;

    height:4px;

}

.menu-page{

    margin-bottom:25px;

}

.menu-page img{

    width:100%;

    height:auto;

}

.quick-actions{

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

}

}

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

@media(max-width:768px){

header{

    height:62px;

    padding:0 15px;

}

.logo{

    height:34px;

}

.back-button{

    width:34px;

    height:34px;

    font-size:20px;

}

.hero{

    padding:30px 15px 20px;

}

.hero h1{

    font-size:30px;

}

.hero h2{

    font-size:20px;

}

.hero p{

    font-size:15px;

}



.menu-wrapper{

    width:100%;

    padding:12px;

    margin-top:20px;

}

.menu-page{

    border-radius:14px;

}

.menu-page img{

    width:100%;

    height:auto;

}



.quick-actions{

    position:sticky;

    bottom:12px;

    width:95%;

    background:rgba(0,0,0,.85);

    backdrop-filter:blur(15px);

    padding:10px;

    border-radius:18px;

    gap:10px;

}

.quick-actions a{

    padding:14px 8px;

    font-size:22px;

}

.quick-actions span{

    font-size:12px;

}

.social-icon{

    width:20px;

    height:20px;

}

}


