/* 전체 폰트 설정 */
body {
	font-family: 'Noto Sans KR', sans-serif;
}

/* 각 섹션의 공통 패딩 */
.section-padding {
	padding: 80px 0;
}

/* 네비게이션 바 스타일 */
.navbar {
	transition: background-color 0.3s;
}

/* 1. 소개 (Hero 섹션) 스타일 */
#intro {
	height: 100vh;
	/* 화면 전체 높이 */
	color: white;
	/* TODO: 여기에 식당의 메인 이미지를 배경으로 설정하세요. */
	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/2.jpg') no-repeat center center;
	background-size: cover;
}

#reviews {
	background-color:#f3f3f3;
}

/* 2. 메뉴 카드 스타일 */
.menu-card {
	transition: transform 0.3s, box-shadow 0.3s;
}

.menu-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
}

.menu-card img {
	height: 250px;
	object-fit: cover;
	/* 이미지가 카드 비율에 맞게 잘리도록 설정 */
}

/* 3. 갤러리 이미지 스타일 */
.gallery-img {
	height: 280px;
	object-fit: cover;
	cursor: pointer;
	transition: transform 0.3s, filter 0.3s;
}

.gallery-img:hover {
	transform: scale(1.05);
	filter: brightness(1.1);
}

/* 4. 찾아오는 길 지도 스타일 */
#map {
	width: 100%;
	height: 400px;
	border-radius: 0.5rem;
}

/* 섹션 제목 스타일 */
.section-title {
	font-weight: 700;
	margin-bottom: 40px;
	position: relative;
	padding-bottom: 15px;
}

.section-title::after {
	content: '';
	position: absolute;
	display: block;
	width: 60px;
	height: 3px;
	background: #0d6efd;
	/* 부트스트랩 기본 파란색 */
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

/* --- 하단 고정 폼 --- */
#fixed-inquiry-form {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 1030;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.5);
    transition: all 0.35s ease-in-out; /* 부드러운 애니메이션 효과 */
}

/* 모바일용 탭 헤더 스타일 */
.inquiry-tab-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
    color: white;
    text-decoration: none;
    cursor: pointer;
}
.inquiry-tab-header i {
    transition: transform 0.35s ease-in-out; /* 아이콘 회전 애니메이션 */
}
/* 탭이 열렸을 때 아이콘을 180도 회전 */
.inquiry-tab-header.collapsed i {
    transform: rotate(180deg);
}

/* 모바일에서는 폼 내용에 추가적인 패딩을 줍니다. */
#inquiry-form-content {
    padding-bottom: 1rem;
}

/* --- 화면 크기에 따른 동적 스타일 --- */

/* PC 화면 (992px 이상) */
@media (min-width: 992px) {
    /* PC에서는 펼쳐지는 폼 내용을 항상 보여줍니다. */
    #inquiry-form-content.collapse {
        display: block;
    }
    #fixed-inquiry-form {
        padding: 1rem 0; /* PC에서는 항상 동일한 패딩 유지 */
    }
    body {
        padding-bottom: 95px; /* PC용 푸터 여백 */
    }
	.top-logo{
		width:120px;
	}
	.main-logo{
		width:450px;
	}
	.foot-logo{
		width :170px;
	}
}

/* 모바일 화면 (991.98px 이하) */
@media (max-width: 991.98px) {
    body {
        /* 모바일에서는 탭의 높이만큼만 여백을 줍니다. */
        padding-bottom: 60px;
    }
	.top-logo{
		width:110px;
	}
	.main-logo{
		width:300px;
	}
	.foot-logo{
		width :140px;
	}
}
