
* {
    padding: 0;
    margin: 0;
    font-family: "Cinzel", sans-serif;
}

body {
    -webkit-overflow-scrolling: touch;
}


@font-face {
    font-family: 'Cinzel';
    src: url('fonts/Cinzel/Cinzel-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter/Inter-VariableFont_slnt,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}


section {
    margin-bottom: 120px;
}

h1 {
    color: #FFF;
    font-size: 72px !important;
    font-style: normal;
    font-weight: 400 !important;
    line-height: normal !important;
    margin-bottom: 0 !important;
}


h2 {
    color: #211F1F;
    font-size: 36px !important;
    font-style: normal;
    font-weight: 400 !important;
    line-height: normal !important;
    margin-bottom: 10px !important;
}

h3 {
    color: #211F1F;
    font-size: 32px !important;
    font-style: normal;
    font-weight: 800 !important;
    line-height: normal !important;
    margin-bottom: 10px !important;
}

h4 {
    color: #FFF;
    font-size: 48px !important;
    font-style: normal;
    font-weight: 400 !important;
    line-height: normal !important;
    margin-bottom: 0 !important;
}


p {
    color: #231F20;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
    margin-bottom: 0 !important;
}

header {
    position: relative;
    overflow: hidden;
    padding-top: 30px;
    margin-bottom: 120px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /*
    background-image: url("img/head-cover.png");
    */
}


.mobile-header-menu {
    display: flex;
    justify-content: end;
    align-items: center;
}


.mobile-menu {
    position: absolute;
    top: 0;
    height: 100%;
    padding: 250px 0 0;
    left: 0;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    z-index: 80;
    transition: background 0.6s ease,
    outline 0.6s ease;
    outline: 0 solid rgba(33, 31, 31, 0);
    background: rgba(33, 31, 31, 0);

}

.mobile-menu li a {
    color: #FFF;
    text-align: right;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 42px;
    text-decoration: none;
}


#menu-toggle ~ .mobile-menu li {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    text-align: end;
}

#menu-toggle:checked ~ .mobile-menu {
    background: rgba(33, 31, 31, 0.96);
    outline: 500px solid rgba(33, 31, 31, 0.96);
}

#menu-toggle:checked ~ .mobile-menu li {
    max-height: 500px;
    padding: 10px 0;
}

.mobile-menu > li {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0.5em 0;
    width: 100%;
    color: #FEFEFE;
}

.mobile-menu li .custom-button-div {
    height: 100%;
    display: flex;
    justify-content: end;
    align-items: end;

}

.mobile-menu li .info-head-links {
    display: grid;
    gap: 18px 0;
}

.mobile-menu li .info-head-links a {
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
    display: flex;
    align-items: center;
    gap: 0 6px;
}


.menu-button-container {
    position: relative;
    display: flex;
    height: 26px;
    width: 34px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 151;
}

#menu-toggle {
    display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
    display: block;
    background-color: #FEFEFE;
    position: absolute;
    height: 3px;
    width: 34px;
    transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 2px;
}

.menu-button::before {
    content: '';
    margin-top: -10px;
}

.menu-button::after {
    content: '';
    margin-top: 10px;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
    margin-top: 0;
    transform: rotate(405deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
    background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
    margin-top: 0;
    transform: rotate(-405deg);
}


.header-logo-a {
    display: flex;
    align-items: center;
    height: 100%;
    z-index: 150;
    position: relative;

}

.head-phone {
    font-family: Inter;
    color: #D9D9D9;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    text-decoration: none;
    margin-right: 20px;
    display: flex;
    align-items: center;
    gap: 0 6px;
    position: relative;
    z-index: 150;
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
}

.head-phone:hover {
    color: #FEFEFE;
}

.head-phone.hide {
    opacity: 0;
    transform: translateX(40px);
    visibility: hidden;
    pointer-events: none;
}

header .cover-text {
    margin: 150px auto 240px;
    max-width: 820px;
    text-align: center;
}

.lines {
    margin-top: 30px;
    display: grid;
    gap: 20px 0;
    justify-content: center;
}

.lines .long {
    width: 220px;
    background: #EDE9E0;
    height: 1px;
    margin: 0 auto;
}

.lines .short {
    width: 110px;
    background: #EDE9E0;
    height: 1px;
    margin: 0 auto;
}

.custom-button {
    display: block;
    padding: 17px 35px;
    background-color: #928163;
    min-width: 300px;
    max-width: fit-content;
    color: #FFF;
    text-align: center !important;
    font-size: 18px !important;
    font-style: normal;
    font-weight: 400;
    line-height: 30px !important;
    text-decoration: none;
    border: none;
    transition: font-size 0.3s ease;

}

.custom-button:hover {
    color: #FFF;
    background-color: #2B2822;
    font-size: 20px !important;
}


.text-div {
    max-width: 704px;
    text-align: center;
}

.text-div .lines {
    margin: 0 auto 30px;
}

.strong.lines div {
    background-color: #928163;
}

.text-div .custom-button {
    margin: 15px auto 0;
}

.celebrations-section {
    background-color: #F5F4F0;
}

.celebrations-section .celebrations-text {
    padding: 50px 0;
    display: grid;
    gap: 10px;
    max-width: 620px;
}

.celebrations-section .celebrations-text h2 {
    margin-bottom: 0 !important;
}

.celebrations-section .celebrations-text .custom-button {
    margin-top: 5px;
}

.center-text-section .lines {
    margin: 24px auto 30px;
}


.center-text-section .col-lg-7 p {
    max-width: 704px;
    margin: 0 auto;
}

.hall-row {
    justify-content: center;
    gap: 24px 0;
}

.hall-row .custom-button.more {
    margin: 0 auto;
}

.hall-div {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.hall-div .small-img {
    width: 100%;
    transition: transform 0.4s ease;
}

.hall-div .small-text {
    color: #FFF;
    text-align: center;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 0;
    padding: 0 6px;
    width: 100%;
    transition: transform 0.4s ease, font-size 0.4s ease;

}

.hall-div:hover .small-img {
    transform: scale(1.05); /* նկարը մի փոքր մեծանում է */
}

.hall-div:hover .small-text {
    font-size: 34px; /* տեքստի չափը մեծանում է */
    transform: translateX(-50%) scale(1.05); /* մի փոքր փափկեցված էֆեկտ */
}

.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
    background-color: #F5F4F0 !important;
    border: none !important;
    border-radius: unset !important;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.15);
    margin: 5% auto;
    padding: 0 30px 50px;
    max-width: 780px;
    text-align: center;
}

.modal-content img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.modal-content h6 {
    color: #231F20;
    text-align: center;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 0;
}

.modal-content .lines {
    margin: 20px auto 24px;
}

.modal-content .custom-button {
    margin: 20px auto 0;
}

.close {
    position: absolute;
    top: 0;
    right: 8px;
    color: black;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}


.owned-section {
    background-image: url("img/owned-back.png");
    background-position: left top;
    background-repeat: no-repeat;
}

.owned-section .cover-text {
    padding: 160px 0;
    max-width: 620px
}

.owned-section .cover-text h4 {
    color: #28261A;
    margin-bottom: 24px !important;
}

.owned-section .cover-text .line {
    display: flex;
    align-items: center;
    gap: 0 24px;
}

.owned-section .cover-text .line div {
    background-color: #928163;
    width: 0.5px;
    height: 80px;
}


.owned-section .cover-text .line h5 {
    max-width: 580px;
    color: #28261A;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 0;
}

.owned-section .owned-img {
    width: 100%;
    margin-top: 38px;
}


.center-text-section.beige {
    background-color: #F5F4F0;
    padding: 120px 0;
}

.icons-row {
    margin-top: 40px !important;
    gap: 0 50px;
    justify-content: center;
}

.icons-row .icons {
    text-align: center;
}

.icons-row .icons p {
    margin-top: 16px;
    font-family: Cinzel;
    font-weight: 400;
}


.hall.hidden {
    display: none;
}

.auto-slide-section {
    overflow: hidden;
}

.auto-slide img {
    margin-top: 20px;
    width: 100%;
}

.auto-slide .slick-arrow {
    top: -3%;
    width: 59px;
    height: 16px
}

.auto-slide .slick-arrow.slick-next {
    right: 0;
}

.auto-slide .slick-arrow.slick-prev {
    left: unset;
    right: 6%;
}

.auto-slide .slick-arrow:hover svg path {
    fill: #928163;
}

.auto-slide .slick-arrow:before {
    display: none;
}


#review-slide {
    margin-top: 56px;
    position: relative;
}


#review-slide .review {
    display: flex;
    flex-direction: column;
    gap: 26px 0;
    max-width: 406px;
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
}

/*#review-slide .review p {*/
/*    display: -webkit-box;*/
/*    -webkit-line-clamp: 3; !* Քանի տող պահի *!*/
/*    -webkit-box-orient: vertical;*/
/*    overflow: hidden;*/
/*    text-overflow: ellipsis;*/
/*    max-height: 4.8em; !* Հարմարեցնել՝ ըստ տողային բարձրության *!*/
/*    transition: max-height 0.3s ease;*/
/*}*/

/*#review-slide .review p.expanded {*/
/*    -webkit-line-clamp: unset;*/
/*    max-height: none;*/
/*}*/

#review-slide .review .read-more-link {
    color: #928163;
    font-family: Inter;
    cursor: pointer;
    display: inline;
    white-space: nowrap;
}

#review-slide .review svg {
    margin: 0 auto;
}

#review-slide .review .line {
    margin: 0 auto;
    max-width: 375px;
    width: 100%;
    height: 0.5px;
    background-color: #928163;
}

#review-slide a {
    color: #928163;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 0;
    text-underline-offset: 5px;
}

#review-slide .slick-arrow {
    top: 110%;
    width: 59px;
    height: 16px
}

#review-slide .slick-arrow.slick-next {
    right: 40%;
}

#review-slide .slick-arrow.slick-prev {
    left: 40%;
}

#review-slide .slick-arrow:hover svg path {
    fill: #928163;
}

#review-slide .slick-arrow:before {
    display: none;
}

.center-text-section.cover {
    /*background-image: url("img/custom-menus.png");*/
    background-repeat: no-repeat;
    background-size: 100%;
}

.center-text-section.cover .cover-div {
    margin-top: 378px;
    padding: 80px 20px 54px;
    background-color: #F5F4F0;
}

.center-text-section.cover .cover-div p {
    max-width: 704px;
    margin: 0 auto;
}

.center-text-section.cover .cover-div .custom-button {
    margin: 25px auto 0;
}


.tab-content-row {
    gap: 24px 0;
    margin-top: 60px !important;
}

.center-text-section .col-lg-7 .tab-content-row p {
    margin: 0;
}

.tab-content-row label {
    color: #231F20;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 12px;
}


.tab-content-row input {
    border: none;
    border-bottom: 1px solid #928163;
    background: transparent;
    color: #231F20 !important;
    font-family: Inter;
    font-size: 16px !important;
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
    padding: 14px 0;
    outline: none;

    width: 100%;
}

.tab-content-row input::placeholder {
    color: #231F20 !important;
    font-family: Inter;
    font-size: 16px !important;
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
    opacity: 0.5;

}


#error-message {
    margin-top: 10px;
    text-align: center;
    color: red;
    font-size: 16px;
    font-weight: 700;
}

#thank-you {
    margin-top: 10px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
}

footer .head {
    background-image: url("img/footer.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 40px 0 80px;
}

footer .head .footer-logo-line div {
    margin: 34px 0;
    width: 100%;
    height: 0.5px;
    background-color: #928163;
}

footer .head .first {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

footer .head .info-head-links {
    display: grid;
    gap: 18px 0;
}

footer .head .line h5 {
    color: #928163;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 10px;
}

footer .head .line div {
    max-width: 150px;
    width: 100%;
    height: 0.5px;
    background-color: #928163;
}

footer .head .info-head-links a {
    display: flex;
    gap: 0 6px;
    color: rgba(0, 0, 0, 0.50);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
    text-decoration: none;
}

footer .head .info-head-links p {
    color: rgba(0, 0, 0, 0.50);
}


.social-icons-div {
    gap: 0 12px;
}

.social-icons-div a:hover svg path {
    fill: #2B2822;
}

.social-icons-div a {
    text-decoration: none;
}

footer .head .events-host {
    display: grid;
    gap: 6px 0;
}


footer .foot p {
    padding: 18px 0;
    color: #676767;
}


@media screen and (min-width: 1600px) {
    .max-container {
        max-width: 1388px !important
    }
}


@media screen and (max-width: 1399px) {
    .icons-row {
        gap: 0 30px;
    }

    .auto-slide .slick-arrow.slick-prev {
        right: 8%;
    }

    .center-text-section.cover .cover-div {
        margin-top: 200px;
    }


}

@media screen and (max-width: 1200px) {
    .owned-section .cover-text {
        padding: 76px 0 0;
    }

}

@media screen and (max-width: 991px) {

    header .custom-button-div {
        padding-bottom: 30px;
        border-bottom: 0.5px solid rgba(237, 233, 224, 0.40);
    }

    .mobile-menu {
        padding-top: 150px;
    }

    header .info-head-links {
        margin-top: 30px;
    }

    .icons-row {
        margin-top: 20px !important;
        gap: 24px 0;
    }

    .auto-slide .slick-arrow.slick-prev {
        right: 12%;
    }

    .center-text-section.cover .cover-div {
        margin-top: 140px;
    }

    .head .container > .row {
        gap: 40px 0;
    }

    .head .social-icons-div {
        justify-content: center;
        margin-top: 70px;
    }
}

@media screen and (max-width: 767px) {

    .auto-slide .slick-arrow.slick-prev {
        right: 14%;
    }

    #review-slide .slick-arrow.slick-next {
        right: 36%;
    }

    #review-slide .slick-arrow.slick-prev {
        left: 36%;
    }
}

@media screen and (max-width: 575px) {
    h1 {
        font-size: 48px !important;
    }

    h2 {
        font-size: 28px !important;
    }

    h3 {
        font-size: 22px !important;
    }

    h4 {
        font-size: 32px !important;
    }


    header {
        margin-bottom: 70px;
    }

    section {
        margin-bottom: 70px;
    }


    header .header-logo-a {
        position: absolute;
        top: 30px;
        left: 50%;
        transform: translateX(-50%);
        height: auto;
    }

    header .cover-text {
        margin: 190px 0 204px;
    }

    header .lines {
        margin-top: 30px;
    }

    #menu-toggle:checked ~ .mobile-menu li {
        padding: 6px 0;
    }

    .mobile-menu li a {
        font-size: 24px;
        line-height: 34px;
    }

    .mobile-menu li .info-head-links a {
        font-size: 14px;
        line-height: 24px;
        align-items: unset;
        text-align: start;
    }

    .celebrations-section .celebrations-text {
        padding: 70px 0 40px;
    }

    .modal-content h6 {
        font-size: 22px;
    }

    .owned-section {
        overflow: hidden;
    }

    .owned-section h4 {
        font-size: 28px !important;
        line-height: normal !important;
        margin-bottom: 20px !important;
    }

    .owned-section .cover-text .line h5 {
        font-size: 22px;
    }

    .owned-section .cover-text .line {
        gap: 0 16px;
    }

    .owned-section .owned-img {
        margin-top: 28px;
        width: 103%;
    }

    .center-text-section.beige {
        padding: 70px 0;
    }


    .auto-slide .slick-list.draggable {
        overflow: visible;
        padding-left: 0 !important;
    }

    .auto-slide .slick-arrow {
        top: -15%;
    }

    .auto-slide .slick-slide {
        margin-right: 12px;
    }

    .auto-slide img {
        margin-top: 10px;
    }

    .auto-slide .slick-arrow.slick-prev {
        right: 16%;
    }

    #review-slide {
        margin-top: 30px;
    }

    .center-text-section.cover {
        margin-top: 120px;
        background-size: 150%;
        background-position: 34% top;
    }

    .center-text-section.cover .cover-div {
        padding: 40px 16px;
    }


    .tab-content-row {
        margin-top: 20px !important;
    }

    footer .head {
        padding: 70px 0 30px;
    }

    footer .head .info-head-links a {
        font-size: 14px;
        line-height: 24px;
    }

    footer .foot p {
        font-size: 12px;
        line-height: 24px;
    }
}


@media screen and (max-width: 500px) {
    #review-slide .slick-arrow.slick-next {
        right: 33%;
    }

    #review-slide .slick-arrow.slick-prev {
        left: 33%;
    }
}

@media screen and (max-width: 420px) {

    header {
        background-image: url("https://impressions.codexg.com/wp-content/uploads/2025/05/Group-104.png") !important;
    }

    .auto-slide .slick-arrow.slick-prev {
        right: 20%;
    }

    #review-slide .slick-arrow.slick-next {
        right: 31%;
    }

    #review-slide .slick-arrow.slick-prev {
        left: 31%;
    }
}


