/* font============== */
@font-face {
    font-family: 'sakurata';
    src: url('/resources/font/sakurata.ttf') format('truetype')
}

@font-face {
    font-family: 'dico';
    src: url('/resources/font/Dico.ttf');
}

body {
    margin: 0;
}

div {
    box-sizing: border-box;
}

.bg-black {
    width: 100%;
    max-width: 100vw;
    height: 100vh;
    background-color: black;
    background-size: cover;
}

.bg-zine {
    width: 100%;
    background-image: url('/resources/index/bg-zine.gif');
    background-size: contain;
}

.bg-video {
    width: 100%;
    background-image: url('/resources/index/bg-video.gif');
    background-size: contain;
}

.bg-radio {
    width: 100%;
    background-image: url('/resources/index/bg-radio.gif');
    background-size: contain;
}

.bg-blog {
  width: 100%;
    background-image: url('/resources/index/bg-blog.gif');
    background-size: contain;
}

.box-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 15vh; 
}

.nav-bar {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    justify-content: center;
    flex-wrap: wrap; 
}

.nav-content {
    color: white;
    text-decoration: none;
    font-family: sakurata;
    font-size: 30px;
}

.img-title-logo img {
    width: 40vw; 
    max-width: 1000px;
    height: auto;
}

.img-title-logo {
    text-decoration: none;
    color: #fff;
    text-align: center;
    text-decoration-line: none;
}

.img-title-logo:hover {
    color: red;
}

.logo-wrap {
    font-family: dico;
    font-size: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-wrap p {
    margin: 0;
}

/* 모바일 최적화 (576px 이하) */
@media screen and (max-width: 576px) {
    .box-title {
        padding-top: 30vh;
        display: flex;
        flex-direction: column;
    }

    .img-title-logo {
        order: 1; 
        margin-bottom: 30px; 
    }

    .nav-bar {
        order: 2; 
        flex-direction: column; 
        align-items: center;
        gap: 15px; 
    }

    .nav-content {
        font-size: 22px;
    }

    .img-title-logo img {
        width: 90vw;
    }
}
