* {
    margin-block-start: 0px;
    margin-block-end: 0px;
    margin: 0px;
    padding: 0px;
}

html {
    margin: 0 auto;
    max-width: 3000px;
    padding-left: 0px;
    padding-right: 0px;
}

h1 {
    margin: 0px;
    padding: 0px;
}

body {
    font-family:
        Helvetica Neue,
        "Inter",
        --apple-system,
        BlinkMacSystemFont,
        Segoe UI,
        Roboto,
        Oxygen,
        Ubuntu,
        Cantarell,
        Fira Sans,
        Droid Sans,
        Helvetica Neue,
        sans-serif;
}

.guide-container {
    padding-left: clamp(10px, 10vw, 100px);
    padding-right: clamp(10px, 10vw, 100px);
    max-width: 1300px;
    margin: auto;
}

.guide-title-container {
    padding-top: 10vh;
    border-bottom: 1px solid rgb(150, 150, 150);
    padding-bottom: 10vh;
}

.guide-title {
    font-size: clamp(13px, 16vw, 220px);
    font-weight: 600;
    text-align: center;
    letter-spacing: 3px;
    margin-top: 4vh;
    margin-bottom: 4vh;
}

.guide-title-sm {
    font-size: clamp(13px, 4vw, 80px);
    font-weight: 600;
    text-align: center;
    letter-spacing: 6px;
}

.guide-subtitle-container {
    padding-top: 4vh;
    padding-bottom: 4vh;
    border-bottom: 1px solid rgb(150, 150, 150);
}

.guide-subtitle {
    font-size: clamp(13px, 5vw, 50px);
    font-weight: 500;
    text-align: center;
    letter-spacing: 2px;
    padding-bottom: 2vh;
}

.guide-description {
    margin: auto;
    max-width: 1200px;
    font-size: clamp(13px, 2vw, 20px);
    font-weight: 300;
    text-align: center;
    letter-spacing: 2px;
}

.map-container {
    padding-top: 4vh;
    padding-bottom: 4vh;
    border-bottom: 1px solid rgb(150, 150, 150);
}

.guide-category-container {
    padding-top: 1vh;
    padding-bottom: 1vh;
    border-bottom: 1px solid rgb(150, 150, 150);
}

.guide-category-title {
    font-size: clamp(13px, 5vw, 50px);
    font-weight: 600;
    text-align: center;
    letter-spacing: 1px;
    padding-bottom: 0vh;
    text-transform: uppercase;
}

.guide-category-description {
    margin: auto;
    max-width: 1200px;
    font-size: clamp(13px, 3vw, 40px);
    font-weight: 400;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.guide-place-container {
    padding-top: 4vh;
    padding-bottom: 4vh;
    border-bottom: 1px solid rgb(150, 150, 150);
}

.place-info-container {
    position: relative;
    height: 100%;
    margin-left: 1vh;
}

.place-info-container-img {
    position: relative;
    width: 94%;
    padding-left: 3%;
    padding-right: 3%;
    aspect-ratio: 4 / 3; /* set your desired ratio */
    overflow: hidden;
}

.place-info-container-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* fills container */
}

@media (max-width: 767px) {
    .place-info-container {
        margin-top: 1vh;
    }
}
.place-photo-container {
    margin: 1vw;
}

.place-title {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 600;
    text-align: left;
    letter-spacing: 1px;
    padding-bottom: 1vh;
}

.place-description {
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 300;
    text-align: left;
    padding-right: 3vw;
}

.place-address-title {
    font-size: clamp(13px, 2vw, 20px);
    font-weight: 500;
}

.place-address {
    font-size: clamp(13px, 2vw, 20px);
    font-weight: 400;
    text-align: left;
    padding-right: 3vw;
    /*position: absolute;
    bottom: 0px;*/
    margin-top: 1vh;
    margin-bottom: 1vh;
}

@media (max-width: 767px) {
    .place-address {
        font-size: clamp(13px, 2vw, 20px);
        font-weight: 500;
        text-align: left;
        padding-right: 3vw;
        margin-top: 1vh;
        margin-bottom: 1vh;
        position: relative;
    }
}

.place-btn-container {
    margin: auto;
    padding-top: 2vw;
    text-align: center;
}

.place-btn {
    display: inline-flex; /* center content */
    justify-content: center;
    align-items: center;
    width: 40px; /* circle diameter */
    height: 40px;
    border-radius: 50%; /* makes it circular */
    background-color: #000; /* button color */
    color: white; /* icon color via currentColor */
    text-decoration: none; /* remove underline */
    cursor: pointer;
    transition:
        background-color 0.3s,
        transform 0.2s;
    line-height: 40px;
    font-weight: 700;
    text-align: center;
}

.place-btn:hover {
    background-color: rgb(100, 100, 100);
    transform: scale(1.1);
}

.place-btn svg {
    width: 20px;
    height: 20px;
}

/*Dialog*/
dialog {
    text-align: center;
    border: none;
    border-radius: 12px;
    padding: 20px;
    max-width: 300px;
    width: 90%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0; /* important */
}

dialog::backdrop {
    background: rgba(0, 0, 0, 0.5);
}
#navOptions a {
    display: block;
    margin: 10px 0;
    padding: 10px;
    background: #f2f2f2;
    border-radius: 8px;
    text-decoration: none;
    color: black;
    text-align: center;
}
