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

body {
    font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
    width: 100%;
    height: 100vh; /* 화면 전체 높이 */
    overflow: hidden; /* 스크롤 방지 */
}

/* 전체 배경 (바다 이미지) */
.background-container {
    width: 100%;
    height: 100%;
    background-image: url('img/sea_bg.jpg'); /* 배경 이미지 경로 */
    background-size: cover; /* 화면 꽉 채우기 */
    background-position: center; /* 중앙 정렬 */
    background-repeat: no-repeat;
    
    /* 콘텐츠 중앙 정렬을 위한 Flexbox */
    display: flex;
    justify-content: center;
    align-items: center; /* 화면 정중앙 배치 */
    position: relative;
}

/* 배경 어둡게 처리 (글씨 잘 보이게) - 선택사항 */
.background-container::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.1); /* 10% 검은 막 */
    z-index: 1;
}

/* 중앙 콘텐츠 박스 */
.content-box {
    z-index: 2; /* 배경보다 위에 */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px; /* 요소 사이 간격 */
    padding-bottom: 50px; /* 시각적 균형을 위해 살짝 위로 */
}

/* 1. 마스코트 이미지 */
.mascot-img {
    width: 140px; /* 크기 조절 */
    height: auto;
    filter: drop-shadow(0 4px 4px rgba(0,0,0,0.25)); /* 그림자 효과 */
}

/* 2. 텍스트 영역 */
.notice-title {
    font-size: 36px;
    font-weight: 300; /* 얇은 글씨 */
    color: #ffffff;
    letter-spacing: 12px; /* 자간 넓게 */
    text-transform: uppercase;
    text-shadow: 0 4px 4px rgba(0,0,0,0.25);
    margin-bottom: 10px;
}

.sub-title {
    font-size: 28px;
    font-weight: 700; /* 굵은 글씨 */
    color: #ffffff; /* 파란색 대신 흰색이 더 잘 보일 수 있음 (원하면 #1e40af 로 변경) */
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.25);
}

.email-link {
    font-size: 18px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    opacity: 0.9;
    text-shadow: 0 2px 4px rgba(0,0,0,0.25);
}

.email-link:hover {
    text-decoration: underline;
}

/* 3. 구분선 */
.divider {
    width: 200px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.6);
    margin: 10px 0;
}

/* 4. 하단 로고 */
.footer-logo {
    width: 200px; /* 로고 크기 */
    height: auto;
    background-color: rgba(255, 255, 255, 0.8); /* 로고 뒤에 살짝 흰색 배경 (잘 보이게) */
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* 모바일 화면 대응 */
@media (max-width: 768px) {
    .mascot-img { width: 100px; }
    .notice-title { font-size: 28px; letter-spacing: 8px; }
    .sub-title { font-size: 22px; }
    .email-link { font-size: 16px; }
    .footer-logo { width: 160px; }
}