@charset "utf-8";

/* sec01 */
.main01 {
    position: relative;
    width: 100%;
    height: 1120px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main01__bg-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1a1a1a; /* 배경 이미지 자리 */
    z-index: -1;
}

.main01__bg-placeholder img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.main01__inner {
    position: relative;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
}

.main01__content {
    width: 491px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-right: 50px; /* 우측 여백 */
}

.main01__title-img-placeholder {
    width: 490px;
    height: 368px;
    margin-bottom: 40px;
}

.main01__text {
    font-family: 'Pretendard', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    line-height: 34px;
    letter-spacing: -0.8px;
    margin-bottom: 50px;
}

.main01__text p {
    margin: 0;
}

.main01__text .highlight {
    color: #efe6d5;
}

.main01__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 40px;
    border: 1px solid #fff;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.main01__btn:hover {
    background-color: #fff;
    color: #000;
}

@media screen and (max-width: 1024px) {
    .main01__content { margin-right: 0; }
    .main01__inner { justify-content: center; padding: 0 20px; }
}

/* sec02 */
.main02 {
    position: relative;
    width: 100%;
    padding: 150px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.main02__bg-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1a1511; /* 배경 이미지 자리 */
    z-index: -1;
}

.main02__inner {
    position: relative;
    width: 100%;
    max-width: 1380px;
    padding: 0 40px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.main02__video-container {
    position: relative;
    width: 100%;
    max-width: 1300px;
    aspect-ratio: 1300 / 640;
    background-color: rgba(255, 255, 255, 0.05); /* 비디오 썸네일 자리 */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    border-radius: 10px;
    filter: drop-shadow(0 10px 30px rgba(255, 183, 0, 0.25));
}

.main02__video-thumb-placeholder {
    width: 100%;
    height: 100%;
}

.main02__play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 146px;
    height: 146px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.main02__play-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%) scale(1.05);
    border-color: #fff;
}

.main02__play-icon {
    display: block;
    width: 0;
    height: 0;
    border-top: 24px solid transparent;
    border-bottom: 24px solid transparent;
    border-left: 38px solid #fff;
    margin-left: 10px;
}

.main02__desc {
    font-family: 'Pretendard', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.66);
    letter-spacing: -0.72px;
}

@media screen and (max-width: 1024px) {
    .main02__play-btn { width: 100px; height: 100px; }
    .main02__play-icon { border-top: 16px solid transparent; border-bottom: 16px solid transparent; border-left: 26px solid #fff; margin-left: 6px; }
}

@media screen and (max-width: 768px) {
    .main02 { padding: 100px 0; }
    .main02__inner { padding: 0 20px; }
    .main02__video-container { aspect-ratio: 16 / 9; margin-bottom: 30px; }
    .main02__desc { font-size: 15px; }
    .main02__play-btn { width: 70px; height: 70px; }
    .main02__play-icon { border-top: 12px solid transparent; border-bottom: 12px solid transparent; border-left: 18px solid #fff; margin-left: 5px; }
}