@charset "utf-8";

/* ==================================================
   ★ 합천운석수제맥주 스타일 (최종 통합본)
   ================================================== */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;700;900&display=swap');

html { overflow-y: scroll; height: 100%; }
body { 
    margin: 0; padding: 0; 
    font-family: 'Noto Sans KR', 'Malgun Gothic', dotum, sans-serif; 
    background: #050505; 
    color: #fff; 
    font-size: 0.95em; 
}

/* 기본 리셋 */
html, h1, h2, h3, h4, h5, h6, form, fieldset, img { margin: 0; padding: 0; border: 0; }
ul, dl, dt, dd { margin: 0; padding: 0; list-style: none; }
a { color: #fff; text-decoration: none; }
p { word-break: break-all; }
img { max-width: 100%; vertical-align: middle; }

/* 레이아웃 */
#hd, #wrapper, #ft { width: 100%; min-width: 1200px; }
.inner { max-width: 1200px; margin: 0 auto; position: relative; padding: 0 20px; box-sizing: border-box; }

/* ==================================================
   ★ 헤더 (높이 120px, 로고 100px)
   ================================================== */
/* ==================================================
   ★ 헤더 (상단 메뉴) - 마우스 오버 효과 적용
   ================================================== */
#hd {
    position: absolute;
    top: 0 !important; 
    left: 0 !important; 
    width: 100%; 
    height: 120px; 
    
    /* [수정] 평소에는 배경과 선을 투명하게 설정 */
    background: transparent; 
    border-bottom: 1px solid transparent; 
    
    z-index: 1000;

    /* [수정] 0.5초 동안 부드럽게 변하는 효과 */
    transition: background 0.5s ease, border-bottom 0.5s ease;
}

/* [수정] 마우스를 올렸을 때(Hover) 배경이 진한 검정색으로 변함 */
#hd:hover {
    background: rgba(0,0,0,0.95); 
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

#hd_wrapper { 
    position: relative; 
    width: 100%; 
    max-width: 1400px; 
    margin: 0 auto; 
    height: 120px; 
}

/* 로고 */
#logo { position: absolute; top: 50%; left: 30px; transform: translateY(-50%); z-index: 1002; }
#logo img { height: 100px; width: auto; }

/* 메뉴 (중앙 정렬) */
#gnb {
    position: absolute; top: 0; left: 50%; transform: translateX(-50%); 
    height: 120px; z-index: 1001; background: none !important;
}
.gnb_wrap { width: auto !important; margin: 0 auto !important; background: none !important; background-color: transparent !important; }
#gnb_1dul { display: flex; align-items: center; height: 120px; margin: 0; padding: 0; }
#gnb_1dul > li { float: none !important; display: block; padding: 0 30px; background: none !important; }
.gnb_1da { display: block; color: #fff !important; font-size: 1.25rem; font-weight: 700; white-space: nowrap; text-align: center; }
.gnb_1da:hover { color: #fca311 !important; }

/* 우측 로그인 */
.hd_login { position: absolute; top: 50%; right: 30px; transform: translateY(-50%); }
.hd_login li { float: left; margin-left: 10px; }
.hd_login a { font-size: 0.8rem; font-weight: 500; color: #ccc; border: 1px solid #555; padding: 8px 15px; border-radius: 20px; }
.hd_login a:hover { border-color: #fca311; color: #fca311; }

#tnb, .hd_sch_wr, #hd_define, #hd_qnb { display: none !important; }

/* ==================================================
   ★ 메인 콘텐츠
   ================================================== */
.sec_comm { padding: 100px 0; background-color: #050505; }
.sec_tit_box { text-align: center; margin-bottom: 60px; }
.sec_tit { font-size: 2.5rem; font-weight: 800; color: #fca311; margin-bottom: 15px; }
.sec_sub { font-size: 1.1rem; color: #aaa; }

#mv_visual {
    position: relative; width: 100%; height: 100vh;
    background: url('../img/main_visual.jpg') no-repeat center center; background-size: cover;
    display: flex; align-items: center; justify-content: center; text-align: center;
}
.mv_bg_overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.4); z-index: 1; }
.mv_content { position: relative; z-index: 2; padding-top: 80px; }
.mv_tit { font-size: 4.5rem; line-height: 1.1; font-weight: 900; color: #fff; margin-bottom: 30px; text-shadow: 0 0 30px rgba(0,0,0,0.8); }
.mv_sub_tit { font-size: 1.5rem; margin-bottom: 20px; letter-spacing: 2px; }
.mv_desc { font-size: 1.2rem; color: #ddd; margin-bottom: 40px; line-height: 1.6; }
.btn_brand { padding: 15px 50px; border: 2px solid #fca311; color: #fca311; font-weight: bold; font-size: 1.2rem; transition: 0.3s; }
.btn_brand:hover { background: #fca311; color: #000; }

.intro_grid { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.intro_img { flex: 1; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.intro_img img { width: 100%; display: block; }
.intro_txt { flex: 1; text-align: left; }
.intro_txt h4 { font-size: 2rem; color: #fff; margin-bottom: 30px; font-weight: 700; }
.intro_txt p { color: #bbb; line-height: 1.8; margin-bottom: 20px; font-size: 1.1rem; }
.btn_more { color: #fca311; font-weight: bold; font-size: 1.1rem; text-decoration: underline; }

.lineup_list { display: flex; justify-content: center; gap: 30px; }
.ln_item { width: 30%; background: #111; border: 1px solid #222; border-radius: 15px; overflow: hidden; transition: 0.3s; }
.ln_item:hover { transform: translateY(-10px); border-color: #fca311; }
.ln_img { height: 300px; background: #000; display: flex; align-items: center; justify-content: center; }
.ln_img img { width: 100%; height: 100%; object-fit: contain; } 
.ln_info { padding: 30px; text-align: center; }
.ln_info h4 { font-size: 1.4rem; color: #fff; margin-bottom: 10px; font-weight: 700; }
.ln_info p { color: #888; font-size: 1rem; line-height: 1.5; }

#mv_contact { background: #0b1e3b; padding: 100px 20px; text-align: center; }
.contact_inner h3 { font-size: 3rem; margin-bottom: 20px; }
.info_box span { display: inline-block; margin: 0 20px; font-size: 1.2rem; }
.info_box i { color: #fca311; margin-right: 10px; }
.btn_map { display: inline-block; margin-top: 30px; background: #fca311; color: #000; padding: 15px 40px; border-radius: 30px; font-weight: bold; }

/* ==================================================
   ★ [핵심 수정] 서브 페이지 스타일 (중앙 정렬 & 배경 복구)
   ================================================== */
/* 1. 서브 비주얼 배너 */
.sub_visual {
    position: relative; width: 100%; height: 400px; 
    background: url('../img/main_visual.jpg') no-repeat center center; 
    background-size: cover; 
    display: flex; align-items: center; justify-content: center; 
    margin-bottom: 0px; /* 검은 띠 제거를 위해 0으로 */
}
.sub_visual::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 1; }
.sub_tit { 
    position: relative; z-index: 2; 
    font-size: 3.5rem; font-weight: 800; color: #fff; 
    text-shadow: 0 0 20px rgba(0,0,0,0.8); 
    margin-top: 120px; 
}

/* 2. 그누보드 컨텐츠 영역 강제 중앙 정렬 */
#wrapper #container_sub #container { 
    background: none !important; border: none !important; box-shadow: none !important; 
    width: 100% !important; /* 전체 폭 사용 */
    display: flex; justify-content: center; /* 내용 중앙 정렬 */
}
#ctt { 
    width: 100% !important; max-width: 1200px; /* 최대 폭 제한 */
    padding: 20px 0 !important; margin: 0 auto !important; 
    background: transparent !important; border: none !important; 
    float: none !important; /* 왼쪽 정렬 해제 */
}
#ctt h2 { display: none; }
#ctt_con { background-color: transparent !important; color: #fff !important; padding: 0 !important; width: 100% !important; }

/* 에디터 인라인 스타일 무력화 */
#ctt_con div, #ctt_con p, #ctt_con span { background-color: transparent !important; background: transparent !important; }

/* 3. 인사말 박스 디자인 (심플 배경 복구 & 중앙 정렬) */
.greeting_box { 
    text-align: center; 
    max-width: 1000px; 
    margin: 60px auto 100px; /* 상하 여백으로 중앙 배치 */
    padding: 60px 40px; 
    border: 1px solid rgba(255,255,255,0.1); 
    border-radius: 20px;
    
    /* ★ 요청하신 심플하고 은은한 배경으로 복구 */
    background: rgba(255,255,255,0.02); 
}
.gr_slogan { font-size: 2.5rem; color: #fca311; font-weight: 700; margin-bottom: 50px; line-height: 1.3; }
.gr_txt { font-size: 1.15rem; color: #e5e5e5; line-height: 1.8; margin-bottom: 40px; }
.sign_area { margin-top: 60px; text-align: center; color: #fff; font-size: 1.3rem; }

/* 푸터 */
#ft { background: #0b1e3b; border-top: 1px solid #222; padding: 60px 0; color: #888; text-align: center; }
#ft_link { margin-bottom: 30px; }
#ft_link a { display: inline-block; margin: 0 15px; color: #ccc; font-weight: 500; font-size: 1rem; }
#ft_link a:hover { color: #fca311; text-decoration: underline; }
#ft_company { margin-bottom: 30px; line-height: 1.8; }
#ft_company h2 { color: #fff; font-size: 1.3rem; margin-bottom: 15px; font-weight: 700; }
#ft_company strong { color: #fff; font-size: 1.1rem; display: block; margin-bottom: 5px; }
#ft_company span { display: inline-block; margin: 0 10px; }
#ft_copy { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; margin-top: 20px; font-size: 0.9rem; color: #666; }

/* ==================================================
   ★ [수정] 상단 이동 버튼 (왼쪽 고정 / 화살표만 표시)
   ================================================== */
#top_btn {
    position: fixed;      /* 화면에 고정 (따라다님) */
    bottom: 30px;         /* 바닥에서 30px 위 */
    right: 30px;           /* ★ 수정: 오른쪽(right) -> 왼쪽(left)으로 변경 */
    
    width: 50px; 
    height: 50px;
    line-height: 50px;    /* 수직 중앙 정렬 */
    
    background: #fca311;  /* 브랜드 황금색 */
    color: #000;          /* 화살표 검은색 */
    border: 0;
    border-radius: 5px;   /* 둥근 사각형 */
    
    cursor: pointer;
    z-index: 9999;        /* 제일 위에 뜨게 */
    font-size: 20px;      /* 화살표 크기 */
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3); /* 그림자 효과 */
    transition: 0.3s;
}

/* 마우스 올렸을 때 효과 */
#top_btn:hover {
    background: #fff;     /* 배경 흰색으로 변경 */
    color: #fca311;       /* 화살표 황금색으로 변경 */
    transform: translateY(-5px); /* 살짝 위로 올라가는 애니메이션 */
}

/* 혹시 모를 텍스트 숨김 처리 (아이콘만 남기기 위함) */
#top_btn span {
    display: none !important;
}



@media (max-width: 768px) {
    .intro_grid, .lineup_list { flex-direction: column; }
    .ln_item { width: 100%; margin-bottom: 20px; }
    #gnb { display: none; }
    #ft_company span { display: block; margin: 5px 0; }
}

/* ==================================================
   ★ 인사말 페이지 디자인 수정 (사진 + 텍스트 조합)
   ================================================== */

/* 전체 레이아웃 (좌우 배치) */
.greeting_wrap {
    display: flex;
    align-items: center; /* 수직 중앙 정렬 */
    justify-content: space-between;
    gap: 60px; /* 사진과 글 사이 간격 */
    max-width: 1100px;
    margin: 50px auto 100px;
    padding: 0 20px;
}

/* 1. 왼쪽: 건물 사진 영역 */
.gr_visual_box {
    flex: 1; /* 영역 비율 1 */
    position: relative;
}
.gr_visual_box img {
    width: 100%;
    display: block;
    border-radius: 20px; /* 모서리 둥글게 */
    box-shadow: 20px 20px 60px rgba(0,0,0,0.5); /* 깊은 그림자 */
    border: 1px solid rgba(255,255,255,0.1); /* 은은한 테두리 */
    filter: brightness(0.9); /* 분위기 있게 살짝 어둡게 */
    transition: 0.5s;
}
.gr_visual_box:hover img {
    filter: brightness(1.1); /* 마우스 올리면 밝아짐 */
    transform: scale(1.02); /* 살짝 확대 */
}

/* 2. 오른쪽: 텍스트 영역 */
.gr_content_box {
    flex: 1.2; /* 영역 비율 1.2 (글 공간을 좀 더 넓게) */
    text-align: left;
}

/* 슬로건 디자인 */
.gr_new_slogan {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fca311; /* 황금색 */
    line-height: 1.3;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1); /* 하단 구분선 */
}

/* 본문 텍스트 */
.gr_new_txt {
    font-size: 1.1rem;
    color: #ddd;
    line-height: 1.8;
    word-break: keep-all;
}
.gr_new_txt p { margin-bottom: 20px; }
.gr_new_txt strong { color: #fff; font-weight: bold; }

/* 대표 서명 */
.gr_sign {
    margin-top: 50px;
    text-align: right;
    font-size: 1.2rem;
    color: #fff;
}
.gr_sign span {
    font-size: 0.9rem; color: #aaa; margin-right: 10px;
}

/* 모바일 반응형 (세로 배치) */
@media (max-width: 900px) {
    .greeting_wrap { flex-direction: column; gap: 40px; }
    .gr_content_box { text-align: center; }
    .gr_new_slogan { font-size: 1.8rem; margin-bottom: 30px; }
    .gr_sign { text-align: center; }
}

/* ==================================================
   ★ 브랜드 스토리 페이지 (합천운석수제맥주란?)
   ================================================== */
.brand_wrap { 
    max-width: 1000px; margin: 0 auto 100px; color: #fff; 
}

/* 이미지 박스 (공통) */
.bd_img_box { 
    width: 100%; margin-bottom: 60px; 
    border-radius: 20px; overflow: hidden; 
    box-shadow: 0 15px 40px rgba(0,0,0,0.6); /* 그림자 효과 */
    border: 1px solid rgba(255,255,255,0.1);
}
.bd_img_box img { display: block; width: 100%; }

/* 텍스트 박스 */
.bd_txt_box { 
    text-align: center; padding: 0 20px; margin-bottom: 80px; 
}
.bd_tit { 
    font-size: 2.2rem; font-weight: 800; color: #fca311; /* 맥주 골드 컬러 */
    margin-bottom: 30px; letter-spacing: -1px;
}
.bd_desc { 
    font-size: 1.15rem; color: #e5e5e5; line-height: 1.8; 
    word-break: keep-all; /* 단어 단위 줄바꿈 */
}
.bd_point {
    display: inline-block; margin-top: 20px;
    font-size: 1.3rem; font-weight: bold; color: #fff;
    border-bottom: 2px solid #fca311; padding-bottom: 5px;
}

/* 모바일 대응 */
@media (max-width: 768px) {
    .bd_tit { font-size: 1.8rem; }
    .bd_desc { font-size: 1rem; }
}

/* ==================================================
   ★ 오시는 길 (Location) 페이지 스타일
   ================================================== */
.location_wrap { 
    max-width: 1000px; margin: 0 auto 100px; 
    color: #fff; 
}

/* 1. 구글 지도 영역 */
.map_area { 
    width: 100%; 
    height: 450px; /* 지도 높이 */
    background: #000; 
    border: 1px solid rgba(255,255,255,0.2); 
    border-radius: 15px; 
    overflow: hidden; 
    margin-bottom: 50px;
}
.map_area iframe { 
    width: 100%; height: 100%; border: 0; 
    filter: invert(90%) hue-rotate(180deg); /* 지도를 다크모드처럼 보이게 하는 필터 (선택사항) */
    /* 일반 지도를 원하시면 위 filter 줄을 지우세요 */
}

/* 2. 하단 정보 영역 */
.loc_info_box {
    background: rgba(255,255,255,0.03); 
    border: 1px solid rgba(255,255,255,0.1); 
    border-radius: 15px;
    padding: 40px;
}

.loc_row {
    display: flex; 
    align-items: flex-start; 
    margin-bottom: 25px; 
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.loc_row:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }

.loc_tit { 
    width: 120px; min-width: 120px;
    font-size: 1.2rem; color: #fca311; font-weight: 700; 
}
.loc_txt { 
    font-size: 1.1rem; color: #ddd; line-height: 1.6; 
}

/* 모바일 대응 */
@media (max-width: 768px) {
    .map_area { height: 300px; }
    .loc_row { flex-direction: column; }
    .loc_tit { margin-bottom: 10px; }
}


/* ==================================================
   ★ 양조장 소개 (Factory) 페이지 스타일 - 최종 수정 (중복 제거됨)
   ================================================== */
.factory_wrap { 
    max-width: 1100px; margin: 0 auto 100px; color: #fff; 
}

/* 1. 상단 배너 (창문 사진 - fac_banner_new.jpg) */
.fac_top_visual {
    position: relative;
    width: 100%; 
    height: 450px; 
    /* ★ 수정됨: 경로를 절대 경로(/golmi/...)로 변경하여 오류 방지 */
    background: url('/golmi/theme/basic/img/fac_banner_new.jpg') no-repeat center center;
    background-size: cover;
    border-radius: 20px; 
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 80px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
}
/* 배경 어둡게 처리 */
.fac_top_visual::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4); z-index: 1;
}
.fac_top_txt { position: relative; z-index: 2; padding: 20px; }
.fac_top_tit { 
    font-size: 3.5rem; font-weight: 800; color: #fff; 
    text-shadow: 0 0 20px rgba(0,0,0,0.8); margin-bottom: 15px;
}
.fac_top_desc {
    font-size: 1.2rem; color: #eee; font-weight: 500;
}

/* 2. 섹션 타이틀 (BREWING PROCESS, PREMIUM FACILITIES) */
.fac_sec_tit {
    text-align: center; 
    font-size: 3rem; 
    color: #fca311; /* 진한 노란색 (황금색) */
    font-weight: 900; 
    margin-bottom: 20px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

/* 3. 섹션 설명글 (흰색 변경) */
.fac_sec_desc {
    text-align: center; 
    font-size: 1.3rem;
    color: #ffffff; /* 흰색 */
    font-weight: 500;
    margin-bottom: 50px;
    letter-spacing: -0.5px;
}

/* 4. 공정 다이어그램 이미지 */
.process_area { margin-bottom: 120px; text-align: center; }
.process_img { 
    width: 100%; max-width: 1000px; 
    border-radius: 30px; /* 모서리 둥글게 */
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

/* 5. 설비 갤러리 (Grid) */
.fac_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.fac_item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    cursor: pointer;
}
.fac_item img {
    width: 100%; height: 100%; 
    object-fit: cover; display: block;
    transition: 0.5s; filter: brightness(0.9);
}
.fac_item:hover img { transform: scale(1.1); filter: brightness(1.1); }

.fac_caption {
    position: absolute; bottom: 0; left: 0; width: 100%; padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: #fff; opacity: 0; transition: 0.3s; transform: translateY(20px);
}
.fac_item:hover .fac_caption { opacity: 1; transform: translateY(0); }
.fac_caption h4 { font-size: 1.2rem; color: #fca311; margin-bottom: 5px; font-weight: bold; }
.fac_caption p { font-size: 0.9rem; color: #ccc; margin: 0; }

.fac_item.big { grid-column: span 2; grid-row: span 2; }

@media (max-width: 768px) {
    .fac_item.big { grid-column: span 1; grid-row: span 1; }
    .fac_top_tit { font-size: 2.5rem; }
    .fac_sec_tit { font-size: 2.2rem; }
}

/* ==================================================
   ★ 양조장 배너 수정 (이미지 꽉 채우기 + 글자 겹치기)
   ================================================== */

/* 배너 박스 (액자 역할) */
.fac_top_visual {
    position: relative; /* 내부 요소 정렬 기준 */
    width: 100%; 
    height: 450px; 
    border-radius: 20px; 
    overflow: hidden; /* 둥근 모서리 밖으로 나가는 이미지 자르기 */
    margin-bottom: 80px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    background: #000; /* 이미지 로딩 전 배경색 */
}

/* 실제 배너 이미지 (꽉 채우기) */
.fac_banner_img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ★핵심: 비율 유지하며 빈 공간 없이 꽉 채움 */
    object-position: center; /* 이미지 중앙 정렬 */
    display: block;
    filter: brightness(0.6); /* 글씨 잘 보이게 사진 어둡게 */
    transition: transform 0.5s;
}
/* 마우스 올리면 살짝 확대 효과 (선택사항) */
.fac_top_visual:hover .fac_banner_img {
    transform: scale(1.05);
}

/* 텍스트를 이미지 위에 띄우기 (중앙 정렬) */
.fac_top_txt { 
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); /* 정중앙 배치 */
    z-index: 2; 
    width: 100%; 
    text-align: center;
    padding: 0 20px;
}

.fac_top_tit { 
    font-size: 3.5rem; 
    font-weight: 900; 
    color: #fff; 
    text-shadow: 0 0 30px rgba(0,0,0,0.8); 
    margin: 0 0 20px 0;
    letter-spacing: 2px;
}

.fac_top_desc {
    font-size: 1.3rem;
    color: #eee;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(0,0,0,0.8); 
}

/* 모바일 대응 */
@media (max-width: 768px) {
    .fac_top_visual { height: 300px; }
    .fac_top_tit { font-size: 2rem; }
    .fac_top_desc { font-size: 1rem; }
}

/* ==================================================
   ★ [긴급 수정] 하단 흰색 바(가로줄) 강제 삭제
   ================================================== */

/* 1. 페이지 내 모든 가로선(hr) 숨김 */
hr { display: none !important; border: 0 !important; height: 0 !important; }

/* 2. 푸터 상단 경계선 및 여백 초기화 */
#ft { 
    border-top: 0 !important; 
    margin-top: 0 !important; 
    padding-top: 60px !important; /* 내부 여백만 유지 */
    box-shadow: none !important; /* 혹시 모를 그림자 제거 */
}

/* 3. 컨텐츠 영역 하단 여백 조정 (틈새 방지) */
#wrapper, #container_wr, #container {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    border-bottom: 0 !important;
}

/* 4. 오시는 길 섹션 하단 여백 조정 */
#mv_contact {
    margin-bottom: 0 !important;
    border-bottom: 0 !important;
}

/* ==================================================
   ★ [PC] 회원가입 삭제 & 로그인 페이지 디자인 수정
   ================================================== */

/* 1. 사이트 전체에서 '회원가입' 버튼/링크 강제 숨김 */
a[href*="register.php"] {
    display: none !important;
}

/* 2. 로그인 박스 (캡처 화면) 다크모드 디자인 */
#mb_login {
    background: rgba(255,255,255,0.05) !important; /* 배경 반투명 */
    border: 1px solid rgba(255,255,255,0.2) !important; /* 테두리 */
    border-radius: 15px !important;
    padding: 40px !important;
    color: #fff !important;
    margin: 100px auto !important; /* 중앙 배치 여백 */
}

/* 로그인 제목 (회원가입 탭이 사라지면서 어색하지 않게 수정) */
#mb_login h1 {
    background: none !important;
    border: none !important;
    color: #fca311 !important; /* 황금색 */
    font-size: 1.5rem !important;
    text-align: center !important;
    padding-bottom: 20px !important;
    width: 100% !important;
}

/* 입력창 (아이디/비번) */
#mb_login .frm_input {
    background: #222 !important;
    border: 1px solid #444 !important;
    color: #fff !important;
    height: 45px !important;
    border-radius: 5px !important;
}

/* 로그인 버튼 */
#mb_login .btn_submit {
    background: #fca311 !important;
    border: 0 !important;
    color: #000 !important;
    font-weight: bold !important;
    height: 50px !important;
    font-size: 1.1rem !important;
    margin-top: 20px !important;
    width: 100% !important;
}

/* 자동로그인 등 기타 글자 */
#mb_login .login_info label { color: #aaa !important; }
#mb_login .login_info { margin-top: 15px !important; text-align: center !important; }