/* ==============================
   공통 섹션 레이아웃
============================== */
section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ==============================
   메인 섹션 (LINE CINEMA PARTNERSHIP)
============================== */
.sec1 {
    width: 100%;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, #fff, #f8f8f8);
}

.discount-mainBox {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.discount-mainBox-text {
    text-align: center;
}

.discount-mainBox-text > p:nth-child(1) {
    font-size: 50px;
    font-weight: 100;
    line-height: 1.1;
}

.discount-mainBox-text > p:nth-child(1) > span {
    font-weight: 500;
}

.discount-mainBox-text > p:nth-child(2) {
    font-size: 15px;
    color: #555;
}

.discount-mainBox-img {
    width: 250px;
    transition: all 0.3s ease;
    scale: 0.9;
    rotate: -90deg;
}

.discount-mainBox-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}

.discount-mainBox-img:hover {
    scale: 1;
    rotate: -60deg;
}

/* ==============================
   카드 섹션 공통 스타일
============================== */
.discount-outBox {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 100px 0;
    position: relative;
}

.discount-outBox h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #111;
}

/* 카드 박스 */
.discount-outBox-Box1 {
    width: 60%;
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px dotted #ccc;
    padding: 20px 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
    opacity: 0.95;
}

/* 카드 아래로 갈수록 점점 흐리게 */
/* .discount-outBox-Box1:nth-child(2) { opacity: 0.85; }
.discount-outBox-Box1:nth-child(3) { opacity: 0.75; }
.discount-outBox-Box1:nth-child(4) { opacity: 0.6; }
.discount-outBox-Box1:nth-child(5) { opacity: 0.45; }
.discount-outBox-Box1:nth-child(6) { opacity: 0.3; } */

/* hover 시 또렷하게 강조 */
.discount-outBox-Box1:hover {
    opacity: 1;
    transform: translateY(-5px);
}

/* 카드 이미지 */
.discount-img {
    width: 40%;
    height: 150px;
    /* background-color: darkcyan; */
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

/* 카드 설명 */
.discount-text p {
    font-size: 16px;
    color: #333;
    line-height: 1.4;
    margin-bottom: 20px;
}

/* 버튼 */
.discount-btn {
    width: 100px;
    border: none;
    padding: 5px 10px;
    background-color: #f8f8f8;
    color: #333;
    border-radius: 5px;
    font-weight: bold;
    font-size: 15px;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.2s ease;
}

.discount-btn:hover {
    background-color: #dcdcdc;
    transform: scale(1.05);
}

/* ==============================
   섹션별 배경 구분
============================== */
.sec2 {
    background: linear-gradient(to bottom, #ffffff 70%, #f4f4f4);
}

.sec3 {
    background: linear-gradient(to bottom, #f4f4f4 60%, #e9e9e9);
}

/* ==============================
   카드별 이미지
============================== */
.img1 {
    background-image: url(../../public/img/discount/card_01.png);
}
.img2 {
    background-image: url(../../public/img/discount/card_02.png);
}
.img3 {
    background-image: url(../../public/img/discount/card_03.png);
}
.img4 {
    background-image: url(../../public/img/discount/card_04.png);
}
.img5 {
    background-image: url(../../public/img/discount/card_05.png);
}
.img6 {
    background-image: url(../../public/img/discount/card_06.png);
}
.img7 {
    background-image: url(../../public/img/discount/card_07.png);
}
.img8 {
    background-image: url(../../public/img/discount/card_08.png);
}
.img9 {
    background-image: url(../../public/img/discount/card_09.png);
}
.img10 {
    background-image: url(../../public/img/discount/card_10.png);
}
