/* 기본 세팅 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #fff8f0;
    color: #333;
    font-family: "맑은 고딕", sans-serif;
    line-height: 1.6;
}

/* 헤더 */
header {
    background: rgba(0,0,0,0.7);
    color: white;
    text-align: center;
    padding: 20px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10;
}

header h1 {
    font-size: 40px;
    font-weight: bold;
}

header p {
    font-size: 16px;
    margin-top: 5px;
}

/* ⭐ 히어로 이미지 영역 ⭐ */
.hero {
    background-image: url("./기타/배경사진.jpg"); /* 사진 이름 맞게 바꿔! */
    background-size: cover;
    background-position: center;
    height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;
    text-shadow: 0 0 10px rgba(0,0,0,0.8);
    font-size: 50px;
    font-weight: bold;
}


/* 네비게이션 */
nav {
    background: #8b0000;
    padding: 15px;
    text-align: center;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 20px;
    font-weight: bold;
    font-size: 18px;
}

nav a:hover {
    text-decoration: underline;
}

/* 메인 콘텐츠 */
main {
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
}

h2 {
    font-size: 32px;
    color: #8b0000;
    margin-bottom: 20px;
}

/* 메뉴 카드 */
.menu-item {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    margin-bottom: 40px;
    transition: transform 0.2s;
}

.menu-item:hover {
    transform: translateY(-5px);
}

.menu-item img {
    width: 300px;
    border-radius: 10px;
    margin: 15px 0;
}

/* 미디어 영역 */
audio, video {
    margin: 10px 0;
    display: block;
}

/* 푸터 */
footer {
    background: #8b0000;
    color: white;
    padding: 20px;
    text-align: center;
    margin-top: 50px;
}

main, section, ul, li {
    height: auto;
    overflow: visible;
}

/* header 고정 때문에 본문이 잘리는 경우: 상단 여백 확보 */
body {
    margin-top: 120px; /* 네비게이션/헤더 높이에 맞춰 조절 */
}

/* Menu header 이미지(상단 3장) 크기 조절 */
.main-menu-top {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.main-img {
    width: 320px;      /* 적당한 가로 크기(원하면 250~350 사이에서 조절) */
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    object-fit: cover;
}

/* 이미지가 브라우저 전체를 덮는 스타일을 막음 */
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

.menu-container {
    margin: 0 auto;
    padding-top: 0px;
}

.menu-title {
    text-align: center;
    font-size: 50px;
    margin-bottom: 70px;
    font-weight: 600;
}

.about-section {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
}

.about-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.about-text {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: center;
}

.about-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.about-images img {
    width: 45%;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.about-subtitle {
    text-align: center;
    font-size: 22px;
    margin-top: 30px;
}

.hero-box {
    width: 100%;
    padding: 60px 0;
    text-align: center;

    /* 그림자처럼 보이게 하는 핵심 */
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(4px);

    color: white;
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 40px;
    border-radius: 8px;
}

/* ---------- Section title white box (AboutUs 스타일 재사용) ---------- */
.section-title-box {
    background: #ffffff;
    padding: 30px 20px;
    margin: 30px auto 40px auto;
    text-align: center;
    max-width: 900px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.section-title-box h1 {
    margin: 0;
    font-size: 32px;
    color: #222;
    font-weight: 700;
}

.section-title-box p {
    margin-top: 8px;
    color: #666;
    font-size: 16px;
    line-height: 1.4;
}

