body {
    font-family: 'Nanum Gothic', sans-serif;
    background-color: #000000;
    color: #ffffff;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

.navbar {
    padding: 0.5rem 0;
    position: relative;
    z-index: 1030;
}

.dropdown-menu {
    position: absolute;  /* 드롭다운이 부모 요소에 영향을 받지 않도록 설정 */
    z-index: 1050;       /* 드롭다운 메뉴가 다른 요소들 위에 표시되도록 높은 z-index 값 설정 */
}

.dropdown-item {
    transition: background-color 0.2s ease-in-out;
}

.dropdown-item:hover {
    background-color: #f8f9fa;  /* 마우스 오버 시 효과 추가 */
}


.navbar .container-fluid {
    flex-direction: column;
}

.navbar-brand {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    z-index: 1031;
    margin: 0.5rem 0;
}

.navbar-brand .vivid {
    color: #ee2a7b;
}

.navbar-brand .index {
    color: #8dc63f;
}

.navbar-nav {
    justify-content: center;
}

.nav-item {
    margin: 0 1rem;
    font-size: 1.2rem;
}

.nav-link {
    color: #ffffff !important;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #ee2a7b !important;
}

.nav-link.active {
    color: #8dc63f !important;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
}

.menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    margin-bottom: 5px;
    position: relative;
    background: #ffffff;
    border-radius: 3px;
    z-index: 1;
    transform-origin: center;
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                opacity 0.55s ease;
}

.menu-toggle.active span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:last-child {
    transform: rotate(-45deg) translate(7px, -7px);
}

.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, visibility 0.5s;
    z-index: 1029;
}

.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
}

.fullscreen-menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.fullscreen-menu ul li {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s, transform 0.4s;
}

.fullscreen-menu.active ul li {
    opacity: 1;
    transform: translateY(0);
}

.fullscreen-menu ul li a {
    font-size: 2rem;
    color: #ffffff;
    text-decoration: none;
    display: block;
    padding: 10px;
    transition: color 0.3s;
}

.fullscreen-menu ul li a:hover {
    color: #ee2a7b;
}

/* Login button and Instagram icon */
.btn-outline-light {
    border-color: #ee2a7b;
    color: #ee2a7b;
    padding: 0.25rem 0.5rem;
    font-size: 0.9rem;
}

.btn-outline-light:hover {
    background-color: #ee2a7b;
    color: #000;
}


.fa-instagram {
    font-size: 1.5rem;
    color: #8dc63f;
}

/* Responsive styles */
@media (max-width: 767px) {
    .navbar .container-fluid {
        flex-direction: row;
    }

    .navbar-brand {
        font-size: 1.5rem;
        margin: 0 auto;
    }
    
    .navbar-nav {
        display: none;
    }
    
    .menu-toggle {
        display: block;
        order: -1;
    }
    
    .btn-outline-light {
        font-size: 0.8rem;
        padding: 0.25rem 0.5rem;
    }
 
}

@media (min-width: 768px) {
    .navbar-brand {
        font-size: 2.2rem;
    }
    
    .navbar-collapse {
        margin-top: 0.5rem;
    }
}

/* Footer styles */
.site-footer {
    margin-top: 350px;
    background-color: #1a1a1a;
    color: #fff;
    padding-top: 30px;
}

.site-container {
    max-width: 1200px;
    margin: 0 auto;
}

.site-footer-content {
    text-align: center;
}

.site-footer-logo {
    font-family: 'Fira Sans', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.site-footer-logo .site-vivid {
    color: #ee2a7b;
}

.site-footer-logo .site-index {
    color: #8dc63f;
}

.site-footer-text {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

.site-footer-text .linknone {
    text-decoration: none;
    cursor: default;
    color: inherit;
}

.site-footer-description {
    margin-bottom: 20px;
}

.site-footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
}

.site-footer-links a:hover {
    color: #8dc63f;
}

.site-footer-bottom {
    background-color: #111;
    padding: 10px;
    text-align: center;
    margin-top: 30px;
}

.site-footer-bottom p {
    font-size: 0.9rem;
    margin-top: 10px;
}

.btn-vivid{
    background-color: #ee2a7b;
    color: #fff;
    font-weight: bold;
}

.btn-vivid hover{
    background-color: #ee2a7b;
    color: #000;
    font-weight: bold;
}

.btn-index{
    background-color: #8dc63f;
    color: #fff;
    font-weight: bold;
}

.btn-index hover{
    background-color: #8dc63f;
    color: #000;
    font-weight: bold;
}

.title-h1{
    text-align: center;
    font-size: 4rem;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 700;
    margin-top: 100px;
}

.title-h2 {
    text-align: center;
    font-size: 2.5rem;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 20px;
}

.content-wrapper {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .title-h1 {
        font-size: 3rem;
    }
    
    .title-h2 {
        font-size: 2rem;
    }
}