/*Обнуление*/
*{padding:0;margin:0;border:0;}
*,*:before,*:after{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;}
:focus,:active{outline:none;}
a:focus,a:active{outline:none;}
nav,footer,header,aside{display:block;}
html,body{height:100%;width:100%;font-size:100%;line-height:1;font-size:14px;-ms-text-size-adjust:100%;-moz-text-size-adjust:100%;-webkit-text-size-adjust:100%;}
input,button,textarea{font-family:inherit;}
/*input::-ms-clear{display:none;}*/
button{cursor:pointer;}
button::-moz-focus-inner{padding:0;border:0;}
a,a:visited{text-decoration:none;}
a:hover{text-decoration:none;}
/*ul li{list-style:none;}*/
img{vertical-align:top;}
h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit;}
/*--------------------*/
body{
    font-family: "Roboto", serif;
    position: absolute;
}
body, html {
    overflow-x: hidden;
}
.wrapper{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
main{
    flex: 1;
}
header{
    background-image: url("../images/backall.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
#casheader{
    background-image: url("../images/casback.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.header--container{
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 20px 40px 20px;
    height: auto;
}
.header--container h1{
    color: #FFF;
    text-align: center;
    font-family: "Albert Sans", serif;
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
}
.header--container a{
    color:#FFF;
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    margin-left: 20px;
}
.header--navigation{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header--navigation button {
    --color: #FFDA32;
    font-family: inherit;
    display: inline-block;
    width: 8em;
    height: 2.6em;
    line-height: 2.5em;
    margin: 20px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border: 2px solid var(--color);
    transition: color 0.5s;
    z-index: 1;
    font-size: 17px;
    border-radius: 6px;
    font-weight: 500;
    color: var(--color);
    background: none;
}
.header--navigation button:before {
    content: "";
    position: absolute;
    z-index: -1;
    background: var(--color);
    height: 150px;
    width: 200px;
    border-radius: 50%;
}
.header--navigation button:hover {color: #fff;}
.header--navigation button:before {
    top: 100%;
    left: 100%;
    transition: all 0.5s;
}
.header--navigation button:hover:before {top: -30px;left: -30px;}
.header--navigationbutton:active:before {background: #FFDA32;transition: background 0s;}
#active{color:#FFDA32;}
.preview--container{
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
    height: auto;
}
.preview--container h2{
    color: #FFF;
    text-align: center;
    text-shadow: 0 5px 13px rgba(255, 255, 255, 0.40);
    font-size: 62px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    margin-bottom: 20px;
}
.preview--text{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-bottom: 150px;
}
.preview--container h4{
    color: #FFF;
    text-align: center;
    text-shadow: 0 1px 20px #FFF;
    font-size: 21px;
    font-style: normal;
    font-weight: 700;
    line-height: 25px;
    display: flex;
    width: 530px;
    height: auto;
}
.search-box {
    display: flex;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    align-items: center;
    gap: 10px;
    height: 90px;
}
.input-group {
    display: flex;
    align-items: center;
    background: #f1f1f1;
    padding: 10px;
    border-radius: 30px;
    flex: 1;
    height: 60px;
}
.icon {margin-right: 8px;font-size: 16px;}
.search-box input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    width: 100%;
}
.search-btn {
    width: 150px;
    height: 54px;
    flex-shrink: 0;
    border-radius: 40px;
    background: #FFDA32;
    box-shadow: 0 8px 20px 0 rgba(255, 218, 50, 0.50);
}
/*--------------------*/
/*--------------------*/
.content{
    padding-bottom: 50px;
}
.title-text{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 70px;
}
.title-h1{
    text-align: center;
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 40px;
    max-width: 750px;
    color: #041562;
}
#golf-h1{
    max-width: 950px;
}
.title-p{
    text-align: center;
    color: black;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 27.68px;
    max-width: 1200px;
    margin-bottom: 20px;
}
.content--container{
    max-width: 1300px;
    margin: 0 auto;
    padding: 70px 0 0 0;
}
.content--block{
    background: white;
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.2);
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin: 0 20px 20px 20px;
}
.content--block_images{
    margin-right: 50px;
}
.content--block_images h2{
    color: #041562;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 1.8px;
}
.hotelsphoto{
    max-width: 360px;
    height: auto;
    width: 1550px;
    max-height: 300px;
    min-width: 360px;
    min-height: 230px;
}
.rating{
    max-width: 100%;
    height: auto;
    width: 100px;
    max-height: 35px;
    margin-bottom: 20px;
}
.content--block_info{
    color: #696969;
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.26px;
}
.content--block_info__location{
    margin-bottom: 20px;
}
.content--block_info__text{
    margin-bottom: 30px;
}
.content--block_info__facilities{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.content--block_info__facilities p{
    margin-right: 20px;
    font-weight: 600;
}
.content--block_info__facilities button{
    display: flex;
    width: 140px;
    padding: 14px 73px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-left: 40px;
    border-radius: 3px;
    background: #FFDA32;
    font-weight: 600;
    font-size: 21px;
    transition: 0.2s;
    border: 2px solid #FFDA32;
    color: #FFFFFF;
}
.content--block_info__facilities button:hover{
    background: none;
    border: 2px solid #FFDA32;
    transition: 0.2s;
    color: #FFDA32;
}
.content--button{
    display: none;
    justify-content: center;
}



.content--button button {
    --color: #FFDA32;
    font-family: inherit;
    display: inline-block;
    width: 8em;
    height: 2.6em;
    margin: 40px;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--color);
    transition: color 0.5s;
    font-size: 22px;
    border-radius: 6px;
    font-weight: 500;
    color: var(--color);
    background: none;
}
.content--button button:before {
    content: "";
    position: absolute;
    z-index: -1;
    background: var(--color);
    height: 150px;
    width: 200px;
    border-radius: 50%;
}
.content--button button:hover {color: #fff;}
.content--button button:before {
    top: 100%;
    left: 100%;
    transition: all 0.5s;
}
.content--button button:hover:before {top: -30px;left: -30px;}
.content--button:active:before {background: #FFDA32;transition: background 0s;}
/*--------------------*/

footer{background-color: #19224D;color: #FFFFFF;}
.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: auto;
    padding: 50px 20px;
}
.footer-section {flex: 1;}
.footer-section h3, .footer-section h4 {margin-bottom: 10px;font-size: 28px;}
.footer-section ul {
    list-style: none;
    padding: 0;
    line-height: 1.8;
}
.footer-section a{
    font-size: 18px;
    color: #FFFFFF;
    text-decoration: underline;
}
.footer-section p{margin-bottom: 20px;font-size: 16px;}
.social-icons a {margin-right: 10px;}
.social-icons img {width: 24px;height: 24px;}
.footer-bottom {
    text-align: center;
    padding: 10px;
    background-color: #0A1332;
}
.footer-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.footer-section h3, .footer-section h4 {margin-bottom: 10px;font-size: 28px;}
.footer-section ul {
    list-style: none;
    padding: 0;
    line-height: 1.8;
}
.footer-section a {
    font-size: 18px;
    color: #FFFFFF;
    text-decoration: underline;
}
.footer-section p {margin-bottom: 20px;font-size: 16px;}


@media(max-width: 1000px){
    .content--block_info__text{
        font-size: 17px;
    }
    .content--block_info__facilities button{
        margin-top: 20px;
        margin-left: 0;
    }

}