@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Light.ttf');
    font-weight: 400;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color .3s ease;
}

html {
    font-family: 'Roboto';
    background-color: #f4f1ec;
    font-size: 16px;
    color: #362420;
}

h1,
h2,
h3 {
    font-weight: 400;
    line-height: 100%;
}

.container {
    max-width: 1232px;
    padding: 0 16px;
    margin: 0 auto;
}

.header {
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 3;
    background-color: #f4f1ec;

}

.logo-wrapper {
    display: block;
    width: 205px;
    height: 60px;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
	border-bottom: 1px solid #362420;
	padding-bottom:13px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-nav__item {
    font-size: 20px;
    position: relative;
}

.header-nav__item::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 1px;
    background-color: #362420;
    width: 0;
    transition: width .5s ease;
    opacity: .6;
}

.header-nav__item:hover::after {
    width: 100%;
}

section:not(.hero) {
    padding: 60px 0;
}

.hero {
    max-width: 1232px;
    margin: 0 auto;
    margin-top: 10px;
}

.hero-content {
    min-height: 640px;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
    z-index: 1;
    display: flex;
    align-items: center;

}

.hero-content::after {
    position: absolute;
    content: '';
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    z-index: -1;
    background: linear-gradient(to right, #ece7e1 40%, #36242000 90%);
}

.hero-content__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content__info {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 20px;
    position: relative;
    padding: 30px;
    max-width: 540px;
}

.hero-title {
    font-size: 47px;
    text-transform: uppercase;
}

.hero-text {
    font-size: 18px;
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    font-size: 18px;
    text-transform: uppercase;
    height: 60px;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color .3s ease, border .3s ease;
}

.btn_primary {
    background-color: #f6726d;
    color: #f4f1ec;
}

.btn_primary:hover {
    background-color: #5C242E;
}

.btn_second {
    background-color: #f4f1ec;
    border: 1px solid #362420;
}

.btn_second:hover {
    background-color: #362420;
    color: #f4f1ec;

}

.hero-btns .btn {
    flex-grow: 2;
}

.hamburger {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    border: 2px solid #362420;
    cursor: pointer;
    align-items: center;
    flex-shrink: 0;
    justify-content: center;
}

.hamburger::after {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    content: '';
    display: block;
    background: url('../img/menu.svg') 50% / contain no-repeat;
}

.hamburger.is-open {
    background-color: #362420;
}

.hamburger.is-open::after {
    background: url('../img/close.svg') 50% / contain no-repeat;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    overflow-y: auto;
    right: 0;
    left: 0;
    z-index: 2;
    background-color: #20202000;
    pointer-events: none;
    transition: background-color .6s ease;
    overflow: hidden;
}

.mobile-menu.is-open {
    pointer-events: all;
    background-color: #2020205d;

}

.mobile-menu__content {
    width: 100%;
    max-width: 450px;
    background-color: #ece7e1;
    height: 100%;
    margin-left: auto;
    padding: 62px 0px 30px;
    transform: translateX(100%);
    transition: transform .3s ease;

}

.mobile-menu.is-open .mobile-menu__content {
    transform: translateX(0);
}

.mobile_nav {
    display: flex;
    flex-direction: column;
}

.mobile-nav__item {
    font-size: 18px;
    text-align: center;
    padding: 16px;
    border-bottom: 1px solid #36242059;
    transition: background-color .3s ease, color .3s ease;

}

.mobile-nav__item:hover {
    background-color: #362420;
    color: #f4f1ec;
}

.mobile-nav__item:first-child {
    border-top: 1px solid #36242059;

}

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

.section-title {
    text-align: center;
    font-size: 30px;
}

.prices-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.prices-containerss {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
}

.prices-item {
    display: flex;
	cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
    padding: 22px 33px;
    border-radius: 15px;
    background-color: #362420;
    color: #fff;
    border: 1px solid #362420;
    transition: transform .3s ease, background-color .3s ease;
}

.prices-item:hover {
    transform: translateY(-5px);
    background-color: #362420c0;

}

.prices-item__title {
    font-size: 16px;
	line-height: 1.5;
}

.prices-item__price {
    font-size: 28px;
}
.works-contaier {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 24px;

}
.work-item {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
}
.work-item:hover img {
    transform: scale(1.05);
}
.work-item img {
    width: 100%;
    height: 100%;
    transition: transform .8s ease;

    object-fit: cover;
}
.accnet-bg {
    background-color: #ece7e1;
}
.footer {
    padding: 40px 0;
    background-color: #362420;
    color: #ece7e1;
}
@media (max-width:1100px) {
    .hero-content {
        border-radius: 0;
        min-height: 500px;
    }

    .hero-title {
        font-size: 50px;
    }

    .hero-text {
        font-size: 20px;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
        gap: 8px;
    }

    .btn {
        height: 48px;
        font-size: 16px;
    }

    .hero-content__info {
        max-width: 410px;
        padding: 16px;
    }

    .hero {
        margin-top: 0;
    }

    .prices-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
        .works-contaier {
    gap: 10px;

}
}

@media (max-width:1000px) {
    .prices-container {
        grid-template-columns: repeat(3, 1fr);
    }

    section:not(.hero) {
        padding: 30px 0;
    }
}

@media (max-width:900px) {

    .logo-wrapper {
        width: 140px;
        height: 42px;
    }

    .header-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: flex;

    }
    .works-contaier {
    grid-template-columns: repeat(3,1fr);

}
}

@media (max-width:750px) {
    .works-contaier,
    .prices-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 26px;
    }

    .flex-column {
        gap: 30px;
    }
}

@media (max-width:650px) {
    .hero-content {
        min-height: 500px;
        align-items: start;
    }

    .hero-title {
        font-size: 40px;
        max-width: 360px;
    }

    .hero-content__info {
        max-width: none;
        gap: 10px;
    }

    .hero-content::after {

        background: linear-gradient(to bottom, #ece7e1 10%, #36242000 90%);
    }
}

@media (max-width:550px) {
    .works-contaier,
    .prices-container {
        grid-template-columns: 1fr;
    }
}