
* {margin:0;padding:0;box-sizing:border-box;}
body {font-family:'Noto Sans KR';}

.container {
    max-width:1400px;
    margin:auto;
    padding:0 40px;
}

.section {
    margin:140px 0;
}

.section h2 {
    font-size:34px;
    margin-bottom:40px;
}

/* HERO */
.main-visual {
    height:calc(100vh - 90px);
    position:relative;
}
.main-visual::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;

    background: linear-gradient(
        to top,
        rgba(0,0,0,0.6),
        transparent
    );
}

.slide {
    position:absolute;
    width:100%;
    height:100%;
    opacity:0;
    transition:0.8s;
}

.slide.active {
    opacity:1;
}

.slide img {
    width:100%;
    height:100%;
    object-fit:cover;
}

.overlay {
    position:absolute;
    top:60%;
    left:80px;
    z-index: 2;
    transform:translateY(-50%);
    color:#fff;
}

.overlay h1 {
    font-size:64px;
    font-weight:900;
}

.overlay p {
    margin-top:10px;
}

.hero-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
}

.hero-btn:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border-color: rgba(255,255,255,0.8);
}

.slide-count {
    position: absolute;
    bottom: 30px;
    right: 40px;
    color: #fff;
    font-size: 14px;
    letter-spacing: 2px;
}


/* 인기코스 */
.course-list {
    display:flex;
    gap:24px;
}

.course {
    flex:1;
}

.img-box {
    overflow:hidden;
}

.img-box img {
    width:100%;
    height:360px;
    object-fit:cover;
    transition:0.4s;
}

.course:hover img {
    transform:scale(1.1);
}

.info {
    margin-top:12px;
}

.title {
    font-weight:600;
}

.location {
    color:#777;
}


/* 배너 */
.banner.full {
    width:100%;
    height:350px;
    position:relative;
}

.banner img {
    width:100%;
    height:100%;
    object-fit:cover;
}


/* 트래블 스타일 */
.travel-style {
    width: 100%;
    margin: 140px 0;
}

.travel-style h2 {
    max-width: 1400px;
    margin: 0 auto 40px;
    font-size:34px;
}

.style-wrap {
    width: 100%;
    overflow: hidden;
}

.style-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}
.style-slider::-webkit-scrollbar {
    display: none;
}

.style-slider {
    padding-left: calc((100% - 1400px)/2 - -50px);
    padding-right: calc((100% - 1400px)/2 - 210px);
}

.style-card {
    flex: 0 0 420px;
    position: relative;
}

.style-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.text {
    position: absolute;
    left: 20px;
    bottom: 20px;
    color: #fff;
}

.text .top {
    font-size: 13px;
    opacity: 0.8;
}

.text .bottom {
    font-size: 20px;
    font-weight: 700;
}



@media (max-width: 1024px) {

    .container {
        padding: 0 24px;
    }

    .section {
        margin: 100px 0;
    }

    .section h2 {
        font-size: 28px;
    }

    /* HERO */
    .overlay {
        left: 40px;
    }

    .overlay h1 {
        font-size: 48px;
    }

    /* 인기코스 */
    .course-list {
        gap: 16px;
    }

    .img-box img {
        height: 260px;
    }

    /* 스타일 */
    .style-card {
        flex: 0 0 320px;
    }

    .style-slider {
        padding-left: 24px;
        padding-right: 24px;
    }
}


@media (max-width: 768px) {

    .container {
        padding: 0 16px;
    }

    .section {
        margin: 80px 0;
    }

    .section h2 {
        font-size: 24px;
    }

    /* HERO */
    .main-visual {
        height: 80vh;
    }

    .overlay {
        left: 20px;
        top: 65%;
    }

    .overlay h1 {
        font-size: 32px;
    }

    .overlay p {
        font-size: 14px;
    }

    .hero-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    /* 인기코스 */
    .course-list {
        flex-direction: column;
    }

    .img-box img {
        height: 220px;
    }

    /* 배너 */
    .banner.full {
        height: 220px;
    }

    /* 스타일 */
    .style-card {
        flex: 0 0 260px;
    }

    .style-card img {
        height: 180px;
    }

    .text .bottom {
        font-size: 16px;
    }
}

@media (max-width: 480px) {

    .section {
        margin: 60px 0;
    }

    .section h2 {
        font-size: 20px;
    }

    /* HERO */
    .main-visual {
        height: 70vh;
    }

    .overlay {
        left: 16px;
    }

    .overlay h1 {
        font-size: 24px;
    }

    .overlay p {
        font-size: 13px;
    }

    .hero-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .slide-count {
        right: 16px;
        font-size: 12px;
    }

    /* 인기코스 */
    .img-box img {
        height: 180px;
    }

    /* 배너 */
    .banner.full {
        height: 180px;
    }

    /* 스타일 */
    .style-card {
        flex: 0 0 220px;
    }

    .style-card img {
        height: 150px;
    }

    .text {
        left: 14px;
        bottom: 14px;
    }
}


