/* ---------------------------------------------------------------------------------------------
* Copyright (c) 2026 Blinkr Team, PFMCODES Org. All rights reserved.
* Licensed under the MIT License. See License(File) in the project root for license information.
*-----------------------------------------------------------------------------------------------*/

@import url("./main.css");

@font-face {
    font-family: 'Lulo Clean';
    src: url("../../assets/fonts/Lulo\ Clean\ W01\ One\ Bold.ttf");
}

body {
    background-color: var(--new-tab-bg);
    color: var(--nav-border);
    font-family: 'Lulo Clean', sans-serif;
    font-weight: 900;
    letter-spacing: -15px;
}

#logo {
    width: 100px;
}

#search-logo {
    color: var(--primary);
    display: flex;
    align-items: center;      /* vertically centers image + text */
    justify-content: center;  /* centers the whole row horizontally */
    gap: 10px;                /* adds space between logo and text */
    margin-top: 100px;
}

.input:hover img {
    box-shadow: 0 0 6px 2px #fff;
    background-color: #cfcece;
}

#search-logo h1, #search-logo h1::selection {
    font-size: 80px;
    text-shadow: 2.5px 2.5px 5px #000;
}

h1 {
    font-size: 80px;
    line-height: 1;
    margin: 0;
    padding: 0;
}

h1 span {
    display: block;
    font-size: 15px;
    line-height: 1;
    letter-spacing: 0px;
    margin: 0;
    padding: 0;
    margin-left: calc(100% - 50% / 2 - 39%);
}

input::selection, ::selection {
    background-color: #5501bd;
    color: #fff;
}

input:hover::selection {
    background-color: rgba(255, 255, 255, 0.5);
}

input::placeholder, input::placeholder:hover {
    color: var(--nav-border);
}

input::placeholder {
    user-select: none;
}

input {
    border: none;
    padding-left: 50px;
    padding-right: 50px;
    width: 100%;
    height: 50px;
    outline: none;
    font-size: 18px;
    color: #fff;
    border-radius: 50px;
    background-color: var(--urlBar);
}

input::placeholder {
    color: var(--nav-border);
}

.input {
    background-color: var(--primary);
    border-radius: 50px;
    max-height: 50px;
    width: 50%;
    margin-left: calc( (100% - 50%) / 2 ); /* Centers the input */
    padding-left: 0;
    box-shadow: 0 0 6px 2px var(--primary);
}

input {
    box-shadow: 0 0 12px 4px var(--primary);
}

input:hover, .input:hover {
    box-shadow: 0 0 6px 2px #364457;
}

.input img {
    width: 30px;
    height: 30px;
    margin-top: 8px;
    border-radius: 100%;
    margin-left: 8px;
    position: absolute;
}

button {
    background-color: var(--urlBar);
    width: 50px;
    height: 50px;
    border-radius: 50px;
    border: none;
}

button:hover, input:hover {
    background-color: #5501bd;
}