* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", "Pretendard", sans-serif;
    background: #FFE6F1; /* 연핑크 */
    color: #111;
    line-height: 1.6;
}

/* Fade-in animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1.2s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* NAVIGATION */
.nav {
    width: 100%;
    padding: 26px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(14px);
    z-index: 1000;
    height: 110px; /* 헤더 높이 업 */
}

.nav-logo {
    height: 95px; /* 로고 크게 */
}

.nav-links a {
    margin-left: 25px;
    font-size: 18px;
    color: #7A003C;
    text-decoration: none;
    font-weight: 600;
}

.nav-links a:hover {
    opacity: 0.6;
}


/* Lang Selector */
.lang-selector {
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid #bbb;
    background: #fff;
    font-size: 14px;
}

/* HERO */
.hero {
    padding: 160px 5% 120px;
    text-align: center;
}

.hero h1 {
    font-size: 60px;
    font-weight: 700;
    color: #7A003C; /* 버건디 */
}

.accent {
    color: #A00050;
}

.hero p {
    margin-top: 18px;
    font-size: 20px;
    color: #5a0040;
}

.cta-btn {
    margin-top: 35px;
    display: inline-block;
    padding: 14px 28px;
    background: #7A003C;
    color: white;
    border-radius: 50px;
    font-size: 16px;
    text-decoration: none;
    transition: 0.2s ease;
}

.cta-btn:hover {
    background: #4d0026;
}

/* SECTIONS */
.section {
    padding: 120px 5%;
    text-align: center;
}

.section h2 {
    font-size: 42px;
    color: #7A003C;
    margin-bottom: 25px;
}

.desc {
    font-size: 20px;
    color: #333;
    max-width: 700px;
    margin: auto;
}

/* INFO BOXES */
.info-box {
    background: white;
    width: 90%;
    max-width: 420px;
    padding: 30px;
    margin: 20px auto;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.info-box h3 {
    color: #7A003C;
    font-size: 24px;
    margin-bottom: 10px;
}

.info-box ul {
    list-style: none;
    text-align: left;
    font-size: 18px;
}

.note {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}

/* LOCATION LINK */
.location-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
    transition: 0.2s ease;
}

.location-link:hover {
    color: #A00050;
    transform: scale(1.02);
}

.location-link .location-sub {
    border-bottom: 2px dashed #7A003C;
    padding-bottom: 4px;
}

/* MAP CONTAINER */
.map-container {
    display: block;
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 350px;
    margin: 30px auto 20px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(122, 0, 60, 0.15);
    cursor: pointer;
    transition: 0.3s ease;
}

.map-container:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(122, 0, 60, 0.25);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
}

.map-container .map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

/* MAP BUTTON */
.map-btn {
    margin-top: 20px;
    display: inline-block;
    background: #7A003C;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
}

.map-btn:hover {
    background: #4d0026;
}

/* FOOTER */
footer {
    margin-top: 80px;
    padding: 40px 0;
    text-align: center;
    font-size: 15px;
    color: #333;
}

/* MOBILE */
@media (max-width: 600px) {
    .hero h1 {
        font-size: 42px;
    }
    .nav {
        height: 90px;
    }
    .nav-logo {
        height: 70px;
    }
}


/* Clean 2-column hours layout */
.hours-grid {
    display: grid;
    grid-template-columns: 150px auto; /* ← 요일 더 넉넉하게 */
    row-gap: 14px;
    column-gap: 20px;
    font-size: 20px;
    text-align: left;
    margin: 30px auto;
    max-width: 500px; /* 전체 폭도 넓혀서 더 여유 있게 */
}



.hours-grid .day {
    font-weight: 700;
    color: #7A003C; /* 버건디 */
}

.hours-grid .time {
    color: #222;
}

.coming-soon {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #7A003C;
}

.home-title {
    font-size: 28px;
    color: #5a0040;
    margin-top: 10px;
    line-height: 1.5;
}

.home-desc {
    margin-top: 20px;
    font-size: 20px;
    color: #333;
}

.onyu-slogan {
    margin-top: 40px;
    font-size: 40px;
    font-weight: 700;
    color: #7A003C;
}

/* ABOUT PAGE */
.about-block {
    max-width: 700px;
    margin: auto;
    text-align: left;
    font-size: 20px;
    color: #333;
}

.about-block h3 {
    margin-top: 40px;
    margin-bottom: 10px;
    color: #7A003C;
    font-size: 26px;
}

