/* ==========================================================
   style.css
   Сайт: Закладки популярных российских сайтов
   Автор: Ваше имя

   Данный файл отвечает за оформление всего сайта.
   ========================================================== */


/* ==========================================================
   Сброс стандартных отступов браузера
   ========================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* ==========================================================
   Основные настройки страницы
   ========================================================== */

body {

    font-family: Arial, Helvetica, sans-serif;

    background: #f5f6fa;

    color: #333333;

    line-height: 1.6;

}


/* ==========================================================
   Контейнер
   ========================================================== */

main {

    width: 95%;

    max-width: 1400px;

    margin: auto;

}


/* ==========================================================
   Шапка сайта
   ========================================================== */

header {

    background: #1976d2;

    color: white;

    text-align: center;

    padding: 40px 20px;

    margin-bottom: 30px;

}


header h1 {

    font-size: 40px;

    margin-bottom: 15px;

}


header p {

    font-size: 18px;

}


/* ==========================================================
   Поиск
   ========================================================== */

.search {

    margin-bottom: 35px;

    text-align: center;

}


#search {

    width: 100%;

    max-width: 600px;

    padding: 14px 18px;

    border: 2px solid #dddddd;

    border-radius: 12px;

    font-size: 17px;

    outline: none;

    transition: .3s;

}


#search:focus {

    border-color: #1976d2;

}


/* ==========================================================
   Сетка карточек
   ========================================================== */

.grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));

    gap: 25px;

}


/* ==========================================================
   Карточка
   ========================================================== */

.card {

    background: white;

    border-radius: 16px;

    overflow: hidden;

    box-shadow: 0 6px 18px rgba(0,0,0,.08);

    transition: .25s;

}


.card:hover {

    transform: translateY(-8px);

    box-shadow: 0 12px 25px rgba(0,0,0,.15);

}


/* ==========================================================
   Ссылка занимает всю карточку
   ========================================================== */

.card a {

    display: block;

    text-decoration: none;

    color: inherit;

    padding: 25px;

}


/* ==========================================================
   Логотип
   ========================================================== */

.card img {

    display: block;

    width: 72px;

    height: 72px;

    object-fit: contain;

    margin: auto;

    margin-bottom: 18px;

}


/* ==========================================================
   Заголовок карточки
   ========================================================== */

.card h2 {

    text-align: center;

    font-size: 22px;

    margin-bottom: 12px;

}


/* ==========================================================
   Описание
   ========================================================== */

.card p {

    text-align: center;

    color: #666;

    font-size: 15px;

}

/* ==========================================================
   Подвал сайта
   ========================================================== */

footer {

    margin-top: 60px;

    padding: 30px 20px;

    background: #1976d2;

    color: white;

    text-align: center;

    font-size: 15px;

}


/* ==========================================================
   Кнопка "Наверх"
   ========================================================== */

#toTop {

    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 50px;

    height: 50px;

    border: none;

    border-radius: 50%;

    background: #1976d2;

    color: white;

    font-size: 22px;

    cursor: pointer;

    display: none;

    box-shadow: 0 5px 15px rgba(0,0,0,.25);

    transition: .3s;

}


#toTop:hover {

    background: #125ea8;

    transform: scale(1.08);

}


/* ==========================================================
   Анимация появления карточек
   ========================================================== */

.card {

    animation: fadeUp .5s ease;

}


@keyframes fadeUp {

    from {

        opacity: 0;

        transform: translateY(25px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}


/* ==========================================================
   Красивый градиент в шапке
   ========================================================== */

header {

    background: linear-gradient(135deg,#1976d2,#0d47a1);

}


/* ==========================================================
   Плавная анимация всех элементов
   ========================================================== */

button,
input,
a,
.card {

    transition: all .25s ease;

}


/* ==========================================================
   Адаптивность
   ========================================================== */

@media (max-width:992px){

    header h1{

        font-size:34px;

    }

    .grid{

        grid-template-columns:repeat(auto-fit,minmax(210px,1fr));

    }

}


@media (max-width:768px){

    header{

        padding:30px 15px;

    }

    header h1{

        font-size:30px;

    }

    header p{

        font-size:16px;

    }

    .card{

        border-radius:12px;

    }

    .card a{

        padding:20px;

    }

}


@media (max-width:480px){

    header h1{

        font-size:26px;

    }

    header p{

        font-size:15px;

    }

    #search{

        font-size:16px;

        padding:12px;

    }

    .grid{

        grid-template-columns:1fr;

    }

    .card img{

        width:64px;

        height:64px;

    }

}


/* ==========================================================
   Темная тема
   ========================================================== */

@media (prefers-color-scheme: dark){

    body{

        background:#121212;

        color:#eeeeee;

    }

    .card{

        background:#1d1d1d;

    }

    .card p{

        color:#bbbbbb;

    }

    #search{

        background:#202020;

        color:white;

        border-color:#444;

    }

    footer{

        background:#0d47a1;

    }

}


/* ==========================================================
   Плавная прокрутка страницы
   ========================================================== */

html{

    scroll-behavior:smooth;

}


/* ==========================================================
   Выделение текста
   ========================================================== */

::selection{

    background:#1976d2;

    color:white;

}

