/*=================================================
  Pixel Edit Studio - Luxury Landing Page
=================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:#090909;

    color:#fff;

    overflow-x:hidden;

}

/* Animated Background */

.bg-animation{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:
    radial-gradient(circle at top left,#c9a22722,transparent 35%),
    radial-gradient(circle at bottom right,#ffffff11,transparent 30%),
    linear-gradient(135deg,#090909,#121212,#1b1b1b);

    z-index:-2;

}

/* Navbar */

.navbar{

    background:rgba(0,0,0,.45);

    backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(255,255,255,.08);

}

.navbar-brand{

    color:#d4af37 !important;

    font-size:28px;

    letter-spacing:1px;

}

.navbar-brand i{

    margin-right:10px;

}

/* Hero */

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:center;

    padding-top:100px;

    padding-bottom:60px;

}

.hero-tag{

    display:inline-block;

    background:#d4af37;

    color:#000;

    font-weight:600;

    padding:8px 22px;

    border-radius:30px;

    margin-bottom:25px;

    font-size:14px;

}

.hero-title{

    font-size:64px;

    font-weight:700;

    margin-bottom:25px;

}

.hero-title span{

    color:#d4af37;

}

.hero-text{

    max-width:760px;

    margin:auto;

    color:#cccccc;

    font-size:20px;

    line-height:1.8;

}

/* Login Cards */

.login-card{

    display:block;

    padding:40px 30px;

    text-align:center;

    border-radius:25px;

    color:#fff;

    text-decoration:none;

    background:rgba(255,255,255,.07);

    backdrop-filter:blur(25px);

    border:1px solid rgba(255,255,255,.08);

    transition:.4s;

    height:100%;

    position:relative;

    overflow:hidden;

}

.login-card:hover{

    transform:translateY(-12px);

    border-color:#d4af37;

    box-shadow:0 0 40px rgba(212,175,55,.35);

    color:#fff;

}

.login-card .icon{

    width:90px;

    height:90px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    background:#d4af37;

    color:#000;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:36px;

}

.login-card h3{

    font-size:28px;

    margin-bottom:15px;

}

.login-card p{

    color:#d0d0d0;

    line-height:1.8;

}

/* Different Glow */

.admin-card:hover{

    box-shadow:0 0 45px rgba(255,193,7,.5);

}

.client-card:hover{

    box-shadow:0 0 45px rgba(13,202,240,.45);

}

.staff-card:hover{

    box-shadow:0 0 45px rgba(25,135,84,.45);

}

/* Buttons */

.btn-gold{

    background:#d4af37;

    color:#000;

    padding:14px 35px;

    border-radius:40px;

    font-weight:600;

}

.btn-gold:hover{

    background:#f3c94d;

}

/* Footer */

footer{

    padding:40px 0;

    text-align:center;

    border-top:1px solid rgba(255,255,255,.08);

    color:#aaa;

    margin-top:80px;

}

/* Social */

.social{

    margin-top:20px;

}

.social a{

    width:45px;

    height:45px;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    margin:0 8px;

    color:#fff;

    background:#222;

    transition:.3s;

}

.social a:hover{

    background:#d4af37;

    color:#000;

}

/* Responsive */

@media(max-width:991px){

.hero-title{

font-size:46px;

}

.hero-text{

font-size:18px;

}

}

@media(max-width:767px){

.hero-title{

font-size:34px;

}

.hero{

padding-top:120px;

}

.login-card{

margin-bottom:25px;

}

}