/* ===== 기본 레이아웃 및 테두리 제거 ===== */
html, body {
    margin: 0;
    padding: 0;
    background: #f8fcff;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* 폰트 추가 */
}
main, section, .hero-section__container {
    box-shadow: none !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* ===== Title Banner ===== */
.title-banner {
    width: 100vw;
    min-width: 100%;
    background: #2196f3;
    color: #fff;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}
.title-banner__logo h1 {
    margin: 0 0 0 32px;
    font-size: 2rem;
}
.title-banner__logo a {
    color: #fff;
    text-decoration: none;
}
.title-banner__nav ul {
    list-style: none;
    display: flex;
    gap: 24px;
    margin: 0 32px 0 0;
    padding: 0;
}
.title-banner__nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 4px 12px;
    border-radius: 4px;
    transition: background 0.2s;
}
.title-banner__nav a:hover {
    background: #1565c0;
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    width: 100%;
    height: 60vh; /* 데스크톱 기준 높이 유지 */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
}
.hero-section__img-wrap {
    position: absolute;
    top: 0; /* 이미지 전체를 채우도록 수정 */
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero-section__img-wrap img {
    width: 100%;
    height: 100%;
    filter: brightness(0.9);
    object-position: center; /* 이미지를 중앙에 맞춤 */
    border-radius: 0; /* 전체 배경이므로 모서리 둥글게 하지 않음 */
    object-fit: cover; /* 이미지가 잘리지 않도록 컨테이너를 채움 */
}
.hero-section__content {
    position: relative;
    z-index: 2; /* 텍스트가 이미지 위에 오도록 */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    width: 100%; /* 너비 100%로 설정 */
    box-sizing: border-box; /* 패딩 포함 너비 계산 */
}
.hero-section__content p {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 300;
}
.hero-section__content h2 {
    font-size: 3.5rem;
    margin-top: 0;
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5); /* 텍스트 가독성 향상 */
    color: #fff; /* 텍스트 색상 명시 (배경과 겹칠 경우 대비) */
}

/* ===== 검색 박스 디자인 개선 ===== */
.hero-section__search-box {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 20px;
    /* padding: 40px 0px; */ /* 기존 패딩 제거 */
    justify-content: center;
    flex-wrap: wrap; /* 요소들이 다음 줄로 넘어갈 수 있도록 */
    opacity: 0.95; /* 불투명도 약간 높임 */
    background-color: rgba(255, 255, 255, 0.2); /* 배경 색상 추가하여 시각적으로 분리 */
    border-radius: 8px; /* 모서리 둥글게 */
    box-shadow: 0 4px 15px rgba(0,0,0,0.2); /* 그림자 추가 */
    backdrop-filter: blur(5px); /* 배경 블러 효과 */
    -webkit-backdrop-filter: blur(5px); /* 웹킷 브라우저 지원 */
    padding: 20px; /* 내부 여백 조정 */
    max-width: 800px; /* 데스크톱에서 최대 너비 */
    width: 90%; /* 유동적인 너비 */
    color: #333; /* 검색 박스 내 글자 색상 */
}

/* 각 검색 입력 요소 스타일 */
#regionSelect,
.date-picker-wrap input[type="text"] { /* Flatpickr input 선택자 */
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 16px;
    padding: 8px 12px;
    height: 40px; /* 높이 통일 */
    min-width: 120px;
    max-width: 200px;
    box-sizing: border-box; /* 패딩 포함 너비 계산 */
    background-color: #fff; /* 배경색 흰색으로 */
    color: #333;
}
/* Flatpickr 캘린더 컨테이너 */
.date-picker-wrap {
    position: relative; /* 캘린더가 이 안에 상대적으로 위치하도록 */
    display: flex;
    flex-direction: column; /* 날짜 입력 필드와 캘린더가 세로로 정렬되도록 */
    align-items: center;
    width: auto; /* 내용에 맞춰 너비 조정 */
}
/* Flatpickr 캘린더 자체 스타일 */
.flatpickr-calendar {
    font-size: 14px; /* 캘린더 내부 폰트 크기 조정 */
    width: 280px; /* 고정 너비 설정 */
    max-width: 100%; /* 부모 요소 너비를 넘지 않도록 */
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border-radius: 8px;
    border: none;
    position: absolute; /* 캘린더 위치 조정을 위해 absolute */
    z-index: 100; /* 검색 박스보다 위에 오도록 */
    top: calc(100% + 10px); /* 입력창 바로 아래에 위치 */
    left: 50%;
    transform: translateX(-50%);
    display: block !important; /* 항상 보이도록 */
    box-sizing: border-box; /* 패딩, 보더 포함 너비 계산 */
}
.flatpickr-calendar.inline { /* inline 캘린더에 대한 추가 조정 */
    position: relative; /* inline은 relative로 두어 플로우에 맞춤 */
    top: auto;
    left: auto;
    transform: none;
    margin-top: 10px; /* 입력 필드와 캘린더 사이 간격 */
    width: 100%; /* 부모 너비에 맞춤 */
    max-width: 320px; /* 최대 너비 설정으로 너무 커지는 것 방지 */
    display: block;
}


#searchBtn {
    border-radius: 6px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1976d2;
    font-size: 16px;
    padding: 0px 18px;
    height: 40px; /* 높이 통일 */
    color: #fff;
    cursor: pointer;
    transition: background 0.2s;
    flex-shrink: 0; /* 버튼이 줄어들지 않도록 */
    white-space: nowrap; /* 텍스트가 줄바꿈되지 않도록 */
}
#searchBtn:hover {
    background: #1565c0;
}

/* ===== Recommendation Popups ===== */
/* 팝업 배경 */
.popup-bg {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5); /* 어두운 배경 */
    z-index: 1000; /* 팝업보다 낮은 z-index */
}

/* 닫기 버튼 */
.popup-close-x {
    display: none;
    position: fixed;
    top: 10px; /* 화면 상단에 위치 */
    right: 10px; /* 화면 오른쪽에 위치 */
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    z-index: 1050; /* 팝업보다 높은 z-index */
}

/* 추천 팝업 */
.recommend-popup {
    display: none;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
    z-index: 1050; /* 다른 요소 위에 표시 */
    width: 90%;
    max-width: 380px; /* 최대 너비 조정 */
    box-sizing: border-box;
    text-align: center;
    animation: fadeIn 0.3s ease-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, -40%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
}
/* 팝업 제목 */
.recommend-popup h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.6rem;
    color: #2196f3;
}

/* 팝업 이미지 */
.recommend-popup img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* 팝업 내용 */
.recommend-popup p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 0;
}
/* 팝업별 고정 위치 (데스크톱) */
#recommendPopup1 { top: 20%; }
#recommendPopup2 { top: 42%; }
#recommendPopup3 { top: 64%; }


/* ===== 반응형 디자인 ===== */
@media (max-width: 768px) {
    .hero-section {
        height: 55vh; /* 태블릿 환경에서 높이 조정 */
    }

    .hero-section__content h2 {
        font-size: 2.2rem; /* h2 폰트 크기 줄이기 */
        margin-bottom: 20px;
        color: #fff; /* 텍스트 색상을 흰색으로 명시하여 가독성 높임 */
        text-shadow: 1px 1px 3px rgba(0,0,0,0.7); /* 그림자 진하게 */
    }
    .hero-section__search-box {
        flex-direction: column; /* 검색 박스를 세로로 배치 */
        gap: 12px; /* 요소 간 간격 줄이기 */
        padding: 15px; /* 내부 여백 조정 */
        width: 95%; /* 너비 조정 */
        max-width: 300px; /* 태블릿 환경 최대 너비 */
    }

    /* 캘린더 인풋 필드 */
    .date-picker-wrap input[type="text"] { /* Flatpickr input 선택자 */
        width: 100%; /* 너비 100% */
        max-width: none; /* 최대 너비 제한 해제 */
    }

    /* Flatpickr 캘린더 자체 스타일 */
    .flatpickr-calendar.inline { /* inline 캘린더는 검색 박스 내에 상대적으로 */
        width: 100%; /* 부모 너비에 맞춤 */
        max-width: 300px; /* 최대 너비 제한 */
        font-size: 13px; /* 캘린더 내부 폰트 크기 조정 */
        position: relative; /* 상대 위치로 변경하여 검색 박스 내에 유지 */
        top: auto;
        left: auto;
        transform: none;
        margin-top: 10px; /* 입력창 아래로 약간의 마진 */
    }
    /* 캘린더 내부 요소들의 크기를 줄여서 전체 캘린더 크기 축소 */
    .flatpickr-calendar .flatpickr-innerContainer {
        max-height: 250px; /* 최대 높이 설정 */
        overflow-y: auto; /* 세로 스크롤 가능하게 */
    }
    .flatpickr-calendar .flatpickr-days {
        width: 100%;
    }
    .flatpickr-calendar .flatpickr-weekday {
        padding: 5px 0;
    }
    .flatpickr-calendar .dayContainer {
        width: 100%;
        max-width: 300px; /* dayContainer도 max-width 설정 */
    }
    .flatpickr-calendar .flatpickr-day {
        font-size: 0.9em; /* 날짜 글자 크기 조정 */
        padding: 0.4em 0.3em; /* 날짜 셀 패딩 조정 */
        height: auto;
        line-height: normal;
    }


    /* 검색 박스 내 다른 요소들 */
    #regionSelect, #searchBtn {
        width: 100%; /* 너비 100% */
        max-width: none; /* 최대 너비 제한 해제 */
    }
    #searchBtn {
        height: 40px; /* 높이 유지 */
        padding: 0 18px; /* 패딩 유지 */
    }


    .hero-section__img-wrap img {
        object-fit: cover;
    }

    /* 팝업 위치 조정 (모바일에서 세로로 배열) */
    #recommendPopup1 { top: 15%; }
    #recommendPopup2 { top: 45%; }
    #recommendPopup3 { top: 75%; }
    .recommend-popup {
        max-width: 300px; /* 팝업 최대 너비 */
        padding: 20px 25px;
    }
    .recommend-popup h3 {
        font-size: 1.3rem;
    }
    .recommend-popup p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .title-banner__logo h1 {
        font-size: 1.5rem;
        margin: 0 0 0 16px;
    }
    .title-banner__nav ul {
        margin: 0 16px 0 0;
        gap: 12px;
    }
    .title-banner__nav a {
        font-size: 0.9rem;
        padding: 2px 8px;
    }

    .hero-section {
        height: 50vh; /* 휴대폰 환경에서 높이 조정 */
    }
    .hero-section__content h2 {
        font-size: 1.2rem; /* h2 폰트 크기 추가 조정 */
        line-height: 1.3;
        word-break: keep-all; /* 단어가 잘리지 않도록 */
        margin-bottom: 15px;
    }
    .hero-section__search-box {
        padding: 15px; /* 내부 여백 더 줄임 */
        width: 95%;
        max-width: 280px; /* 휴대폰 환경 최대 너비 */
    }

    /* Flatpickr 캘린더 자체 스타일 */
    .flatpickr-calendar.inline {
        max-width: 280px; /* 캘린더 최대 너비 */
        font-size: 12px; /* 캘린더 내부 폰트 크기 더 줄임 */
    }
    .flatpickr-calendar .flatpickr-day {
        font-size: 0.8em; /* 날짜 글자 크기 조정 */
        padding: 0.3em 0.2em; /* 날짜 셀 패딩 조정 */
    }

    .recommend-popup {
        max-width: 280px; /* 팝업 최대 너비 */
        padding: 18px 22px;
    }
    .recommend-popup h3 {
        font-size: 1.1rem;
    }
    .recommend-popup p {
        font-size: 0.85rem;
    }
}

/* ===== Footer ===== */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
}