/* 기본 세팅 */
* {
    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;
}


body {
    margin-top: 120px;
}

.main-menu-top {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.main-img {
    width: 320px;  
    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-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;
}

.menu-link {
    text-decoration: none;
    color: inherit;
}
.menu-link:hover .menu-item {
    transform: scale(1.02);
    transition: 0.3s;
}

.menu-section {
    max-width: 900px;
    margin: 0 auto;   
    padding: 20px;
}

#restaurant-photos {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.about-photo {
    width: 280px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

