/* ================================================
   30 NORTH - OUTAGE PAGE
   ================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
}

body {
    background: #000;
}

/* ================================================
   BACKGROUND
   ================================================ */

.background {
    position: fixed;
    inset: 0;

    background: url("../images/background.jpg") center center no-repeat;
    background-size: cover;

    z-index: -2;
}

.background::after {
    content: "";

    position: absolute;
    inset: 0;

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

    z-index: -1;
}

/* ================================================
   PAGE
   ================================================ */

.page {

    min-height: 100vh;

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

    padding: 50px 20px 180px;
    
        margin-top:-20px;

    position: relative;
    
        animation: fadeIn .4s ease-out;

}

@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(8px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* ================================================
   GLASS CARD
   ================================================ */

.card {

    width: 100%;
    max-width: 380px;
    padding: 16px 24px 24px;

    border-radius: 38px;

    background: rgba(255,255,255,.68);

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

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

    box-shadow:
        0 15px 40px rgba(0,0,0,.18);

    text-align: center;
}

/* ================================================
   LOGO
   ================================================ */

.logo{

    display:block;

    width:320px;
    max-width:90%;
    height:auto;

    margin:-25px auto -15px;
}
/* ================================================
   STATUS ICON
   ================================================ */

.status-icon{

    width:52px;
    height:52px;

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

    position:relative;

    margin:0 auto 8px;
    
    margin-top:-2px;
    margin-bottom:2px;
}


.status-icon i {

    font-size: 60px;

    color: #1c1c1c;
}

.badge{

    width:24px;
    height:24px;

    right:-2px;
    bottom:-2px;

    font-size:15px;

    position:absolute;

    border-radius:50%;

    background:#d4aa6a;

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

    font-weight:700;
}


/* ================================================
   TEXT
   ================================================ */

h1{

  font-size:2rem;

    font-weight:400;

    line-height:1.1;

    margin-bottom:10px;

    font-size:1.35rem;

    margin-bottom:8px;

    letter-spacing:-0.02em;
    color:#111;
}


.description{

font-size:.95rem;

    line-height:1.45;

    margin-bottom:16px;

    color:#555;
}

/* ================================================
   BUTTONS
   ================================================ */

.btn{


 height:48px;

    margin-bottom:10px;

    font-size:1rem;

    gap:12px;

    border-radius:999px;

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

    text-decoration:none;

    transition:all .2s ease;
}

.btn i {

    font-size: 24px;
    
}


.btn:hover{
    transform:translateY(-2px);
}

.btn:active{
    transform:translateY(0);
}
/* Primary */

.btn-primary {

    background: #000;

    color: #fff;
}

.btn-primary:hover {

    transform: translateY(-2px);

    background: #1d1d1d;
}

/* Secondary */

.btn-secondary {

    background: rgba(255,255,255,.92);

    color: #111;

    border: 2px solid #202020;
}

.btn-secondary:hover {

    background: white;

    transform: translateY(-2px);
}

/* ================================================
   DIVIDER
   ================================================ */

hr {

    margin:18px 0;

    border: none;

    border-top: 1px solid rgba(0,0,0,.12);
}

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

.footer{

    display:flex;

    align-items:center;

    gap:12px;

    text-align:left;
}

.footer-icon{

    width:42px;
    height:42px;

    border-radius:50%;

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

    background:white;

    flex-shrink:0;
}

.footer strong{

    font-size:1rem;

    margin-bottom:4px;
}

.small{

    font-size:.9rem;

    color:#555;
}

.heart {

    color: #C89A54;
}

/* ================================================
   COFFEE CUP
   ================================================ */

.coffee{

    position:absolute;

    bottom:-35px;

    left:50%;

    transform:translateX(-50%);

    width:150px;

    filter:drop-shadow(0 12px 20px rgba(0,0,0,.3));
}

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

@media (min-width:768px){

    .card{
        max-width:520px;
        padding:44px;
    }

    h1{
        font-size:2.6rem;
    }

    .description{
        font-size:1.2rem;
    }

    .btn{
        height:62px;
        font-size:1.25rem;
    }

    .coffee{
        width:210px;
    }

}

/* ================================================
   SVG ICONS
   ================================================ */

.icon{

    width:20px;
    height:20px;
}


.footer-icon-svg {
    width: 28px;
    height: 28px;
}

.umbrella-icon{
    width:62px;
    height:62px;
}

