@font-face {
    font-family: "closeness";
    src: url(Closeness.ttf);
}

@media (max-width: 600px) {
    .menudiv .menu-link { display: none; }
    .menudiv .menu-link-mobile { display: inline-block; }
}
@media (min-width: 601px) {
    .menudiv .menu-link { display: inline-block; }
    .menudiv .menu-link-mobile { display: none; }
    .mobile-overlay { display: none; }
}

html {
    scroll-behavior: smooth;
}
html, body {
    width: 100%;
    overflow-x: hidden;
}
body {
    margin: 0;
    background-color: white;
    color: black;
    font-family: "closeness";
    overflow-x: hidden;
}

h1
{
    color: black!important;
}
a {
    background-color: black;
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    font-family: "closeness", sans-serif;
}

a:hover {
    filter: invert(1);
    color: black;
    transform: translateY(-2px) scale(1.05);
    transition: background 0.2s, transform 0.2s;
}

hr
{
    width: 100%;
    margin: 2rem auto;
    border: none;
    border-top: 5px solid black;
}
.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2rem;
    text-align: center;
    z-index: 10;
    text-transform: capitalize;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.overlay-text img.desktop-banner {
    display: block;
    margin: 0 auto;
}
.overlay-buttons {
    color: black;
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}
.overlay-btn {
    background: white;
    color: black !important;
    padding: 0.7rem 1.5rem;
    text-decoration: none;
    font-size: 1.1rem;
    font-family: "closeness", sans-serif;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: background 0.2s, transform 0.2s;
    border: none;
    cursor: pointer;
    display: inline-block;
}
.overlay-btn:hover {
    background: black;
    color: white !important;
    transform: translateY(-2px) scale(1.05);
}

.menudiv {
    background-color: black;
    position: fixed;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px 20px;
    width: auto;
    text-align: center;
    z-index: 1001;
    transition: opacity 0.4s ease;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}
.menudiv.transparent {
    opacity: 0.3;
    transition: opacity 0.4s;
    pointer-events: none;
}
.menudiv {
    transition: opacity 0.4s;
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}
.mobile-overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}
.mobile-overlay a {
    color: white;
    font-size: 2rem;
    text-decoration: none;
}

.close-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    color: white;
    text-decoration: none;
}

.image-with-text {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100svh;
    overflow: hidden;
}

.rating {
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

model-viewer {
    width: 100%;
    max-width: 600px;
    height: 400px;
    margin: 0 auto;
    display: block;
    background: transparent;
}

.box {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.box-main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.box-content {
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    background-color: white;
    color: black !important;
    margin: 0 auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.box-button2 {
    background-color: white;
    color: black !important;
    padding: 1rem 2rem;
    text-decoration: none;
    font-size: 1.2rem;
    font-family: "closeness", sans-serif;
    font-weight: bold;
    transition: background 0.2s, transform 0.2s;
    display: inline-block;
    max-width: 100%;
    white-space: normal;
    word-break: break-word;
    text-align: center;
    box-sizing: border-box;
    margin: 0.5rem 0;
}

    #map {
      height: 600px;
      margin: 20px auto;
      border: 2px solid #0ff;
      max-width: 900px;
    }