@import url('https://fonts.googleapis.com/css2?family=Quattrocento+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@100..900&display=swap');
@font-face {
  font-family:"russian";
  src: url("../fonts/Russian.ttf") format("truetype");
}
@font-face {
  font-family:"TT Fors";
  src: url("../fonts/TT Fors Trial Regular.ttf") format("truetype");
}
@font-face {
  font-family:"TT Fors Black";
  src: url("../fonts/TT Fors Trial Black.ttf") format("truetype");
}
@font-face {
  font-family:"TT Fors Bold";
  src: url("../fonts/TT Fors Trial Bold.ttf") format("truetype");
}
@font-face {
  font-family:"TT Fors Outline";
  src: url("../fonts/TT Fors Black Outline Trial.ttf") format("truetype");
}

p {
    font-family: Heebo;
}

html,
body {
    margin: 0;
    padding: 0;
    background-color: #fff4e3;
}
#content {
    max-width: 1400px;
    margin: auto;
    width: 90%;
}
#menu {
    padding: 20px 0px;
    display: inline-grid;
    grid-template-columns: auto auto;
    width: 100.1%;
    align-items: center;
    position: sticky;
    top: 0px;
    background-color: #fff4e3;
    z-index: 10;

}

#logoWrapper {
    display: grid;
    align-content: center;
}

#logoWrapper img {
    max-width: 325px;
    width: 80%;
}

#menuLinks {
    display: flex;
    justify-content: end;
    column-gap: 20px;
}

#menuLinks a {
    font-family: "Heebo", sans-serif;
    font-weight: 300;
    text-decoration: none;
    font-size: 22px;
    display: grid;
    align-content: center;
    color: black;
}

.links {
    display: flex;
    justify-content: end;
    column-gap: 20px;
    flex-direction: row;
}

.links.shown {
    display: grid;
    grid-template-rows: 40px 40px 40px 40px 40px;
    align-items: start;
}

a h2 {
    margin: 0px;
}

#panoramicWrapper {
    border-radius: 10px;
    overflow: hidden;
}
.viewer {
    width: 100vw;
    height: 600px;
    overflow: hidden;
    position: relative;
    cursor: grab;
}

.image-strip {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    column-gap: 0px;
}

.image-strip img {
    height: 100%;
    width: auto;
    flex-shrink: 0;
    user-select: none;
    pointer-events: none;
    -moz-user-select: -moz-none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.image-strip img+img {
    margin-left: -1px;
}

.hotspot {
    position: absolute;
    top: 25%;
    /* vertical, relativo al alto de .viewer */
    width: 20px;
    height: 20px;
    background: #ffffffa1;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    cursor: pointer;
}

h1.mainH1 {
    font-family: 'Russian';
    text-align: center;
    font-size: 60px;
    color: #ff4045;
}
.title, .footerTitle {
    font-family: 'TT Fors Bold';
    text-align: center;
}

h2.title {
    font-size: 40px;
}

h2.footerTitle {
    font-family: 'Russian';    
    font-size: 35px;
    margin: 10px;
}

#hotspotInfo {
    display: none;
    position: absolute;
    border: 1px solid #ffffff;
    border-radius: 5px;
    background: #ffffffd9;
    width: 80px;
    height: 60px;
    padding: 5px;
}

.studioDescWrapper {
    margin-bottom: 100px;
}

.studioDesc {
    font-size: 20px;
    text-align: center;
    font-family: Heebo
}

.post {
    margin: 0 10px;
    display: grid;
    height: 470px;
    max-width: 400px;
    width: 100%;
    grid-template-rows: 260px 42px auto;
    padding-bottom: 50px;
    /* border-top-left-radius: 12px;
    border-top-right-radius: 12px; */
}

.post img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    /* border-top-left-radius: 10px;
    border-top-right-radius: 10px; */
}

.post:has(img.light) {
    padding: 1px 1px 50px;
}

.post h2{
    font-family: TT Fors Bold;
    padding: 0 20px;
    margin: 0px;
    font-size: 40px;
}

.post p {
    font-family: TT Fors;
    margin: 0px;
    padding: 20px;
    margin-bottom: 16px;
    color: #fff;
}

#toolsPost {
    background-color: #1c0328!important;
}

#toolsPost h2 {
    color: #a86cf4;
}

#toolsPost1 {
    background-color: #3e0404!important;
}

#toolsPost1 h2 {
    color: #ff5139!important;
}

#toolsPost2 {
    background-color: #FFD54F!important;
}
#toolsPost2 p {
    color: #4E342E !important
}

#toolsPost2 h2 {
    color: #b37e00 !important;
}

#homePosts {
    display: flex;
    margin-bottom: 40px;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 10px;
}

.separator {
    width: 100%;
    display: grid;
    border-style: solid none none;
    border-color: #958c7f ;
    border-width: 4px;
    margin: 15px 0 0;
}

#footer {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #bbaf9d;
    padding: 10px 0 0px;
    display: flex;
    flex-direction: column;
}
#footerInnerDiv {
    display: flex;
    max-width: 900px;
    width: 90%;
    margin: auto;
    column-gap: 20px;
    row-gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

#locationMap {
    border-radius: 5px;
}

.place-card.place-card-medium {
    display: none;
}

.menuButton {
    background-color: #00000000;
    border-color: #00000000;
    display: none;
}


@media only screen and (max-width: 1050px) {
    #showMenu {
        display: grid;
        justify-content: right;
    }
    .links {
        text-align: right;
        display: none;
    }

    #menuLinks {        
        display: grid;
        right: 0;
        z-index: 10;
        /* padding: 0 30px; */
        top:0;
        background: #fff4e3;
    }
    #menuLinks:has(.shown) {
        position: fixed;
        padding: 27px 5%;
        height: 100%;
        align-items: stretch;
        grid-template-rows: 30px;
    }

    
    #menuLinks a {
        margin:  0;
    }    


}

#menuLinks h3 {
    margin: 0;
}

#menuLinks a {
    margin: 25px 0;
}    

.notIndexH1 {
    color: black !important
}

.links .current {
    margin: 0;
    border: 2px solid black;
    border-style: hidden hidden solid;
}

.staticHeader {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    display: grid;
    justify-content: center;
}

.staticHeader img {
    width: 1400px;
    height: 600px;
    object-fit: cover;
    border-radius: 10px
}