/* System */
:root {
    --black: #1e1e1e;
    --white: #ffffff;
    --grey-dark: #bdbdbd;
    --grey-light: #d9d9d9;
    --yellow: #e4d443;
}
.black {
    background-color: var(--black) !important;
}
.white {
    background-color: var(--white);
}
.yellow {
    background-color: var(--yellow);
}
.grey-light {
    background-color: var(--grey-light);
}
.white-stripe {
    width: 100%;
    height: 2px;
    background-color: var(--white);
}
.transparent {
    background-color: transparent;
}
.text-md-uppercase {
    text-transform: uppercase;
}
@media (max-width: 767.98px) {
    .text-md-uppercase {
        text-transform: none;
    }
}

/* General */
body {
    background-color: var(--grey-dark) !important;
    font-family: 'Trap', sans-serif !important;
    font-weight: 400 !important;
}

h1 {
    font-size: 10em !important;
    text-align: center;
    text-transform: uppercase;
}
h2 {
    font-size: 80px !important;
    text-align: left;
    text-transform: uppercase;
}
h3 {
    font-size: 30px !important;
    text-align: left;
    font-weight: 700 !important;
}
h5 {
    text-transform: uppercase;
}

input {
    background-color: transparent;
    border: 2px solid var(--white);
    border-radius: 20px;
    color: var(--white);
}
input:focus, button:focus{
    outline: none !important;
    box-shadow: none !important;
}

.btn-custom {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    border-radius: 30px;
    text-transform: uppercase;
    font-size: 16px;
    max-width: 600px;
    text-decoration: none;
    font-weight: 700;
}
.btn-white {
    background-color: var(--white);
    color: var(--black);
    border: none;
}
.btn-wb-bt {
    background-color: transparent;
    color: var(--black);
    border: 2px solid var(--white);
}
.btn-wb-wt {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}
.btn-yb-yt {
    background-color: transparent;
    color: var(--yellow);
    border: 2px solid var(--yellow);
}
.badge-custom {
    display: inline-block;
    text-transform: uppercase;
    padding: 10px 40px;
    border-radius: 30px;
    font-size: 1rem;
    text-align: center;
    font-weight: 700;
}
.badge-desc {
    display: inline-flex;
    align-items: center;
    justify-content: center; 
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 1rem;
    text-transform: uppercase;
    text-align: center;
    min-width: 80px;
}
.badge-black {
    background-color: var(--black);
    color: var(--white);
    border: none;
    text-decoration: none;
}
.badge-transparent {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    text-decoration: none;
}
.step-mobile-yellow, .step-mobile-black {
    width: 90px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}
.step-mobile-yellow {
    background-color: var(--yellow);
    color: var(--black);
}
.step-mobile-black {
    background-color: var(--black);
    color: var(--white);
}

/* Customs */
.number {
    color: var(--white);
    font-weight: 700;
    font-size: 20px;
}
.offcanvas {
    background-color: var(--black) !important;
    color: var(--white) !important;
}
.offcanvas a {
    color: var(--white) !important;
}
.close-button {
    background-color: transparent;
    border: none;
}

.custom-checkbox input[type="radio"] {
    display: none;
}
.custom-checkbox div {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.custom-checkbox label {
    position: relative;
    padding-top: 40px;
    font-size: 16px;
    cursor: pointer;
    user-select: none;
    width: 100%;
    text-align: center;
}
.custom-checkbox label::before {
    content: "";
    position: absolute;
    top: 0;
    width: 50px;
    height: 35px;
    background-color: transparent;
    border: 2px solid var(--white);
    border-radius: 40%;
    box-sizing: border-box;
    transition: background-color 0.3s, border-color 0.3s;
}
.custom-checkbox input[type="radio"]:checked + label::before {
    background-color: transparent;
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="34" height="20" viewBox="0 0 34 20" fill="none"%3E%3Cpath d="M31 3L17 17L3 3" stroke="%23E4D443" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/%3E%3C/svg%3E');
    background-size: 60% 60%;
    background-repeat: no-repeat;
    background-position: center;
}

.header {
    background-color: var(--grey-light);
    border: 2px solid var(--white);
    border-radius: 30px;
    padding: 13px 49px;
}
.header a {
    text-decoration: none;
    color: black;
    text-transform: uppercase;
    font-size: 20px;
}

.image-container {
    position: relative;
    max-height: 315px;
    overflow: hidden;
    border-radius: 30px;
}
.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
}
.summary {
    background-color: var(--yellow);
    border-radius: 30px;
}
.summary p {
    font-weight: 600;
}
.summary .main {
    font-weight: 700;
    font-size: 40px;
}
.about-us h3 {
    text-transform: uppercase;
    width: 100%;
    max-width: 500px;
}
.about-us p {
    color: var(--white);
    font-weight: 500;
    width: 100%;
    max-width: 500px;
}
.become-actor img {
    width: 100%;
}
.language-list p {
    text-transform: uppercase;
    font-weight: 500;
}
.shooting .transparent {
    border-radius: 30px;
    border: 2px solid var(--white);
    font-size: 30px;
    padding: 20px;
}
.shooting .photo {
    width: 100%;
    max-width: 320px;
    min-width: 300px;
    height: 100%;
}
.shooting img {
    height: 100%;
}
.shooting .desc {
    width: 100%;
    max-width: 320px;
    background-color: var(--grey-light);
    border: 2px solid var(--white);
    border-radius: 30px;
    height: 75px;
    font-weight: 500;
}
.shooting .black {
    border: none;
}
.stages-header {
    color: var(--white);
    text-transform: uppercase;
    border-radius: 30px;
    padding: 25px;
    margin-bottom: -30px;
}
.photo-div {
    background-image: url("../img/rectangle-530.png");
    background-size: cover;
    border-radius: 20px;
    background-position-x: 30%;
}

/* Accordion */
.accordion-item {
    background-color: transparent !important;
    border: 2px solid var(--white) !important;
    border-left: none !important;
    border-right: none !important;
    border-radius: 0 !important;
    padding: 10px; 
}
.accordion-button {
    padding: 0 !important;
    font-weight: 500;
}
.accordion-item button {
    background-color: transparent !important;
    border: none;
}

.accordion-body {
    color: var(--white) !important;
}

/* Footer */
.footer {
    background-color: var(--black);
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    color: var(--white);
}
.footer a {
    color: var(--yellow);
    text-decoration: none;
}
.footer h3 {
    font-size: 40px;
    text-transform: uppercase;
}
.footer h2 span, .footer h3 span{
    color: var(--yellow);
}


/* увеличение кнопок */


/* Основной контейнер для ссылок */
.header a {
    text-decoration: none; /* Убирает подчеркивание */


    transition: transform 0.3s ease, background-color 0.3s ease; /* Плавный переход для увеличения и смены цвета */
 
}

/* Стили при наведении на ссылку */
.header a:hover {
    transform: scale(1.1); /* Увеличиваем ссылку на 10% */

}



/* Основные стили для badge */
.badge-desc {

    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Плавный переход для увеличения и тени */
}



/* Стили при наведении на элемент badge */
.badge-desc:hover {
    transform: scale(1.03); /* Увеличивает элемент на 10% */
  
}

/* Основные стили для кастомной кнопки */
.btn-custom {

    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease; /* Плавный переход для анимации при наведении */
}

/* Черная кнопка с белым текстом и белой рамкой */


/* Эффекты при наведении */
.btn-custom:hover {
    transform: scale(1.03); /* Увеличивает кнопку на 10% */
  
}


