body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: white;
    text-align: center;
    padding: 0;
    margin:0;
}

section {
    background-color: antiquewhite;
    margin: 20px auto;
    padding: 20px;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 15px 5px rgba(0,0,0,0.1);
}







button {
    background-color: black;
    color: white;
    padding: 15px 25px;
    border: none;
    border-radius: 18px;
    font-size: 1rem;
    font-weight: bold;
    transition: background 0.3s;
}
button:hover {
    background-color: transparent;
}



.hamburger {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    background-color: black;
    border: none;
    padding: 8px 14px;
    border-radius: 12px;
    z-index: 1000;
}

.side-menu {
    position: fixed;
    top: 0;
    left: -260px;
    width: 250px;
    height: 100%;
    background-color: black;
    transition: left 0.3s ease;
    z-index: 1002;
    text-align: left;
    padding: 20px;
    box-sizing: border-box;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

.side-menu.active {
    left:0;
}

.side-menu h3 {
    color:white;
    margin-top: 10px;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    color: white;
    font-size: 28px;
    border: none;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 1001;  
}

.overlay.active {
    display: block;
}

header {
    margin-top: 50px;
    padding: 0 15px;
}

header h1 {
    font-size: 1.8rem;
    word-wrap: break-word;
}

.side-menu nav a.menu-link {
    display: block;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 12px 0;
    transition: color 0.3s;
}

.side-menu nav a.menu-link:hover {
    color: grey;
}

.img-frame {
    width: 80%;
    height: 90%;
    margin: 30px auto;
    border: 5px solid black;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    background-color: black;
}

#slideshow {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease-in-out;
}

.upper-bar {
    background-color: black;
    color: white;
    width:100%;
    min-height: 60px;
    font-family: 'LXGW WenKai TC', cursive;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 10px 0;
    box-sizing: border-box;
    font-size: clamp(1rem,4vw,1.8rem);
    text-align: center;
    line-height: 1.2;
}

.bar-title {
    background-color: black;
    color: white;
    font-size: clamp(1rem,4vw,1.8rem);
    text-align: center;
    padding: 0 50px;
    line-height: 1.2;
}

.Menu-title {
    margin-bottom: 20px; 
    padding-bottom: 15px; 
    border-bottom: 1px solid rgba(255, 255, 255, 0.3); 
}

.quick-info-scrool {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    background-color: transparent;
    padding: 10px 2px;
}

.quick-info-text {
    display: inline-block;
    font-family: 'LXGW WenKai TC', cursive; 
    font-size: 1.2rem;
    animation: info-to-left 13s linear infinite;
}

@keyframes info-to-left {
    0% {
        transform: translateX(100vw);
    }
    100% {
        transform: translateX(-100%);
    }
}

.map-holder {
    width: 50%;
    height: 15%;
    max-width: 600px;
    margin-right: 40%;
    margin-left: 5%;
}

.map-holder iframe {
    width: 100% !important;
    border-radius: 15px;
}