@charset "utf-8";

/* header.css */
#header {
    z-index: 100;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: transparent;
    color: white;
    transition: background-color 0.5s;
}

#header.scrolled {
    background-color: rgba(0, 0, 0, 0.70);
}

.header_inner {
    max-width: 1400px;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 50px;
}

.menu {
    list-style: none;
    display: flex;
    gap: 50px;
}

.menu li a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.menu li a:hover {
    opacity: 0.7;
}


/* section3 */
.section3 {
    position: relative;
    overflow: hidden;
}

.sec3_bg {
    background-image: url("../images/sec3_bg.png");
    background-size: cover;
    background-position: center;
    padding: 80px 0 60px;
}

.sec3_bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.sec3_title {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    margin-bottom: 20px;
}

.sec3_title h2 {
    margin-bottom: 12px;
}

.sec3_slider_wrap {
    position: relative;
    z-index: 1;
}

.slide_counter {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 60px;
    gap: 12px;
    color: white;
    margin-bottom: 20px;
}

.arr_prev,
.arr_next {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arr_prev:hover,
.arr_next:hover {
    background-color: #fff;
}

.arr_prev img,
.arr_next img {
    width: 16px;
}

/* slick 카드 */
.slider_menu .slick-slide {
    padding: 0 10px;
    opacity: 0.5;
    transform: scale(0.9);
    transition: all 0.3s;
}

.slider_menu .slick-center {
    opacity: 1;
    transform: scale(1);
}

.menu_img {
    position: relative;
}

.menu_img img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

.menu_info {
    position: absolute;
    color: white;
    padding: 50px 30px;
    bottom: 0;
    text-align: left;
}

.menu_info p:first-child {
    margin-bottom: 6px;
}

/* ===== 태블릿 (1024px 이하) ===== */
@media (max-width: 1024px) {

    .header_inner {
        padding: 16px 24px;
        justify-content: center;

    }

    .menu {
        gap: 24px;
    }

    .logo img {
        height: 40px;
    }

    .menuarea {
        display: none;
        /* 모바일에서 햄버거 메뉴로 대체 */
    }
}

/* ===== 모바일 (768px 이하) ===== */
@media (max-width: 768px) {

    .header_inner {
        padding: 14px 20px;
        justify-content: center;
    }

    .logo img {
        height: 34px;
    }

    .menuarea {
        display: none;
        /* 모바일에서 햄버거 메뉴로 대체 */
    }
}