:root {
    /* Цвета */
    --color-text-primary: #E4E4E4;
    --color-text-secondary: #76767A;
    --color-text-gray: #C2C2C2;
    --color-text-gray-second: #5C5C5C;
    --color-bg-dark: #000000;

    --max-content-width: 1524px;
    --padding-container-horizontal: 33px;
    --padding-header-top: 39px;
    --padding-header-bottom: 48px;
    --footer-margin-bottom: 61px;

    --border-color: #76767A;
    --border-thickness: 0.5px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    position: relative;
    background: var(--color-bg-dark);
    /*background-image: url('../assets/images/alisa-bg.jpg');*/
    /*background-repeat: no-repeat;*/
    /*background-position: center right;*/
    /*background-size: contain;*/

    font-family: 'Inter', sans-serif;
    color: var(--color-text-primary);
}

body::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    max-width: 57%;
    background-image: url('../assets/images/alisa-bg-orig.jpg');
    background-repeat: no-repeat;
    background-position: center 36%;
    background-size: cover;
    z-index: -1;
}

.wr{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container{
    margin: 0 auto;
    max-width: var(--max-content-width);
    padding: 0 var(--padding-container-horizontal);
    width: 100%;
}

header{
    border-bottom: var(--border-thickness) solid var(--border-color);
}

.header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--padding-header-top) 0 var(--padding-header-bottom);
}

.header-links{
    display: flex;
    gap: 32px;
}

.header-links a{
    font-size: 18px;
    font-weight: 500;
    line-height: 130%;
    color: var(--color-text-primary);
    text-transform: uppercase;
    text-decoration: none;

    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.header-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: var(--border-thickness);
    background-color: var(--color-text-primary);

    transform: scaleX(1);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.header-links a:hover{
    color: var(--color-text-secondary);
}

.header-links a:hover::after {
    background-color: var(--color-text-secondary);
}

main{
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.main{
    display: flex;
    flex-direction: column;
    gap: 62px;
}

.org{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.org-title{
    font-size: 20px;
    line-height: 130%;
    color: var(--color-text-secondary);
    text-transform: uppercase;
}

.org-contact,
.org-phone a,
.org-name{
    color: var(--color-text-gray);
}

.org-contact{
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 32px;
    line-height: 120%;
}

.org-phone a{
    text-decoration: none;
}

.artist{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.artist-logo{
    height: fit-content;
}

.artist-title{
    font-family: 'Poppins', sans-serif;
    font-size: 54px;
    font-weight: 500;
    line-height: 120%;
}

.socials{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.socials-item{
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-item-icon{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid var(--border-color);
}

.social-item-link a{
    font-size: 20px;
    font-weight: 500;
    line-height: 130%;
    color: var(--color-text-primary);
    text-transform: uppercase;
    text-decoration: none;

    position: relative;
    transition: color 0.3s ease;
}

.social-item-link a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: var(--border-thickness);
    background-color: var(--color-text-primary);

    transform: scaleX(1);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-item-link a:hover{
    color: var(--color-text-secondary);
}

.social-item-link a:hover::after {
    background-color: var(--color-text-secondary);
}

footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--footer-margin-bottom);
}

.footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright{
    font-size: 12px;
    line-height: 20px;
    color: var(--color-text-secondary);
}

.footer-photographer{
    font-size: 12px;
    line-height: 20px;
    color: var(--color-text-gray-second);
}

@media screen and (max-width: 1500px){
    :root{
        --footer-margin-bottom: 22px
    }

    .main{
        gap: 56px;
    }

    .org-contact{
        font-size: 28px;
    }

    .artist{
        gap: 20px;
    }

    .artist-logo{
        max-width: 600px;
    }

    .artist-title{
        font-size: 41px;
    }
}

@media screen and (max-width: 1070px){
    :root{
        --padding-container-horizontal: 24px;
        --padding-header-top: 30px;
        --padding-header-bottom: 32px;
    }

    body::after{
        max-width: 67%;
        background-position: 0% 36%;
    }

    .header-links a{
        font-size: 16px;
    }

    .org-title{
        font-size: 15px;
    }

    .org-contact{
        font-size: 22px;
    }

    .artist{
        gap: 15px;
    }

    .artist-logo{
        max-width: 351px;
    }

    .artist-title{
        font-size: 25px;
    }

    .socials{
        gap: 18px;
    }

    .social-item-icon{
        width: 26px;
        height: 26px;
    }

    .social-item-link a{
        font-size: 16px;
    }
}

@media screen and (max-width: 700px){
    .main{
        gap: 36px;
    }

    .org{
        gap: 8px;
    }

    .org-title{
        font-size: 12px;
    }

    .org-contact{
        font-size: 18px;
    }

    .artist-logo{
        max-width: 286px;
    }

    .artist-title{
        font-size: 22px;
    }

    .social-item-link a{
        font-size: 14px;
    }
}

@media screen and (max-width: 620px){
    :root{
        --padding-container-horizontal: 16px;
        --padding-header-top: 20px;
        --padding-header-bottom: 20px;
        --footer-margin-bottom: 20px
    }

    body::after{
        max-width: 100%;
        max-height: 347px;
        background-position: center 36%;
    }

    main{
        flex-grow: unset;
        margin-top: 316px;
        padding-bottom: 100px;
    }

    .header-logo a svg{
        max-width: 85px;
    }

    .header-links{
        gap: 20px;
    }

    .header-links a{
        font-size: 8px;
    }

    footer{
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
    }

    .footer{
        flex-wrap: wrap;
        gap: 4px;
    }

    .footer-copyright,
    .footer-photographer{
        color: var(--color-text-secondary);
    }

    .footer-photographer{
        order: -1;
    }
}