*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

/* BODY */
body{
    background: linear-gradient(135deg, #545964, #0d1523);
    color:rgb(255, 255, 255);
    min-height:100vh;
    overflow-x:hidden;
}

/* NAVBAR */
.navbar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:10px 20px;

    background: linear-gradient(
        rgba(0, 0, 0, 0.441),
        rgba(255, 255, 255, 0.6)
    );

    backdrop-filter: blur(10px);
    flex-wrap: wrap;
}

/* LOGO */
.logo{
    display:flex;
    align-items:center;
    gap:10px;

    font-size:18px;
    font-weight:bold;
    letter-spacing:1px;
}

.logo span{
    font-size:24px;
    font-weight:bold;
}

.logo img{
    width:60px;
    height:60px;
    object-fit:contain;
    border-radius:50%;
}

/* NAV RIGHT */
.nav-right{
    display:flex;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;
}

.nav-right button,
.nav-right a{
    background: rgba(255,255,255,0.1);
    border:none;
    padding:8px 12px;
    border-radius:8px;
    color:white;
    cursor:pointer;
    text-decoration:none;
    transition:0.3s;
}

.nav-right button:hover,
.nav-right a:hover{
    background: rgba(255,255,255,0.2);
}

/* HERO */
.hero{
    min-height:80vh;
    height:auto;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;

    gap:15px;
    padding:60px 20px;
}

.hero-logo img{
    width:120px;
    height:120px;
    object-fit:contain;

    animation: logoPop 2.5s infinite ease-in-out;
    filter: drop-shadow(0 0 10px #1777d7);
}

/* HERO TEXT */
.hero h1{
    margin:6px 0;
    color:#ffffff;
    font-size: clamp(20px, 5vw, 32px);
}

.hero p{
    margin:5px 0 20px;
    color:#d6e8ff;
    font-size: clamp(14px, 3.5vw, 16px);
}

/* START BUTTON */
.start-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    padding:14px 28px;

    text-decoration:none !important;
    color:white;

    font-size:18px;
    font-weight:bold;

    border-radius:50px;

    background: linear-gradient(
        135deg,
        #000,
        #222,
        #4da6ff
    );

    box-shadow:0 0 15px rgba(77,166,255,.5);
    transition:.4s ease;

    max-width:90%;
    width:fit-content;
}

.start-btn:hover{
    transform:translateY(-4px) scale(1.05);
    box-shadow:0 0 25px rgba(0, 0, 0, 0.9);
}

.start-btn i{
    font-size:22px;
    animation:catMove 2s infinite ease-in-out;
}

.search-icon {
    text-decoration: none !important;
}

.start-btn{
    text-decoration: none !important;
}

/* FOOTER */
.footer-card{
    width:300px;
    margin:40px auto;
    padding:25px;

    text-align:center;

    border-radius:20px;

    background: linear-gradient(135deg, black, #1e1e1e, #0066ff);

    color:white;

    box-shadow:0 8px 25px rgba(0,0,0,.4);

    transition:.3s;
}

.footer-card:hover{
    transform:translateY(-5px);
}

.footer-pic{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid white;
    margin-bottom:10px;
}

.social-icons{
    margin-top:15px;
}

.social-icons a{
    color:white;
    font-size:25px;
    margin:0 12px;
    transition:.3s;
}

.social-icons a:hover{
    color:#66aaff;
    transform:scale(1.2);
}

/* SPLASH */
#splash{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100vh;

    background:white;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    z-index:9999;

    animation:fadeOut 0.5s ease 2s forwards;
}

#splash img{
    width:120px;
    height:120px;
    object-fit:contain;
    animation:pop 1s ease;
}

#splash h2{
    margin-top:10px;
    font-size:24px;
    color:#24292f;
}

/* LINKS */
a{
    color:#4da6ff;
    text-decoration:none;
    font-weight:600;
}

a:hover{
    text-decoration:underline;
    color:#1f6feb;
}

/* =========================
   RESPONSIVE DESIGN
   ========================= */

/* TABLET */
@media (max-width: 992px){
    .hero h1{ font-size:26px; }
    .hero p{ font-size:15px; }
    .footer-card{ width:260px; }
}

/* MOBILE */
@media (max-width: 600px){

    .navbar{
        padding:10px 12px;
        flex-direction:row;
        gap:10px;
    }

    .logo img{
        width:45px;
        height:45px;
    }

    .logo span{
        font-size:16px;
    }

    .nav-right{
        gap:8px;
        flex-wrap:wrap;
    }

    .hero{
        padding:40px 15px;
    }

    .hero-logo img{
        width:85px;
        height:85px;
    }

    .start-btn{
        padding:14px 20px;
        font-size:16px;
        width:fit-content;
    }

    .footer-card{
        width:90%;
        padding:20px;
    }

    .social-icons a{
        font-size:22px;
        margin:0 8px;
    }
}

/* SMALL PHONE */
@media (max-width: 400px){

    .hero h1{
        font-size:20px;
    }

    .logo span{
        font-size:14px;
    }

    .hero-logo img{
        width:75px;
        height:75px;
    }

    .start-btn{
        width:100%;
    }
}

/* ANIMATIONS */
@keyframes logoPop{
    0%{ transform:scale(1) rotate(0deg); }
    50%{ transform:scale(1.15) rotate(5deg); }
    100%{ transform:scale(1) rotate(0deg); }
}

@keyframes catMove{
    0%{ transform:rotate(0deg); }
    50%{ transform:rotate(12deg); }
    100%{ transform:rotate(0deg); }
}

@keyframes pop{
    0%{ transform:scale(0.5); opacity:0; }
    100%{ transform:scale(1); opacity:1; }
}

@keyframes fadeOut{
    to{ opacity:0; visibility:hidden; }
}

/* GLOBAL FIX */
html{
    font-size:16px;
}

img{
    max-width:100%;
    height:auto;
}