/*Подключение шрифтов*/
@font-face {
    font-family: Lucida_Bold;
    src: url(../fonts/lucidagrande_bold.ttf);
    font-weight: 900;
}
@font-face {
    font-family: Lucida_Regular;
    src: url(../fonts/lucidagrande.ttf);
    font-weight: normal;
}
/*Убираем отступы по умолчанию*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    overflow-y: scroll;
}
/*Стилизуем основное поле страницы*/
body {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column; 
    font-family: "Roboto";/*, 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Sans Unicode' */
    font-size: 17px;
    color: #ccc;
    background-color: rgb(1, 22, 37);

}
.afisha {
    display:flex;
    flex-direction: column;
    flex-grow: 1;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: 900;
    font-size: 60px;
    color: #ffffff;
    background-image: url('../images/afisha_bg.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
/*Стилизация всех ссылок на странице*/
.link {
    text-decoration: none;
    color: rgb(66, 130, 170);
}
.link:hover{
    color: #84bfc7;
}
/*Это блок-обертка с отступами*/
.wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 30px;
   /* background-color: rgba(0, 0, 0, 0.65); Цвет фона для отладки*/
}
/*Стилизация шапки сайта, вставка иконки заголовка*/
.header {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 80px;
    background-color: rgb(1, 22, 37);
    background-image: url('../images/lebwa-team-logo.webp');
    background-position: 5px center;
    background-size: 100px auto;
    background-repeat: no-repeat;
    border-bottom: 1px solid #fff;
    padding-left: 100px;
    padding-right: 50px;
    justify-content: flex-end;
    align-items: center;
    /*background-color: #bbb;   Цвет фона для отладки*/   
}
/*Кнопка меню для адаптива*/
.btnmenu {
    display: none;
    height: 50px;
    width: 50px;    
    cursor: pointer;
    font-weight: 900;
    font-size: 20px;
    color: #ccc;
    background-color: #bb7900;
    background-image: url('../images/icon_menu.svg');
    background-size: 32px 32px;
    background-position: center center;
    background-repeat: no-repeat;
    border: 0;
    border-radius: 10px;
}
.context-menu {
    display: none;
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    width: auto;
    min-width: 120px;
    max-width: 300px;
    top: 72px;
    right: 2px;
    padding: 10px;
    border-radius: 5px;
}
.context-menu-item {
 display: flex;
}
/*Стилизация основного меню*/
.mainmenu {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    align-self: flex-end;
    height: 100%;
    width: auto;  
    /*background-color: #ccc;   Цвет фона для отладки*/
    line-height: 100%;
}
.mainmenu ul {
    text-align: center;
}
.mainmenu ul li {
    display: inline-block;  
}
.mainmenu ul li a {
    display: block;
    height: 100%;
    width: auto;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 900;
    font-size: 20px;
    color: #ccc;
    user-select: none;
    /*background-color: #aaa    ;Цвет фона для отладки*/
}
.mainmenu ul li a:hover {
    color: #a3a3a3;
}
/*Блок с логотипом Мир Танков*/
.hero {
    display: flex;
    flex-direction: column;  
    height: 180px;
    width: 100%;
    min-width: 330px;
    margin: 0px;
    padding: 0px;
    background-image: url('../images/wot_logo.png');
    background-position: center ;
    background-size: auto 100%;
    background-repeat: no-repeat;
    border-bottom: 1px solid #fff;
    background-color: #000;/**/
}
/*Блок основного содержимого*/
.content {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    /*background-color: #a3a3a3;  Цвет фона для отладки*/
}
.content-block {
    display: flex;
    flex-direction: column;
    width: 100%;

}
div#top {
    height: auto;
    min-height: 100vh;
    padding: 0;
    background-color: rgb(1, 22, 37);
}
/*Блок информации о клане, стилизация картинки и текста*/
div#clan {
    height: auto;
    min-height: 100vh;
    padding: 0;
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.65) 30%, rgba(0, 0, 0, 0.65) 70%, rgba(0, 0, 0, 0.25)100%), url('../images/clan_block_bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    line-height: 150%;
    user-select: none;

    /*background-color: rgb(28, 129, 129);
    overflow: auto;*/
}
.clan-text {
    display: block;
/*    flex-direction: row;
    background-image: url('../images/emblem_195x195.png');
    background-size: 20vh 20vh;
    background-position: 10px 10px;
    background-repeat: no-repeat;
    padding-left: 30vh;
    padding-right: 40px;*/
}
.clan-text img {
    display: flex;
    float: left;
    width: 200px;
    height: 200px;
    margin-right: 30px;
}
.clan-info {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 0 auto;
    width: 100%;
    margin-top: 20px;
    display: flex;
    flex-direction: row;
}
.clan-info-p {
    display: flex;
    width: 50%;
    min-width: 250px;
    height: auto;
    padding: 20px;
    /*background-color: #fff;
    border: 1px solid #fff;
    box-sizing: border-box;*/
}
.clan-block p {
    margin-top: 30px;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-grow: 1;
}
/*Стилизация кнопки Вступить в клан*/
.btn-submit {
    display: flex;
    justify-content: center;
    align-items: center;   
    width: auto;
    height: 50px;
    margin-top: 30px;
    margin-left: 50%;
    transform: translateX(-50%);    
    text-transform: uppercase;
    background-color: #bb7900;
    font-weight: 900;
    color: #ccc;
    padding: 20px 20px;
    border: 0;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.5s ease;
}
.btn-submit:hover {
    background-color: #af3700;
}
div#galery {
    height: auto;
    min-height: 100vh;
    padding: 30px 20px;
    background: linear-gradient(to bottom,
        rgba(1, 11, 41, 0.85) 0%,
        /*rgba(2, 37, 78, 0.85) 25%,*/
        rgba(8, 54, 105, 0.85) 50%,
        /*rgba(2, 37, 78, 0.85) 75%,*/
        rgba(1, 11, 41, 0.85) 100%
        );
    user-select: none;
    color: #ccc;
}
/*----------------------------------------------------*/
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
    padding: 10px;
}

.card {
    margin: 10px;
    width: 200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    cursor: pointer;
}

.card:hover {
    box-shadow: 0px 0px 8px 8px rgba(57, 157, 240, 0.5);
}

.thumbnail {
    width: 100%;
    height: auto;
}

.description {
    padding: 10px;
    text-align: center;
    background-color: #fff;
}

.modal {
    display: none;
    position: fixed;
    z-index: 100;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    margin: auto;
    display: block;
    width: 90%;
    max-width: 1600px;
}

#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}
/*----------------------------------------------------*/
div#ts {
    /*height: auto;
    min-height: 100vh;*/
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    padding: 30px 20px;
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.75) 30%, rgba(0, 0, 0, 0.75) 70%, rgba(0, 0, 0, 0.25)100%), url('../images/ts_block_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
div#ts h2 {
    display: flex;
    margin-left: 50%; 
    transform: translateX(-50%);
    text-align: center;   
}
.ts-step {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    /*margin-top: 10px;*/
    padding: 30px;
}
.ts-step img {
    display: block;
    float: left;
    width: 150px;
    margin-right: 30px;
    margin-bottom: 20px;
}
div#contacts {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;/**/
    min-height: calc(100vh - 80px);
    padding: 30px 20px;
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.65) 30%, rgba(0, 0, 0, 0.65) 70%, rgba(0, 0, 0, 0.25)100%), url('../images/contact_block_bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    align-items: center;
}
.contact {
    display: flex;
    flex-direction: column;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 64px 64px;
    background-color: transparent;
    width: 100%;
    height: auto;
    min-height: 100px;
    margin-top: 30px;
    justify-content: center;
    /*align-items: center;*/
    padding-left: 100px;
}
div#email {
    background-image: url('../images/icon_email.png');
}
div#vkgroup {
    background-image: url('../images/icon_vk_contact.png');
}
div#teamspeak {
    background-image: url('../images/icon_teamspeak_contact.png');
}
.social {
    display:flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 32px;
    width: auto;
    margin-top: 5px auto;
    padding: 0px 20px;
}
.social-icon {
    display:flex;
    height: 30px;
    width: 30px;
    margin: 0px 10px;
    border: 1px solid #054a79;
    border-radius: 50%;
    background-position: center center;
    background-repeat: no-repeat;

}
div#mt {
    background-image: url('../images/icon_mt.png');
    background-size: 24px 24px;
}
div#lebwa {
    background-image: url('../images/icon_lebwa.png');
    background-size: 33px 33px;
}
div#vk {
    background-image: url('../images/icon_vk.png');
    background-size: 33px 33px;
}
div#lt1 {
    background-image: url('../images/emblem_195x195.png');
    background-size: 20px 20px;
}
.footer {
    display: flex;
    flex-direction: column;
    /*align-self: flex-end;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(1, 11, 41, 0.75) 15%, rgba(1, 25, 53, 0.75) 30%, rgba(2, 37, 78, 0.75) 50%, rgba(1, 25, 53, 0.75) 70%, rgba(1, 11, 41, 0.75) 85%, rgba(0, 0, 0, 0.75)100%);
    background-color: rgb(32, 22, 1);*/
    background-color: rgb(1, 22, 37);;
    width: 100%;
    height: 80px;
    border-top: 1px solid #fff;
    justify-content: center;
    align-items: center;
}
.footer p {
    display: flex;

    padding: 5px 20px;
    text-align: center;
    justify-content: center;
    font-size: 14px;
}
h1 {
    justify-self: center;
    text-align: center;
    font-weight: 900;
    font-size: 30px;
}
h2 {
    justify-self: center;
    text-align: left;
    font-weight: 900;
    font-size: 25px;
}
h3 {
    margin-top: 20px;
    text-align: left;
    font-weight: 900;
    font-size: 20px;
}
/*Добавляем точки для перехода*/
.dots-container {
    position: fixed;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);       
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: rgba(255, 255, 255, 1);
}

