@charset "UTF-8";

/* ==================== Common Styles ==================== */

*::selection {
    background-color: var(--color-primary);
    color: #fff;
}

h2 {
    font-family: 'jalnanGothic';
    font-weight: normal;
}

section {
    padding: 80px 40px;
}

.section-title {
    font-size: 50px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
}

.section-subtitle {
    font-family: 'jalnangothic';
    text-align: center;
    font-size: 3.5vw;
    color: #fff;
    opacity: 0.3;
    margin-bottom: 20px;
}

.btn {
    padding: 12px 25px;
    border: none;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    background: var(--color-primary);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn:hover {
    transform: translateY(-2px);
}

/* ==================== 더보기 (See More Link) ==================== */

.seemore {
    margin-left: auto;
    margin-bottom: 20px;
    width: fit-content;
    display: block;
    color: #fff;
    text-align: center;
    padding: 10px 50px 10px 20px;
    border-bottom: 5px solid #fff;
    position: relative;
    font-size: 24px;
}

.seemore::before {
    content: '';
    position: absolute;
    right: 12px;
    bottom: -9px;
    height: 40px;
    transform: rotate(-45deg);
    border-right: 5px solid #fff;
}

/* ==================== Main Content ==================== */

.main-content {
    margin-top: 100px;
}

/* ==================== Hero Section ==================== */

.hero {
    margin-top: 100px;
    padding: 0;
    height: 70dvh;
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slider-inner {
    justify-content: space-between;
    width: 100%;
}

.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #f1f1f1;
    z-index: 10;
}

.swiper-button-prev {
    left: 20px;
}

.swiper-button-next {
    right: 20px;
}

.swiper-pagination {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.swiper-pagination-bullet {
    background: #00A9DF55;
    opacity: 0.6;
}

.swiper-pagination-bullet-active {
    background: var(--color-primary);
    opacity: 1;
}

.hero-slider-inner img {
    height: 70dvh;
    width: 50%;
    object-fit: cover;
}

.hero-content {
    width: 45%;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}

.hero-content h1 {
    font-family: 'jalnanGothic';
    font-size: 4.4vw;
    color: var(--color-primary);
    line-height: 1.2;
}

.hero-content p {
    font-family: 'Cafe24Shiningstar';
    font-size: 2vw;
    color: #011921;
    margin: 0;
}

.hero-text {
    font-family: 'jalnangothic';
    font-size: 1.5vw;
}

.hero-text span {
    color: var(--color-primary);
}

.hero-buttons {
    text-align: center;
    gap: 15px;
    margin-bottom: 20px;
}

/* ==================== Story Section ==================== */
.story-section {
    background: url('../asset/img/story-bg.png');
    position: relative;
}

.story-logo img {
    margin: 0 auto;
    height: 80px;
    object-fit: contain;
}

.story-title {
    display: block;
    font-size: 4rem;
    color: #fff;
    text-shadow: 4px 4px 10px #00000065;
    text-align: center;
    margin-top: 40px;
    font-weight: normal;
}

.story-section .tree {
    position: absolute;
    top: 150px;
    left: 10%;
}

.story-section .tree.reverse {
    position: absolute;
    right: 10%;
    left: auto;
    transform: scaleX(-1);
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-shadow: 4px 4px 5px #00000085;
    margin-top: 40px;
    text-align: center;
    color: #fff;
    font-size: 1.5rem;
}

.story-text span {
    color: #f00;
}

.story-text.tree2 {
    position: relative;
}

.story-text {
    font-size: 2rem;
}

.tree2 {
    position: absolute;
    bottom: -10px;
    height: 70px;
    left: 50%;
    transform: translateX(-50%);
    object-fit: contain;
}

.story-banner {
    background: #E70012;
    padding: 20px 0;
}

.story-banner img {
    animation: blink 1s infinite;
    margin: 0 auto;
}

@keyframes blink {

    0%,
    49% {
        opacity: 1;
    }

    50%,
    100% {
        opacity: 0;
    }
}
/* ==================== img Section ==================== */
.img-section {
    background: #000;
}


.img-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: fit-content;
    margin: 20px auto;
}


/* ==================== Best Section ==================== */
.title-wrap {
    width: fit-content;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.title-wrap img {
    height: 80px;
    object-fit: cover;
}

.best-section {
    background: url('../asset/img/best-bg.png');
}

.best-content {
    margin: 0 auto;
    max-width: 800px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.best-text {
    padding: 5px 10px;
    border: 3px solid #Fff;
    border-radius: 50px;
    background: #00000065;
    color: #fff;
    text-align: center;
    font-size: 1.5rem;
    text-shadow: 4px 4px 5px #00000085;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    perspective: 1000px;
}

/* 스크롤 시 나타나는 상태 */
.best-text.visible {
    opacity: 1;
    transform: scale(1);
}

/* 개별 지연 효과 */
.best-text:nth-child(1) {
    transition-delay: 0s;
}

.best-text:nth-child(2) {
    transition-delay: 0.1s;
}

.best-text:nth-child(3) {
    transition-delay: 0.2s;
}

.best-text:nth-child(4) {
    transition-delay: 0.1s;
}

.best-text:nth-child(5) {
    transition-delay: 0.2s;
}

.best-text:nth-child(6) {
    transition-delay: 0.3s;
}


.best-text span {
    color: #f00;
}

/* ==================== Menu Section ==================== */

.menu-section {
    text-align: center;
    background: url('../asset/img/menu-bg.jpg');
    background-position: cover;
    overflow: hidden;
}

.menu-section h2 {
    font-size: 4rem;
}

.menu-text,
.menu-section p {
    display: block;
    width: fit-content;
    font-size: 2rem;
    padding: 1rem 2rem;
    border-top: 2px solid #333;
    border-bottom: 2px solid #333;
    margin: 20px auto;
}

.menu-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: fit-content;
    margin: 0 auto;
    overflow: hidden;
}

.menu-wrap img {
    max-width: 400px;
    opacity: 0;
}

/* .animate 클래스가 있을 때만 애니메이션 실행 */
.menu-wrap.animate img:nth-child(odd) {
    animation: slideInFromLeft 0.8s ease-out both;
}

.menu-wrap.animate img:nth-child(1) {
    animation-delay: 0.2s;
}

.menu-wrap.animate img:nth-child(3) {
    animation-delay: 1.4s;
}

.menu-wrap.animate img:nth-child(even) {
    animation: slideInFromRight 0.8s ease-out both;
}

.menu-wrap.animate img:nth-child(2) {
    animation-delay: 0.8s;
}

.menu-wrap.animate img:nth-child(4) {
    animation-delay: 2s;
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* ==================== Why Section ==================== */

.why-section {
    text-align: center;
    background: var(--color-primary);
}

.why-section h2,
.why-section p {
    color: #fff;
    text-shadow: 4px 4px 10px #00000065;
    width: fit-content;
    margin: 0 auto;
}

.why-section h2 {
    font-size: 4rem;
    padding-bottom: 20px;
    border-bottom: 4px solid #fff;
}

.why-section p {
    font-size: 2rem;
    margin-top: 20px;
}

.why-section .why-title {
    margin: 0 auto;
    margin-bottom: 20px;
    animation: blink 0.4s ease-in infinite;
}

.why-section .point-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px auto;
    width: fit-content;
    max-width: 1200px;
}

.why-section .point-wrap span {
    display: block;
    margin: 10px 0;
    font-size: 1.5rem;
    color: #fff;
    text-shadow: 4px 4px 4px #00000065;
}

.why-section .point-wrap .point {
    background: var(--color-accent);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 4px 4px 4px #00000065;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.why-section .point-wrap .point:nth-child(odd) {
    background-color: var(--color-highlight);
}

/* 스크롤 시 나타나는 상태 */
.why-section .point-wrap .point.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 개별 지연 효과 */
.why-section .point-wrap .point:nth-child(1) {
    transition-delay: 0s;
}

.why-section .point-wrap .point:nth-child(2) {
    transition-delay: 0.1s;
}

.why-section .point-wrap .point:nth-child(3) {
    transition-delay: 0.2s;
}

.why-section .point-wrap .point:nth-child(4) {
    transition-delay: 0.3s;
}

.why-section .point-wrap .point:nth-child(5) {
    transition-delay: 0.1s;
}

.why-section .point-wrap .point:nth-child(6) {
    transition-delay: 0.2s;
}

.why-section .point-wrap .point:nth-child(7) {
    transition-delay: 0.3s;
}

.why-section .point-wrap .point:nth-child(8) {
    transition-delay: 0.4s;
}

.why-cta {
    display: block;
    color: #fff;
    margin-top: 40px;
    text-shadow: 2px 2px 4px #00000065;
    font-size: 1.5rem;
    font-weight: normal;
}

.why-cta a {
    animation: blink 0.3s linear infinite;
    color: #E70012;
    background: #fff;
    padding: 5px 10px;
}

/* ==================== Brand Section ==================== */
.brand-section {
    background: url('../asset/img/brand-bg.jpg');
    text-align: center;
}

.brand-img {
    margin: 0 auto;
    height: 200px;
    object-fit: contain;
}

.brand-section h2 {
    margin: 40px 0;
    color: #fff;
    font-size: 3rem;
}

.brand-section p {
    display: block;
    padding: 5px 20px 3px;
    border-radius: 50px;
    background: #ffffff85;
    margin: 0 auto;
    width: fit-content;
    font-size: 2rem;
    color: #fff;
    text-shadow: 3px 3px 3px #00000065;
}

.brand-wrap {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    gap: 20px;
    width: fit-content;
    opacity: 0;
    transform: translateX(0);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.brand-wrap.visible {
    opacity: 1;
    transform: translateX(0);
}

.brand-t {
    margin: 20px auto;
}

.brand-text {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.brand-text.visible {
    opacity: 1;
    transform: translateY(0);
}

.brand-text span {
    padding: 3px 10px;
    background: #E70012;
}

.brand-ok {
    margin: 0 auto;
    display: flex;
    width: fit-content;
    margin-top: 20px;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.brand-ok.visible {
    opacity: 1;
    transform: scale(1);
}

.brand-ok img {
    margin: 0 auto;
    width: 40%;
    object-fit: contain;
}


/* ==================== News Section ==================== */

.news-section {
    position: relative;
    background: white;
    color: var(--color-primary);
    padding: 80px 40px;
}

.news-section .section-subtitle {
    color: var(--color-primary);
}

.news-section .seemore::before,
.news-section .seemore {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.news-content {
    justify-content: space-between;
    align-items: end;
    position: relative;
    gap: 20px;
}

.news-video {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 40px;
    height: 600px;
}

.news-gallery {
    display: none;
}

/* ==================== CTA Section ==================== */
.review-section {
    background: url('../asset/img/review-bg.jpg') no-repeat center /cover;
    text-align: center;
    position: relative;
}

.review-section>img:first-of-type {
    margin-bottom: 40px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.review-swiper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.review-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.review-card {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
    object-fit: cover;
}

.review-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.swiper-button-prev,
.swiper-button-next {
    color: #00A9DF;
    background: rgba(255, 255, 255, 0.9);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 20px;
    font-weight: bold;
}

.swiper-button-prev {
    left: 10px;
}

.swiper-button-next {
    right: 10px;
}

.swiper-pagination {
    bottom: -40px !important;
}

.swiper-pagination-bullet {
    background: #00A9DF;
    opacity: 0.4;
    width: 10px;
    height: 10px;
}

.swiper-pagination-bullet-active {
    background: #00A9DF;
    opacity: 1;
}

/* 반응형 */
@media screen and (max-width: 1024px) {
    .review-swiper {
        padding: 0 20px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 40px;
        height: 40px;
    }
}

@media screen and (max-width: 480px) {
    .review-section {
        padding: 40px 15px;
    }

    .review-swiper {
        padding: 0 10px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 35px;
        height: 35px;
        display: none !important;
    }

    .swiper-pagination {
        bottom: -30px !important;
    }

    .story-text {
        font-size: 1rem;
    }
}

/* ==================== CTA Section ==================== */

.cta-section {
    padding: 0;
    color: white;
    text-align: center;
}

.cta-section .section-container {
    width: 50%;
    padding: 100px 0;
}

.cta-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 300px;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content h2 img {
    height: 120px;
    display: inline-block;
}

.cta-content p {
    font-size: 28px;
    margin-bottom: 20px;
}

.cta-section .location {
    background: url(../asset/img/location-bg.jpg);
}

.cta-section .franchise {
    position: relative;
    overflow: hidden;
    background: var(--color-primary);
}

.cta-section .franchise::before {
    content: 'SSOMCHI';
    position: absolute;
    top: -3vw;
    left: 50%;
    transform: translateX(-50%);
    font-size: 7vw;
    font-family: 'jalnangothic', sans-serif;
    opacity: 0.2;
}

.cta-section .franchise::after {
    content: '썸타는치킨찜닭';
    position: absolute;
    bottom: -3vw;
    left: 50%;
    transform: translateX(-50%);
    font-size: 6vw;
    white-space: nowrap;
    font-family: 'jalnangothic', sans-serif;
    opacity: 0.2;
}

.cta-section .call {
    color: white;
    font-family: 'jalnangothic', sans-serif;
    font-size: 2vw;
}

strong.cta-btn {
    font-weight: normal;
    background: var(--color-highlight);
    border-radius: 30px;
    padding: 10px;
    font-size: 2rem;
    border: 2px solid #fff;
    box-shadow: 4px 4px 4px #00000065;
    text-shadow: 2px 2px 4px #00000065;
    animation: blink 0.5s linear infinite;
    color: #000;
    font-family: 'JalnanGothic';
    text-align: center;
    display: block;
    max-width: 800px;
    margin: 20px auto !important;
}

/* ==================== Mobile: 1280px ==================== */

@media screen and (max-width: 1280px) {
    .news-content {
        display: none;
    }

    .news-video {
        gap: 10px;
    }

    .news-gallery {
        display: flex;
        flex-direction: row;
        gap: 10px;
        height: auto;
    }

    .main-video {
        width: 100%;
        height: fit-content;
    }

    .main-video video {
        width: 100%;
        height: auto;
        height: 60%;
        object-fit: cover;
        border-radius: 8px;
    }

    .thumbnail-list {
        width: 40%;
        display: flex;
        flex-direction: column;
        gap: 10px;
        overflow-y: auto;
    }

    .thumb-video {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 6px;
        cursor: pointer;
        opacity: 0.7;
        transition: 0.3s;
    }

    .thumb-video:hover {
        opacity: 1;
    }

    .news-section::after,
    .news-section::before {
        display: none;
    }
}

/* ==================== Mobile: 1024px ==================== */

@media screen and (max-width: 1024px) {
    .main-content {
        margin-top: 40px;
    }

    section {
        padding: 40px 15px;
    }

    .section-title {
        font-size: 40px;
        margin-bottom: 0;
    }

    .section-subtitle {
        font-size: 5vw;
    }

    .seemore {
        padding: 10px 40px 5px 10px;
        border-bottom: 3px solid #fff;
        font-size: 20px;
    }

    .seemore::before {
        border-right: 3px solid #fff;
    }

    .menu-section .seemore,
    .menu-section .seemore::before {
        border-color: var(--color-primary);
        color: var(--color-primary);
    }

    /* Hero */
    .hero {
        height: fit-content;
    }

    .hero-content {
        padding: 0 15px;
        width: 100%;
        gap: 10px;
    }

    .hero-slider-inner {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .hero-container img {
        width: 100%;
        height: auto;
    }

    .hero-content h1 {
        font-size: 10vw;
    }

    .swiper-button-prev,
    .swiper-button-next {
        top: 75%;
    }

    .swiper-button-prev {
        left: 10px;
    }

    .swiper-button-next {
        right: 10px;
    }

    .hero-content p {
        font-size: 6vw;
    }

    .hero-buttons {
        width: 100%;
        margin-bottom: 10px;
        justify-content: space-between;
    }

    .hero-buttons .btn {
        width: 50%;
        padding: 8px;
        font-size: 16px;
    }

    .hero-text {
        font-size: 3vw;
    }

    /* News */
    .news-section {
        padding: 40px 15px;
    }

    .news-section .section-subtitle {
        font-size: 5.5vw;
    }

    .news-content {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    /* Review */
    .review-card {
        flex: 0 0 calc(50% - 10px);
    }

    /* CTA */
    .cta-section {
        flex-direction: column;
    }

    .cta-section .location,
    .cta-section .franchise {
        width: 100%;
    }

    .cta-section .location {
        background-position: center;
    }

    .cta-section .franchise::before,
    .cta-section .franchise::after {
        font-size: 14vw;
    }

    .cta-section .franchise::before {
        top: -5vw;
    }

    .cta-section .franchise::after {
        bottom: -7vw;
    }

    .cta-content h2 {
        font-size: 36px;
    }

    .cta-content p {
        margin: 0 auto 20px;
        width: 60%;
        font-size: 20px;
    }

    .cta-section .call {
        font-size: 24px;
    }
}

/* ==================== Mobile: 480px ==================== */

@media screen and (max-width: 480px) {
    section {
        padding: 40px 15px;
    }

    /* ==================== Hero Section ==================== */

    .hero {
        margin-top: 80px;
    }

    .hero-content {
        gap: 5px;
    }

    .hero-text {
        font-size: 4.8vw;
    }

    .hero-slider-inner {
        gap: 5px;
    }

    .hero-slider-inner img {
        height: 270px;
        object-fit: cover;
    }

    /* ==================== Story Section ==================== */

    .story-title {
        font-size: 1.5rem;
    }

    .story-content {
        font-size: 1.05rem;
    }


    /* ==================== Best Section ==================== */

    .best-content {
        grid-template-columns: 1fr 1fr;
    }

    .title-wrap img {
        height: 50px;
    }

    .best-text {
        font-size: 0.85rem;
    }

    /* ==================== Menu Section ==================== */

    .menu-section h2 {
        font-size: 2rem;
    }

    .menu-text,
    .menu-section p {
        font-size: 0.95rem;
        padding: 1rem 0;
    }

    .menu-wrap {
        grid-template-columns: 1fr;
    }

    .menu-wrap img {
        max-width: 100%;
    }


    /* ==================== Why Section ==================== */

    .why-section h2 {
        font-size: 1.5rem;
    }

    .why-section p {
        font-size: 1rem;
    }

    .why-section .point-wrap span {
        font-size: 0.9rem;
    }

    .why-section .point-wrap {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    /* ==================== Brand Section ==================== */
    .brand-section h2 {
        font-size: 1.5rem;
    }

    .brand-section p {
        font-size: 1.2rem;
    }

    .brand-text {
        font-size: 1.2rem;
    }

    .brand-wrap img {
        width: 40%;
    }

    /* ==================== News Section ==================== */

    .thumb-video {
        height: 100px;
    }

    .news-section {
        padding-bottom: 20px;
    }

    .news-gallery {
        display: flex;
        flex-direction: column;
    }

    .thumbnail-list {
        width: 100%;
        flex-direction: row;
    }

    .review-card {
        flex: 0 0 calc(100% - 20px);
    }

    /* ==================== Review Section ==================== */

    .review-section {
        padding: 40px 15px;
    }

    strong.cta-btn {
        font-size: 1rem;
    }
}