/* interactables.css */

/* Basic styles */
body{
    font-family:'Montserrat',sans-serif;
    margin:0;
    padding:0;
    overflow-x:hidden;
    min-height:100dvh;
}

.full-page-background{
    position:relative;
    overflow:hidden;
    background:#000;
    min-height:100dvh;
    width:100%;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:space-between;
    color:#fff;
    text-align:center;
    padding:30px 15px;
    box-sizing:border-box;
}

.bg-slide{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    opacity:0;
    transition:opacity 1s ease;
    z-index:0;
}
.bg-slide.visible{opacity:1;}

.bethel-logo{
    position:relative;
    z-index:2;
    width:min(600px,90vw);
    margin:20px auto 20px 10px;
    align-self:flex-start;
}

.button-row-top{
    position:relative;
    z-index:2;
    width:100%;
    max-width:1600px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:28px;
    justify-items:center;
    align-items:start;
    margin:auto 0;
    padding:0 20px;
    box-sizing:border-box;
}

.update-section{
    display:flex;
    flex-direction:column;
    align-items:center;
    width:100%;
    max-width:210px;
}

.update-section a{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-decoration:none;
}

.icon{
    width:100%;
    max-width:200px;
    border-radius:40px;
    transition:.3s;
    cursor:pointer;
}
.icon:hover{
    transform:scale(1.08);
    box-shadow:0 8px 15px rgba(0,0,0,.3);
}

.btn{
    margin-top:10px;
    width:9rem;
    height:2.5rem;
    border-radius:2rem;
    background:transparent;
    border:2px solid rgb(197,0,79);
    color:#fff;
    font:600 .85rem 'Montserrat',sans-serif;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:.3s;
}
.btn:hover{
    background:rgb(197,0,79);
    transform:translateY(-2px);
}

.subtext{
    margin-top:8px;
    font-size:.8rem;
    text-align:center;
    line-height:1.35;
    min-height:40px;
}

.bottom-section{
    position:relative;
    z-index:2;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:8px;
    padding-bottom:20px;
}

.emblem{max-width:70px;}
.bottom-section p{font-size:.75rem;margin:0;}

@media (max-width:1023px){
    .bethel-logo{
        margin:25px auto;
        align-self:center;
    }

    .button-row-top{
        grid-template-columns:repeat(3,minmax(100px,1fr));
        gap:16px;
    }

    .icon{
        max-width:90px;
        border-radius:12px;
    }

    .btn{
        display:none;
    }

    .subtext{
        font-size:9px;
        min-height:auto;
    }
}

@media (max-width:600px){
    .button-row-top{
        grid-template-columns:repeat(2,minmax(100px,1fr));
    }
}
