/* 웹 폰트 임포트 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700;900&display=swap');

/* 기본 리셋 및 설정 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

/* 컨테이너 */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* 메인 배너 */
.main-banner {
    height: 60vh;
    background-image: url(/images/background.jpg);
    background-size: cover;
    background-position: center;
    background-color: rgba(0, 0, 0, 0.83);
    background-blend-mode: darken;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 0;
    padding: 0 20px;
}

.banner-content {
    max-width: 800px;
}

.banner-content h1 {
    font-size: 70px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    padding-bottom: 30px;
}

.banner-content h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 5px;
    background-color: #FFC107;
}


.banner-content p {
    font-size: 19px;
    font-weight: 700;
    line-height: 1.8;
}

.banner-btn-wrapper {
    padding-top: 40px;
}

.banner-btn-wrapper a {
    background: rgb(75 75 75);
    font-weight: 700;
    color: #fff;
    padding: .75rem 2rem;
    border-radius: 9999px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* 소개 섹션 */
.intro-section {
    padding: 80px 0;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title:after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: #333;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.intro-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.intro-text {
    flex: 1;
    min-width: 300px;
}

.intro-text h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    padding-bottom: 10px;
    position: relative;
}

.intro-text h1:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: #333;
}

.intro-text p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #555;
}

.intro-text strong {
    font-style: italic;
    font-size: 17px;
}

.intro-image {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 300px;
    transition: transform 0.3s ease;
    transition-duration: .5s;
}

.intro-image:hover {
    transform: translateY(-2px);
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.intro-image:hover img {
    transform: scale(1.05);
}


.services-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    font-size: 23px;
    margin: 0;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.service-card h3:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
}

.service-card p {
    color: #333;
    font-size: 16px;
    line-height: 1.7;
}

.service-title-1 {
    color: #28a745;
}

.service-title-1:after {
    background-color: #28a745;
}

.service-title-2 {
    color: #fd7e14;
}

.service-title-2:after {
    background-color: #fd7e14;
}

.service-title-3 {
    color: #007bff;
}

.service-title-3:after {
    background-color: #007bff;
}

/* 내부 소개 섹션 */
.rooms-section {
    padding: 80px 0;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.room-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 400px;
    transition: all 0.3s ease;
}

.room-image:hover {
    transform: translateY(-5px);
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.3s ease;
}

.room-image img:hover {
    transform: scale(1.02);
}

.room-large {
    height: 450px;
    margin-top: 30px;
}

/* 위치 섹션 */
.location-section {
    padding: 100px 0;
    background-color: #f5f5f5;
    position: relative;
}

.location-section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.02) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, 0.02) 50%, rgba(0, 0, 0, 0.02) 75%, transparent 75%, transparent);
    background-size: 10px 10px;
    opacity: 0.5;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    position: relative;
    z-index: 1;
}

/* 채널 래퍼 스타일 */
.channel-wrapper {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #333333 100%);
    position: relative;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    padding: 2.5rem;
    color: #fff;
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
}

.channel-wrapper:before {
    content: "";
    position: absolute;
    top: -10%;
    right: -10%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.channel-wrapper:after {
    content: "";
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.channel-title {
    font-size: 28px;
    font-weight: 700;
    padding-bottom: 15px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.channel-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #fff;
}

.channel-item {
    margin-bottom: 30px;
    z-index: 10;
    position: relative;
}

.channel-inner {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.channel-icon {
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.kakao-icon {
    background-color: rgba(251, 191, 36, 1);
}

.telegram-icon {
    background-color: rgba(59, 130, 246, 1);
}


.tel-icon {
    background-color: rgba(16, 185, 129, 1);
}


.channel-info {
    flex: 1;
}

.channel-tit {
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    margin-bottom: 5px;
}

.channel-txt {
    color: rgba(209, 213, 219, 1);
    font-size: 17px;
}

.channel-btn {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    width: 100%;
    display: block;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
}

.channel-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 10px -1px rgba(0, 0, 0, 0.2), 0 3px 6px -1px rgba(0, 0, 0, 0.12);
}

.kakaotalk-btn {
    color: #000;
    background-color: rgba(251, 191, 36, 1);
}

.kakaotalk-btn:hover {
    background-color: rgba(245, 158, 11, 1);
}


.telegram-btn {
    background-color: rgba(59, 130, 246, 1);
    color: #fff;
}

.telegram-btn:hover {
    background-color: rgba(37, 99, 235, 1);
}


.tel-btn {
    background-color: rgba(16, 185, 129, 1);
    color: #fff;
}

.tel-btn:hover {
    background-color: rgba(5, 150, 105, 1);
}

.map-btn {
    background-color: rgba(99, 102, 241, 1)
}

.map-btn:hover {
    background-color: rgba(79, 70, 229, 1);
}

/* 위치 래퍼 스타일 */
.location-wrapper {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #333333 100%);
    position: relative;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    padding: 2.5rem;
    color: #fff;
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
}

.location-wrapper:before {
    content: "";
    position: absolute;
    top: -10%;
    right: -10%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.location-wrapper:after {
    content: "";
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.location-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    padding-bottom: 15px;
    position: relative;
    z-index: 2;
}

.location-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #fff;
}

.location-content {
    position: relative;
    z-index: 2;
}

.location-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
}

.location-item.map-item {
    margin-bottom: 0 !important;
    margin-top: 85px !important;;
}

.align-item-center {
    align-items: center;
}

.location-icon-wrapper {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    margin-top: 4px;
}

.location-info {
    flex: 1;
}

.location-text {
    font-size: 17px;
    line-height: 1.6;
}

.location-subtext {
    font-size: 14px;
    color: rgba(209, 213, 219, 0.8);
    margin-top: 4px;
}

/* 연락처 섹션 */
.contact-section {
    padding: 80px 0;
    text-align: center;
    background-color: #111;
    color: #fff;
}

.contact-section .section-title {
    color: #fff;
}

.contact-section .section-title:after {
    background-color: #fff;
}

.contact-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.contact-button {
    display: inline-block;
    background-color: rgba(16, 185, 129, 1);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 50px;
    margin-top: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-button:hover {
    background-color: rgba(10, 160, 110, 1);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* 푸터 */
footer {
    background-color: #000;
    color: #fff;
    padding: 30px 0;
}

.footer-content {
    text-align: center;
}

.footer-content p {
    margin-bottom: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.copyright {
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

/* 모바일 대응 */
@media (max-width: 992px) {
    .intro-content,
    .contact-container {
        flex-direction: column;
    }

    .intro-image,
    .channel-wrapper,
    .location-wrapper {
        width: 100%;
    }

    .service-card {
        min-width: 45%;
    }
}

@media (max-width: 768px) {
    .main-banner {
        height: 50vh;
    }

    .banner-content h1 {
        font-size: 48px;
    }

    .banner-content p {
        font-size: 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .intro-text h1 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .intro-text p {
        font-size: 15px;
    }

    .service-card {
        min-width: 100%;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
    }

    .channel-wrapper,
    .location-wrapper {
        padding: 25px;
    }

    .channel-title,
    .location-title {
        font-size: 24px;
    }

    .channel-tit,
    .location-text {
        font-size: 16px;
    }

    .channel-txt,
    .location-subtext {
        font-size: 14px;
    }

    .channel-icon {
        width: 40px;
        height: 40px;
    }

    .location-section {
        padding: 70px 0;
    }

    .intro-text {
        order: 2;
    }

    .intro-image {
        order: 1;
        height: 200px;
    }

    .intro-image img {
        height: 200px;
    }
}

.d-none {
    display: none !important;
}
