/* pt-serif-regular - latin */
@font-face {
    font-display: swap;
    font-family: 'PT Serif';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/pt-serif-v18-latin-regular.woff2') format('woff2'),
         url('../fonts/pt-serif-v18-latin-regular.ttf') format('truetype');
  }
  /* pt-serif-700 - latin */
  @font-face {
    font-display: swap;
    font-family: 'PT Serif';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/pt-serif-v18-latin-700.woff2') format('woff2'),
         url('../fonts/pt-serif-v18-latin-700.ttf') format('truetype');
  }

  /* cinzel-regular - latin */
@font-face {
    font-display: swap; 
    font-family: 'Cinzel';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/cinzel-v23-latin-regular.woff2') format('woff2'), 
         url('../fonts/cinzel-v23-latin-regular.ttf') format('truetype'); 
}

* { box-sizing: border-box }
  
html, body{
    margin: 0;
    padding: 0;
    background-color: #F7F3E8;
    font-family: 'PT Serif', sans-serif;
}

h1{
    font-family: 'Cinzel', serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 30px;
    margin-bottom: 10px;
    color: #000000;
}

#map-section{
    width: 100%;
}

#section-wrapper{
    padding: 60px 15px 90px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

#map{
    margin: 0 auto;
    width: 100%;
    height: 60vh;
    min-height: 600px;
    position: relative;
}

#tabs{
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.marker img{
    width: 200px;
}

#tabs button{
    color: #b42133;
    background-color: #630c17;
    text-transform: uppercase;
    border: 0;
    padding: 11px 21px;
    font-weight: 700;
    line-height: 24px;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'PT Serif', sans-serif;
    cursor: pointer;
    transition: color 0.25s, background-color 0.25s;
    min-width: 255px;
}

#tabs button.active{
    background-color: #b42133;
    color: #fff;
}

#tabs button:hover, #tabs button:focus{
    color: #fff;
}

@media screen and (min-width: 576px){
    #section-wrapper{ max-width: 540px }
}

@media screen and (min-width: 768px){
    h1{ font-size: 36px }
    #section-wrapper{ max-width: 720px }
}

@media screen and (min-width: 992px){
    #section-wrapper{ max-width: 960px }
}

@media screen and (min-width: 1200px){
    #section-wrapper{ max-width: 1140px }
}