* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@font-face {
    font-family: 'Ohsquare'; /* 폰트 이름 정의 */
    src: url('/fonts/Cafe24Ohsquare-v2.0.woff2') format('woff2'), /* 최신 브라우저 */
    url('/fonts/Cafe24Ohsquare-v2.0.woff') format('woff');   /* 구형 브라우저 */
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'OhsquareAir'; /* 폰트 이름 정의 */
    src: url('/fonts/Cafe24OhsquareAir-v2.0.woff2') format('woff2'), /* 최신 브라우저 */
    url('/fonts/Cafe24OhsquareAir-v2.0.woff') format('woff');   /* 구형 브라우저 */
    font-weight: normal;
    font-style: normal;
}
:root {
    --bg: #f6f1e6;
    --green: #14923a;
    --text: #111;
    --subtext: #666;
    --pattern: rgba(185, 164, 120, 0.18);
}

body {

    font-family: "Ohsquare","Pretendard", "Noto Sans KR", sans-serif;
    background: #111;
}
.air-font {
    font-family: "OhsquareAir";
}

.section-2 {
    position: relative;
    width: 100%;
   /* max-width: 768px; */
    margin: 0 auto;
    background-color: var(--bg);
    overflow: hidden;
    padding: 0 18px 72px;
    color: var(--text);
    isolation: isolate;
}

/* 배경 패턴 */
.section-2::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
            radial-gradient(circle at 12px 12px, transparent 11px, var(--pattern) 11.5px, var(--pattern) 12.5px, transparent 13px);
    background-size: 24px 24px;
    opacity: 0.9;
    z-index: -2;
}

/* 상단 검정 → 배경으로 자연스럽게 */
.top-fade {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(0, 0, 0, 0.72) 18%,
            rgba(0, 0, 0, 0.34) 42%,
            rgba(0, 0, 0, 0.08) 70%,
            rgba(246, 241, 230, 0) 100%
    );
}

.content {
    padding-top: 82px;
    text-align: center;
}

.headline-1 {
    margin-top:5%;
    font-size: 80px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.05em;
    margin-bottom: 2px;
    word-break: keep-all;
    color:#000;
}

.headline-2 {
    font-size: 100px;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.06em;
    margin-bottom: 18px;
    word-break: keep-all;
    color:#000;
}

.headline-2 .green {
    color: var(--green);
}

.sub-copy {
    font-size: 30px;
    line-height: 1.45;
    color: var(--subtext);
    letter-spacing: -0.04em;
    margin-bottom: 20px;
    word-break: keep-all;
}

.slider-wrap {
    position: relative;
    width: 100%;
    max-width: 640px;
    margin: 0 auto 14px;
}

.slider-frame {
    position: relative;
    overflow: hidden;
    border: 6px solid #3ca04d;
    border-radius: 6px;
    background: #ddd;
    box-shadow: 0 8px 22px rgba(0,0,0,0.18);
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}

.slide {
    flex: 0 0 100%;
    aspect-ratio:16/ 9;
    background: #ddd;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    margin-bottom: 36px;
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #bbb;
    transition: all 0.25s ease;
}

.dot.active {
    background: #3d6b32;
    transform: scale(1.15);
}

.bottom-copy {
    font-size: 40px;
    line-height: 1.45;
    letter-spacing: -0.055em;
    text-align: center;
    word-break: keep-all;
    color:#000;
}

.bottom-copy strong {
    font-weight: 900;
}

.highlight-box {
    display: inline-block;
    padding: 0 6px 2px;
    background: var(--green);
    color: #fff;
    border-radius: 3px;
    font-weight: 900;
    line-height: 1.05;
}

@media (max-width: 480px) {
    .section3-highlight {
        color: #ffe600;
        font-size:50px;
    }
    .section-2 {
        padding: 0 14px 42px;
    }

    .top-fade {
        height: 95px;
    }

    .content {
        padding-top: 74px;
    }

    .headline-1 {
        font-size: 30px;
    }

    .headline-2 {
        font-size: 40px;
    }

    .sub-copy {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .bottom-copy {
        font-size: 30px;
    }

    .dots {
        margin-bottom: 28px;
    }
}

@media (min-width: 1024px) {
    .section-2 {
        max-width: 100%;
        margin: 0;
    }
}
.section-3 {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-image: url(/img/main-top-bg.png);
    background-size: cover !important;
    background-position: center !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

/* 오버레이 */
.section3-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            to bottom,
            rgba(0,0,0,0.85),
            rgba(0,0,0,0.5),
            rgba(0,0,0,0.85)
    );
}

/* 콘텐츠 */
.section3-content {
    position: relative;
    z-index: 2;
   width:100%;
    padding: 40px 20px;
}

/* 메인 타이틀 */
.section3-main-title {
    font-weight: 400;
    font-size: 40px;
    line-height: 1.15;
    letter-spacing: -0.04em;
    text-shadow: 0 6px 25px rgba(0,0,0,0.6);
    margin-bottom: 20px;
}
.section3-main-title2 {
    font-weight: 400;
    font-size: 40px;
    line-height: 1.15;
    letter-spacing: -0.04em;
    text-shadow: 0 6px 25px rgba(0,0,0,0.6);
    margin-bottom: 20px;
}

/* 서브 */
.section3-sub-title {
    font-weight: 500;
    font-size: 22px;
    line-height: 1.4;
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
}

/* 영상 텍스트 */
.section3-video-label {
    font-size: 18px;
    opacity: 0.7;
    margin-bottom: 5%;
}

/* 하단 텍스트 */
.section3-bottom-text {
    font-size: 23px;
    line-height: 1.4;
    font-weight: 400;
}

/* 강조 */
.section3-highlight {
    color: #ffe600;
    font-size:1.3em;
    font-weight: 400;
}

/* 태블릿 */
@media (min-width: 768px) {
    .section3-main-title {
        font-size: 60px;
    }
    .section3-highlight {
        color: #ffe600;
        font-size:1.3em;
    }
    .section3-sub-title {
        font-size: 30px;
    }

    .section3-bottom-text {
        font-size: 36px;
    }
}

/* PC */
@media (min-width: 1024px) {
    .section3-main-title {
        font-size: 60px;
    }
    .section3-content {
        position: relative;
        z-index: 2;
        width:100%;
        padding: 7% 20px;
    }
    .section3-sub-title2 {
        font-size: 100px;
    }

    .section3-bottom-text {
        font-size: 48px;
    }
    .section3-main-title2 {
        font-weight: 4 00;
        font-size: 60px;
        line-height: 1.15;
        letter-spacing: -0.04em;
        text-shadow: 0 6px 25px rgba(0,0,0,0.6);
        margin-bottom: 20px;
    }
}

.section-5 {
    width: 100%;
    background: linear-gradient(
            to bottom,
            rgba(31,143,58,0.2) 0%,
            #1f8f3a 30%,
            #145c28 100%
    );
    padding: 14px;
}

/* 내부 박스 */
.section5-container {
    background: #efefef;
    border-radius: 6px;
    padding: 40px 20px;
    text-align: center;
}

/* 상단 카피 */
.section5-title-top {
    font-size: 20px;
    color: #444;
    margin-bottom: 12px;
}

/* 메인 타이틀 */
.section5-main-title {
    font-size: 35px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}

/* 강조 */
.section5-highlight {
    background: #1f8f3a;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
}

/* 이미지 */
.section5-image-wrap {
    margin-bottom: 10px;
}

.section5-image-wrap img {
    width: 100%;
    border-radius: 6px;
}

/* 캡션 */
.section5-caption {
    font-size: 12px;
    color: #777;
    margin-bottom: 24px;
}

/* 설명 */
.section5-desc {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}

/* 태블릿 */
@media (min-width: 768px) {
    .section5-main-title {
        font-size: 60px;
    }

    .section5-desc {
        font-size: 22px;
    }
}

/* PC */
@media (min-width: 1024px) {

    .section5-container {
      width:90%;
        margin: 0 auto;
        padding: 80px 60px;
    }

    .section5-main-title {
        font-size: 90px;
    }

    .section5-title-top {
        font-size: 28px;
    }

    .section5-desc {
        font-size: 26px;
    }
}

.section-6 {
    width: 100%;
    background: url("/img/page12-bg.png");
    padding: 60px 20px;
    text-align: center;
}

/* 내부 */
.section6-container {
    max-width: 900px;
    margin: 0 auto;
}

/* 상단 텍스트 */
.section6-top {
    font-size: 30px;
    color: #333;
    margin-bottom: 20px;
}

/* 핵심 숫자 */
.section6-price {
    font-size: 80px;
    font-weight: 900;
    line-height: 1;

    background: linear-gradient(
            to bottom,
            rgba(31,143,58,0.2) 0%,
            #1f8f3a 30%,
            #145c28 100%
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    margin-bottom: 20px;
}
/* 강조 */
.section6-highlight {
    display: inline-block;
    font-size: 40px;
    font-weight: 900;

    background: linear-gradient(
            to right,
            #1fc85b,
            #0f8a2d
    );

    color: #fff;
    padding: 5px;


    /* 👇 핵심 그림자 */
    text-shadow:
            0 2px 4px rgba(0,0,0,0.4),
            0 6px 12px rgba(0,0,0,0.3);
}

/* 영상 */
.section6-video-wrap {
    position: relative;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    margin:0 auto;
    max-width:540px;
    padding-top:45px;
}

.section6-video-wrap img {
    width: 100%;
    display: block;
}

/* 플레이 버튼 */
.section6-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: #fff;
    background: rgba(0,0,0,0.6);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section7 .marquee-track img {
    height: 200px;
}

.section7 .marquee-track img {
    height: 240px;
    width: auto;
    display: block;
    flex: 0 0 auto;
    position: relative;
    z-index: 2;
}
.section7 .marquee {
    background:#000;

}
/* 태블릿 */
@media (min-width: 768px) {
    .section6-price {
        font-size: 100px;
    }

    .section6-highlight {
        font-size: 36px;
    }

    .section7 .marquee-track img {
        height: 80px;
    }
}


/* PC */
@media (min-width: 1024px) {
    .section6-price {
        font-size: 140px;
    }

    .section6-top {
        font-size: 32px;
    }

    .section6-highlight {
        font-size: 50px;
    }
    .section7 .marquee-track img {
        height: 80px;
    }
}

.section-7 {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #ececec;
    padding: 0;
}
.section7-top-wave {
    position: relative;
    width: 100%;
    height: 120px; /* 높이는 필요 (이미지 영역 확보) */
    overflow: hidden;
}

.section7-top-wave::before {
    content: "";
    position: absolute;
    inset: 0;

    background: url("/img/section7-background.png") top center no-repeat;

    background-size: 100% auto; /* 👈 핵심 (가로 100%) */

 /*   transform: scaleY(-1); */
}

.section7-inner {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
    padding-top: 34px;
}

.section7-copy-top {
    font-size: 24px;
    line-height: 1.35;
    letter-spacing: -0.04em;
    color: #2b2b2b;
    margin-bottom: 12px;
    word-break: keep-all;
}

.section7-title {
    font-size: 42px;
    line-height: 1.22;
    letter-spacing: -0.055em;
    font-weight: 500;
    color: #111;
    word-break: keep-all;
}

.section7-title-green {
    display: inline-block;
    font-weight: 900;
    background: linear-gradient(
            to bottom,
            #11b23b 0%,
            #0d992f 42%,
            #076a1f 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section7-title-bold {
    font-weight: 400;
    color: #111;
}

.section7-polaroid-wrap {
    position: relative;
    width: 80%;
    max-width: 560px;
    margin: 46px auto 0;
    padding: 10px 0 0;
}

.section7-polaroid-back {
    position: absolute;
    inset: 18px 10px 6px 10px;
    background: #f8f8f8;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 18px 28px rgba(0,0,0,0.10);
    transform: rotate(-5deg);
    border-radius: 4px;
    z-index: 1;
}

.section7-polaroid {
    position: relative;
    background: #fafafa;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 4px;
    box-shadow: 0 18px 32px rgba(0,0,0,0.14);
    padding: 14px 14px 26px;
    transform: rotate(2deg);
    z-index: 2;
}

.section7-polaroid-image {
    width: 100%;
    aspect-ratio: 1 / 0.92;
    overflow: hidden;
    background: #ddd;
}

.section7-polaroid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.02) contrast(1.01);
}

.section7-polaroid-caption {
    padding-top: 16px;
    font-size: 30px;
    line-height: 1.35;
    letter-spacing: -0.05em;
    font-weight: 400;
    color: #111;
    word-break: keep-all;
    font-family: "OhSquare","Pretendard", "Noto Sans KR", sans-serif;
}

.section7-polaroid-sub {
    display: inline-block;
    margin-top: 4px;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 500;
    color: #444;
}

@media (max-width: 767px) {
    .section-7 {
        padding: 0 ;
    }
    .section7 .marquee-track img {
        height: 100px;
    }
    .section7-top-wave {
        position: relative;
        width: 100%;
        height: 120px; /* 높이는 필요 (이미지 영역 확보) */
        overflow: hidden;
    }

    .section7-top-wave::before {
        content: "";
        position: absolute;
        inset: 0;

        background: url("/img/page9-bottom.png") bottom center no-repeat;

        background-size: 100% auto; /* 👈 핵심 (가로 100%) */

        transform: scaleY(-1);
    }

    .section7-inner {
        padding: 30px 0;
    }

    .section7-copy-top {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .section7-title {
        font-size: 28px;
        line-height: 1.22;
    }

    .section7-polaroid-wrap {
        max-width: 290px;
        margin-top: 30px;
        margin-bottom:30px;
    }

    .section7-polaroid-back {
        inset: 12px 8px 4px 8px;
        transform: rotate(-4deg);
    }

    .section7-polaroid {
        padding: 10px 10px 18px;
        transform: rotate(2deg);
    }

    .section7-polaroid-caption {
        padding-top: 12px;
        font-size: 18px;
    }

    .section7-polaroid-sub {
        font-size: 12px;
    }
}

@media (min-width: 1024px) {
    .section-7 {
        padding-bottom: 200px ;
    }
    .top-copy {
        font-size: 60px;
    }

    .section7-polaroid-wrap {
        max-width:540px;
    }
    .section7-top-wave {
        position: relative;
        width: 100%;
        height: 320px; /* 높이는 필요 (이미지 영역 확보) */
        overflow: hidden;
    }
    .highlight {
        font-size: 120px;
    }
    .headline-1 {
        font-size:60px;
    }
    .section7-top-wave::before {
        content: "";
        position: absolute;
        inset: 0;

        background: url("/img/section7-background.png") top center no-repeat;

        background-size: 100% auto; /* 👈 핵심 (가로 100%) */

      /*  transform: scaleY(-1); */
    }
    .section7-copy-top {
        font-size: 42px;
        margin-bottom: 18px;
    }

    .section7-title {
        font-size: 78px;
        line-height: 1.18;
    }

    .section7-polaroid-wrap {
        max-width: 540px;
        margin-top: 62px;
    }

    .section7-polaroid-caption {
        font-size: 42px;
    }

    .section7-polaroid-sub {
        font-size: 26px;
    }
}

.section-8 {
    width: 100%;
    background: #f7f6f4;
    padding: 56px 14px 70px;
    overflow: hidden;
}

.section8-inner {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.section8-title {
    font-size: 32px;
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: -0.05em;
    margin-bottom: 28px;
    background: linear-gradient(
            to bottom,
            #16b53d 0%,
            #0f8d2f 48%,
            #08661f 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family:"OhSquare";
}

.section8-slider {
    width: 100%;
    overflow: hidden;
}

.section8-track {
    display: flex;
    transition: transform 0.55s ease;
    will-change: transform;
}

.section8-slide {
    flex: 0 0 100%;
    width: 100%;
}

.section8-main-image {
    width: 100%;
    border: 2px solid #7fb86c;
    background: #ddd;
    overflow: hidden;
    margin-bottom: 10px;
}

.section8-main-image img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 0.66;
    object-fit: cover;
}

.section8-thumb-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}

.section8-thumb {
    border: 2px solid #7fb86c;
    background: #ddd;
    overflow: hidden;
}

.section8-thumb img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 0.86;
    object-fit: cover;
}

.section8-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
}

.section8-dot {
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 50%;
    background: #555;
    opacity: 0.9;
    padding: 0;
    cursor: pointer;
}

.section8-dot.is-active {
    background: #3a9f46;
}

@media (max-width: 767px) {
    .section-8 {
        padding: 44px 10px 60px;
    }

    .section8-title {
        font-size: 22px;
        margin-bottom: 18px;
    }

    .section8-main-image {
        margin-bottom: 8px;
    }

    .section8-thumb-row {
        gap: 3px;
    }

    .section8-dots {
        gap: 8px;
        margin-top: 20px;
    }

    .section8-dot {
        width: 6px;
        height: 6px;
    }
}

@media (min-width: 1024px) {
    .section-8 {
        padding: 80px 24px 100px;
    }

    .section8-inner {
        max-width: 720px;
    }

    .section8-title {
        font-size: 64px;
        margin-bottom: 38px;
    }

    .section8-main-image {
        margin-bottom: 14px;
    }

    .section8-thumb-row {
        gap: 8px;
    }

    .section8-dots {
        margin-top: 34px;
    }

    .section8-dot {
        width: 10px;
        height: 10px;
    }
}

.section-9 {

    color: #fff;
    padding:  0px 20px 120px 20px;
    text-align: center;
    background-image: url(/img/page7-bg.png);
    background-size: cover !important;
    background-position: center !important;
}

.section9-inner {
    max-width: 1100px;
    margin: 0 auto;
}

/* 타이틀 */
.section9-title {
    font-size: 28px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 10px;
}

.section9-highlight {
    display: inline-block;
    background: #1fc85b;
    padding: 4px 10px;
    border-radius: 4px;
}

.section9-sub {
    font-size: 25px;
    opacity: 0.7;
    margin-bottom: 40px;
}

.section9-event {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 30px;
}

/* 🔥 핵심 그리드 */
.section9-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 모바일 2x2 */
    gap: 14px;
}

/* 카드 */
.section9-card {
    background: #f2f2f2;
    border-radius: 10px;
    overflow: hidden;
}

.section9-card-title {
    font-size:25px;
    background: #1f8f3a;
    color: #fff;
    padding: 12px;
    font-weight: 700;
}

.section9-card-price {
    font-size:30px;
    padding: 20px;

    font-weight: 900;
    color: #0f8a2d;
}

/* 하단 */
.section9-footer {
    margin-top: 20px;
    font-size: 25px;
    opacity: 0.7;
}

.floating-cta {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;

    background: linear-gradient(
            to bottom,
            #1fc85b,
            #0f8a2d
    );

    color: #fff;
    font-weight: 900;
    font-size: 16px;

    padding: 16px 22px;
    border-radius: 999px;

    text-decoration: none;

    box-shadow:
            0 8px 20px rgba(0,0,0,0.3),
            0 4px 10px rgba(0,0,0,0.2);

    transition: all 0.2s ease;
}

/* 클릭 느낌 */
.floating-cta:active {
    transform: scale(0.95);
}

/* PC 크게 */
@media (min-width: 1024px) {
    .floating-cta {
        font-size: 20px;
        padding: 20px 30px;
        right: 30px;
        bottom: 30px;
    }
    .section9-grid
    {
        grid-template-columns: repeat(4, 1fr);
    }
    .section9-sub {
        margin-bottom:72px;
    }
}
html {
    scroll-behavior: smooth;
}

.floating-cta {
    animation: float 1.5s infinite;
}

@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
.pop-text {
    display: block;
    animation: popStrong 1s infinite;
}

@keyframes popStrong {
    0%, 100% {
        transform: scale(0.75);
    }
    50% {
        transform: scale(1);
    }
}


@media (min-width: 1024px) {

    section9-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

    .section9-card {

        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .section9-card-title {
        font-size: 45px;
        padding: 18px;
    }

    .section9-card-price {
        font-size: 52px;
        font-weight: 900;
    }
    .section9-title {
        font-size: 80px;
    }
    .section9-event{
        font-size: 60px;
    }

}