/* 기본 스타일 초기화 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0b0713;
    color: #ffffff;
    font-family: 'Noto Sans KR', sans-serif;
    line-height: 1.6;
}

/* 성인 인증 경고문 */
.age-warning {
    background-color: #ff3b30;
    color: #fff;
    text-align: center;
    padding: 8px 10px;
    font-size: 12px;
    font-weight: bold;
}

/* 1. 헤더 수정 (오른쪽 하단 정렬을 위한 설정) */
.signboard-header {
    width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('간판.png');
    background-size: cover; 
    background-position: center center;
    background-repeat: no-repeat;
    border-bottom: 2px solid #333333;
    min-height: 300px; 
    padding: 20px;
    
    /* 여기서 align-items를 flex-end로 바꾸어 로고와 버튼을 아래로 붙입니다 */
    display: flex;
    justify-content: space-between;
    align-items: flex-end; 
    
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-sign {
    display: flex;
    flex-direction: column;
    letter-spacing: 1px;
}

.logo-sign .main-title {
    color: #ffffff; /* 흰색 글씨 */
    font-size: 22px;
    font-weight: 900;
    text-shadow: 0 0 8px rgba(255,255,255,0.3);
}

.logo-sign .sub-title {
    color: #ffd700; /* 포인트 골드 컬러 */
    font-size: 10px;
    font-weight: bold;
    margin-top: -2px;
}

/* 전화예약 버튼 */
.btn-call {
    background: linear-gradient(135deg, #ff0055, #bf003f);
    color: white;
    padding: 10px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(255,0,85,0.4);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: transform 0.2s;
    
    /* 오른쪽 하단 구석으로 정렬 */
    margin-right: 15px;
    margin-bottom: 15px;
}

.btn-call:active {
    transform: scale(0.95);
}
/* 메인 인트로 (Hero) */
.hero {
    background: linear-gradient(rgba(11, 7, 19, 0.85), rgba(11, 7, 19, 0.95)), url('https://images.unsplash.com/photo-1514525253161-7a46d19cd819?q=80&w=1000') no-repeat center center/cover;
    padding: 60px 20px;
    text-align: center;
}

.hero h2 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 300;
}

.hero h2 strong {
    color: #ffd700;
    font-weight: 900;
}

.hero p {
    font-size: 15px;
    color: #cccccc;
    max-width: 500px;
    margin: 0 auto;
}

/* SNS 실시간 채널 버튼 */
.sns-channels {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 25px;
    flex-wrap: wrap;
}

.btn-kakao, .btn-telegram {
    padding: 14px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-kakao {
    background-color: #fee500;
    color: #221212;
}

.btn-telegram {
    background-color: #0088cc;
    color: white;
}

/* 사진 갤러리 슬라이더 스타일 */
.gallery-section {
    max-width: 600px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;
}

.gallery-desc {
    color: #a095b5;
    font-size: 14px;
    margin-bottom: 20px;
}

.slider-container {
    width: 100%;
    margin-top: 20px;
}

.slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 15px;
    padding-bottom: 20px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
    
    /* 여기서 !important를 추가해 강제로 적용합니다 */
    cursor: grab !important; 
}

/* 마우스로 잡고 끌 때 손 모양 */
.slider:active {
    cursor: grabbing;
}

.slider::-webkit-scrollbar {
    display: none;
}

.slide {
    flex: 0 0 80%;
    scroll-snap-align: center;
}

.slide img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #3d2763;
}

.slider-desc {
    font-size: 12px;
    color: #888;
    margin-top: 10px;
}

/* 정보 섹션 공통 스타일 */
section {
    max-width: 600px;
    margin: 40px auto;
    padding: 0 20px;
}

h3 {
    font-size: 20px;
    color: #ffd700;
    margin-bottom: 20px;
    border-left: 4px solid #ff0055;
    padding-left: 10px;
}

.info-box {
    background-color: #160f24;
    border: 1px solid #2e1f47;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.info-box strong {
    color: #ff0055;
}

/* 가격 카드 */
.price-card {
    background: linear-gradient(135deg, #25173e, #160f24);
    border: 2px solid #ffd700;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(255,215,0,0.1);
}

.price-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.price-card .price {
    font-size: 22px;
    color: #ffd700;
    font-weight: bold;
    margin-bottom: 15px;
}

.price-card .desc {
    font-size: 14px;
    color: #b5a9cc;
}

.event-box {
    background-color: #1f1212;
    border: 1px dashed #ff3b30;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    font-size: 14px;
    color: #ffb3b3;
}

/* 영업 정보 위치 스타일 */
.info p {
    margin-bottom: 12px;
    font-size: 15px;
}

.info p strong {
    color: #ffd700;
    display: inline-block;
    width: 80px;
}

/* 푸터 */
footer {
    text-align: center;
    padding: 40px 20px;
    font-size: 12px;
    color: #666666;
    border-top: 1px solid #1c152b;
    margin-top: 60px;
}
/* 전화 문의 버튼 스타일 추가 */
.btn-tel {
    background-color: #ffffff; /* 흰색 바탕 */
    color: #000000;           /* 검은 글씨 */
    padding: 14px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
/* 모바일 화면(600px 이하)일 때 */
@media (max-width: 600px) {
    .signboard-header {
        /* 높이를 고정하지 않고 비율로 자동 조절하게 함 */
        min-height: auto;
        aspect-ratio: 2 / 1; 
        
        /* 사진이 영역에 꽉 차게 보이도록 설정 */
        background-size: cover;
        background-position: center center;
        
        /* 모바일용 패딩 조정 */
        padding: 10px;
    }
}
/* 이미지 우클릭 및 드래그 방지 */
img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    /* pointer-events: none;  <-- 이 줄을 지우거나 주석 처리하세요 */
}

/* 슬라이더 내 이미지는 드래그가 가능하게 보장 */
.slider img {
    pointer-events: auto;
}
/* 고급스러운 무드를 위한 스타일 추가 */
.price-card {
    background: linear-gradient(145deg, #1f1235, #100a1a) !important;
    border: 1px solid rgba(255, 215, 0, 0.3) !important;
}

h3 {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}
h3::after {
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    background: #ffd700;
    margin: 10px auto 0;
}

.info-box {
    background: rgba(22, 15, 36, 0.6) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-left: 3px solid #ffd700 !important;
}
/* 가독성 및 고급 스타일 통합 */
body { font-size: 17px !important; line-height: 1.7 !important; }
h3 { font-size: 1.6em !important; border-left: 4px solid #ffd700 !important; padding-left: 15px !important; margin-bottom: 25px !important; }

.price-card { background: linear-gradient(145deg, #1f1235, #100a1a) !important; border: 1px solid rgba(255, 215, 0, 0.3) !important; }
.info-box { background: rgba(22, 15, 36, 0.6) !important; border-left: 3px solid #ffd700 !important; }

.btn-call, .btn-tel { padding: 18px 30px !important; font-size: 1.2em !important; border-radius: 10px !important; }

/* 갤러리 슬라이더 및 기타 요소는 기존 스타일 유지 */
