html, body {
    margin: 0;
    width: 100%;
    overflow-x: hidden;
    font-family: "Noto Sans KR", sans-serif;
}

.bold-text {
    color: #70F1F8;
    font-weight: bold;
}

.large-text {
    font-size: clamp(18px, 5vw, 28px);
}

.banner {
    position: relative;
}

#banner-bg {
    width: 100%;
    height: clamp(220px, 35vw, 300px);
    display: block;
    object-fit: cover;
    filter: grayscale(100%) brightness(70%);
}

.banner-logo {
    position: absolute;

    top: clamp(12px, 3vw, 24px);
    left: clamp(16px, 4vw, 40px);

    width: clamp(120px, 18vw, 240px);
    height: auto;

    z-index: 2;
    cursor: pointer;
}

.banner-text {
    position: absolute;

    bottom: clamp(12%, 16vw, 22%);
    left: clamp(16px, 4vw, 40px);

    width: min(90%, 800px);

    color: white;
    text-align: left;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);

    z-index: 3;
}

.banner-text h1 {
    font-size: clamp(18px, 6vw, 40px);
    margin-top: 0;
    margin-bottom: clamp(8px, 2vw, 20px);
    word-break: keep-all;
}

.banner-text p {
    font-size: clamp(14px, 4vw, 28px);
    line-height: 1.25;
    margin: 0;
    word-break: keep-all;
}

marquee {
    position: absolute;
    bottom: 0;
    left: 0;

    width: 100%;
    height: clamp(28px, 5vw, 44px);
    line-height: clamp(28px, 5vw, 44px);

    background-color: #333;
    z-index: 4;

    overflow: hidden;
    font-size: clamp(14px, 3vw, 24px);
}

.notice-text {
    color: red;
    font-size: inherit;
    font-weight: bold;
    white-space: nowrap;
}

.content {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(20px, 4vw, 30px);

    width: min(1200px, 90%);
    margin: clamp(50px, 10vw, 100px) auto;

    align-items: flex-start;
}

.map {
    margin: 0 auto;
    position: relative;

    width: min(100%, 600px);
    flex: none;
}

#map-img {
    width: 100%;
    display: block;
}

.info-panel {
    flex: 1;

    min-width: min(250px, 100%);
    min-height: 420px;

    padding: clamp(14px, 3vw, 20px);
    border: 1px solid #ddd;

    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    box-sizing: border-box;
}

#add-btn {
    position: absolute;
    top: 12px;
    right: 12px;

    z-index: 5;

    padding: 8px 14px;
    border: none;
    border-radius: 6px;

    background-color: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);

    cursor: pointer;
    font-weight: bold;
}

.pin {
    position: absolute;

    width: clamp(16px, 4vw, 24px);
    height: clamp(16px, 4vw, 24px);

    background: white;
    border-radius: 20%;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 8px rgba(0,0,0,0.35);
    cursor: pointer;

    background-image: url("./image/bin_icon.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

#add-form-box {
    display: none;

    width: min(600px, 90%);
    margin: 30px auto;
    padding: clamp(14px, 3vw, 20px);

    border: 1px solid #ddd;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);

    box-sizing: border-box;
}

#add-form-box label {
    display: block;
    margin-top: 12px;
    font-weight: bold;
}

#add-form-box input,
#add-form-box textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 8px;
    margin-top: 6px;
}

#add-form-box button {
    margin-top: 16px;
    padding: 8px 14px;
    cursor: pointer;
}

#info-image {
    width: 100%;
    max-width: 300px;
    max-height: 320px;

    margin-top: 15px;
    border-radius: 8px;

    display: none;
    object-fit: cover;
}

.footer {
    width: 100%;
    background-color: #333;
    color: white;
    margin: 30px auto 0;
    padding: 30px 0;
}

.footer-text {
    max-width: 900px;
    margin: 0 auto;
    padding: 10px 20px;
}

.developers h3 {
    margin: 0 0 10px;
}

.developers ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.developers li {
    margin-bottom: 4px;
}

.descript p {
    margin: 0 0 12px;
    line-height: 1.5;
    word-break: keep-all;
}
