/* 전체 스타일 리셋 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* 공통 섹션 제목 스타일 */
.section-title,
.menu-highlight h2,
.store-info h2,
.events h2,
.story-content h2,
.menu-section h2,
.brand-philosophy h2,
.page-title h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    color: #333;
}

.section-title::after,
.menu-highlight h2::after,
.store-info h2::after,
.events h2::after,
.menu-section h2::after,
.brand-philosophy h2::after,
.story-content h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: #044c29;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.page-title h1::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: #044c29;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.story-content h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: #044c29;
    bottom: -15px;
    left: 0;
}

/* 공통 카드 스타일 */
.card-style,
.menu-item,
.event-item,
.menu-section .menu-item {
    background-color: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card-style:hover,
.menu-item:hover,
.event-item:hover,
.menu-section .menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.menu-section .menu-item {
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.menu-section .menu-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* 버튼 스타일 */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #044c29;
    color: white;
    border-radius: 5px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #033520;
    transform: translateY(-2px);
}

.more-btn {
    text-align: center;
    margin: 30px 0;
}

.more-btn a {
    display: inline-block;
    padding: 10px 25px;
    border: 2px solid #044c29;
    color: #044c29;
    border-radius: 5px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.more-btn a:hover {
    background-color: #044c29;
    color: white;
}

/* 헤더 스타일 */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo img {
    max-height: 50px;
}

.main-menu {
    display: flex;
}

.main-menu li {
    margin: 0 15px;
    position: relative;
}

.main-menu li a {
    font-weight: 500;
    padding: 10px 0;
    position: relative;
}

.main-menu li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #e74c3c;
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.main-menu li a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: all 0.3s ease;
}

/* 메인 비주얼 섹션 */
.main-visual {
    padding-top: 80px;
    height: auto;
    position: relative;
    overflow: hidden;
}

.slide {
    height: 500px;
    width: auto;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    max-width: 500px;
}

.slide-content h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* 메뉴 하이라이트 섹션 */
.menu-highlight {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.menu-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.menu-item {
    width: 350px;
    text-align: center;
    background-color: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.menu-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.menu-item h3 {
    margin: 20px 0 10px;
    font-size: 1.5rem;
}

.menu-item p {
    margin-bottom: 20px;
    color: #666;
    padding: 0 15px;
}

/* 매장 정보 섹션 */
.store-info {
    padding: 80px 0;
    background-color: #f9f9f9;
}

/* 공통 지도 스타일 */
.store-map,
#map {
    width: 100%;
    height: 400px;
    margin-bottom: 30px;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #ddd;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 이벤트/프로모션 섹션 */
.events {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.event-items {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.event-item {
    width: 570px;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.event-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.event-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.event-content {
    padding: 20px;
}

.event-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.event-content p {
    color: #666;
}

/* 이벤트 페이지 전용 스타일 */
.current-events, .past-events {
    padding: 60px 0;
}

.current-events {
    background-color: #fff;
}

.past-events {
    background-color: #f9f9f9;
}

.current-events h2, .past-events h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    color: #333;
}

.current-events h2::after, .past-events h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: #044c29;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.event-card {
    background-color: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.event-card.past {
    opacity: 0.8;
}

.event-card.past:hover {
    opacity: 1;
}

.event-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.05);
}

.event-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.event-badge:not(.ended) {
    background: linear-gradient(135deg, #044c29, #033520);
    box-shadow: 0 4px 15px rgba(4, 76, 41, 0.3);
}

.event-badge.ended {
    background: linear-gradient(135deg, #666, #444);
    box-shadow: 0 4px 15px rgba(102, 102, 102, 0.3);
}

.event-content {
    padding: 25px;
}

.event-content h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.event-period {
    color: #044c29;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.event-period::before {
    content: '📅';
    margin-right: 8px;
}

.event-desc {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.event-guide {
    padding: 60px 0;
    background-color: #fff;
}

.event-guide h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    color: #333;
}

.event-guide h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: #044c29;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.guide-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.guide-text h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 700;
}

.guide-text ol, .guide-text ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.guide-text ol {
    list-style: decimal;
}

.guide-text ul {
    list-style: disc;
}

.guide-text li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #555;
}

.note {
    background-color: #fff3e0;
    border-left: 4px solid #044c29;
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
    font-size: 0.9rem;
    color: #666;
}

/* 브랜드 스토리 미리보기 섹션 */
.brand-story-preview {
    padding: 80px 0;
    background-color: #fff;
}

.brand-story-preview .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.story-content {
    flex: 1;
}

.story-content p {
    margin-bottom: 30px;
    line-height: 1.8;
    color: #555;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 브랜드 페이지 스타일 */
.brand-page {
    padding-top: 80px;
}

.brand-visual {
    height: 350px;
    background: url('../images/error.png') no-repeat center;
    background-size: cover;
    display: flex;
    align-items: center;
    position: relative;
}

.brand-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.brand-visual .container {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.brand-visual h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.brand-visual p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.brand-story {
    padding: 80px 0;
}

.story-section {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    gap: 50px;
}

.story-section.reverse {
    flex-direction: row-reverse;
}

.story-section.reverse .story-content h2::after {
    left: auto;
    right: 0;
}

.story-content {
    flex: 1;
}

.story-content p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.brand-philosophy {
    padding: 120px 0;
    background: linear-gradient(135deg, #fff, #f9f9f9);
}

/* ================================
   브랜드 페이지 전용 스타일
   ================================ */

/* 브랜드 히어로 섹션 */
.brand-hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(4, 76, 41, 0.3));
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, #fff, #FFE5D0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 50px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
    opacity: 0.8;
}

.hero-scroll-indicator span {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: rotate(45deg) translateY(0);
    }
    40% {
        transform: rotate(45deg) translateY(-10px);
    }
    60% {
        transform: rotate(45deg) translateY(-5px);
    }
}

/* 브랜드 소개 섹션 */
.brand-intro {
    padding: 120px 0;
    background: linear-gradient(135deg, #fff, #f9f9f9);
}

.intro-grid {
    display: block;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-text h2 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 30px;
    position: relative;
}

.intro-text h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #044c29, #033520);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.intro-lead {
    font-size: 1.3rem;
    font-weight: 600;
    color: #044c29;
    line-height: 1.6;
    margin-bottom: 25px;
}

.intro-highlight {
    background: linear-gradient(135deg, #044c29, #033520);
    padding: 30px;
    border-radius: 5px;
    margin: 30px 0;
    color: white;
    box-shadow: 0 10px 30px rgba(4, 76, 41, 0.3);
}

.intro-highlight p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
}

.intro-text > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.brand-features {
    margin: 30px 0 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.feature-icon {
    font-size: 1.8rem;
    margin-right: 15px;
}

.feature-text {
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
}

.brand-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #044c29;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* 타임라인 섹션 */
.brand-timeline {
    padding: 120px 0;
    background-color: #f9f9f9;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 20px;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(to bottom, #044c29, #033520);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #044c29, #033520);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 100px;
    width: 50%;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 60px;
}

.timeline-item:nth-child(odd) {
    padding-right: 60px;
    text-align: right;
}

.timeline-marker {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #044c29;
    border-radius: 50%;
    top: 50px;
    box-shadow: 0 0 0 5px white, 0 0 0 10px #044c29;
}

.timeline-item:nth-child(even) .timeline-marker {
    left: -70px;
}

.timeline-item:nth-child(odd) .timeline-marker {
    right: -70px;
}

.timeline-content {
    background: white;
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.timeline-image {
    width: 100%;
    height: 200px;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 25px;
}

.timeline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.timeline-text h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.timeline-year {
    color: #044c29;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.timeline-text p {
    color: #666;
    line-height: 1.6;
}

/* 철학 섹션 */

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.philosophy-items {
    margin-top: 40px;
}

.philosophy-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.philosophy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.philosophy-icon {
    font-size: 3rem;
    margin-right: 25px;
    flex-shrink: 0;
}

.philosophy-text h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
}

.philosophy-text p {
    color: #666;
    line-height: 1.6;
}

.philosophy-visual {
    position: relative;
}

.philosophy-image-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.philosophy-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 15px 25px;
    border-radius: 5px;
    backdrop-filter: blur(10px);
}

.image-overlay span {
    font-size: 1.2rem;
    font-weight: 700;
}

/* 핵심 가치 섹션 */
.core-values {
    padding: 120px 0;
    background-color: #f9f9f9;
}

.simple-values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 60px;
}

.simple-value-item {
    background: white;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
}

.simple-value-item .value-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #044c29;
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 40px;
    text-align: center;
}

.simple-value-content {
    flex: 1;
}

.simple-value-item h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.simple-value-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* 팀 섹션 */
.team-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #fff, #f9f9f9);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.team-card {
    background: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.team-card.featured {
    grid-row: span 1;
    border: 3px solid #044c29;
}

.team-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px 20px 20px;
    color: white;
}

.team-social span {
    font-size: 0.9rem;
    background: rgba(4, 76, 41, 0.9);
    padding: 5px 12px;
    border-radius: 5px;
    font-weight: 600;
}

.team-info {
    padding: 30px;
}

.team-info h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 5px;
    font-weight: 700;
}

.team-position {
    color: #044c29;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.team-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-tag {
    background: #f0f0f0;
    color: #666;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* CTA 섹션 */
.brand-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #044c29, #033520);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary {
    background: white;
    color: #044c29;
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.btn-primary:hover {
    background: transparent;
    color: white;
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 700;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: white;
    color: #044c29;
}

/* ================================
   메뉴 페이지 전용 스타일
   ================================ */

/* 페이지 타이틀 */
.page-title {
    padding: 120px 0 60px;
    background-color: #fff;
    text-align: center;
}

.page-title p {
    font-size: 1.2rem;
    color: #666;
    margin-top: 30px;
}

/* 메뉴 카테고리 네비게이션 */
.menu-navigation {
    background-color: #f9f9f9;
    padding: 30px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 80px;
    z-index: 999;
    transition: all 0.3s ease;
}

.menu-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.menu-categories li {
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    cursor: pointer;
}

.menu-categories li a {
    display: block;
    padding: 12px 25px;
    color: #333;
    font-weight: 600;
    transition: all 0.2s ease;
}

/* 활성 상태 - 더 높은 우선순위 */
.menu-categories li.active {
    background-color: #044c29 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(4, 76, 41, 0.3) !important;
}

.menu-categories li.active a {
    color: white !important;
}

/* 호버 상태 - 비활성 버튼만 */
.menu-categories li:not(.active):hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    background-color: #f0f0f0;
}

.menu-categories li:not(.active):hover a {
    color: #044c29;
}

/* 메뉴 섹션 */
.menu-section {
    padding: 60px 0;
    background-color: #fff;
}

.menu-section:nth-child(odd) {
    background-color: #f9f9f9;
}

.menu-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
    position: relative;
}

.section-desc {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

/* 메뉴 그리드 */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.menu-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.menu-item:hover .menu-image img {
    transform: scale(1.05);
}

.menu-content {
    padding: 25px;
    position: relative;
}

.menu-name-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.menu-name-price h3 {
    font-size: 1.5rem;
    color: #333;
    font-weight: 700;
}

.price {
    font-size: 1.3rem;
    color: #044c29;
    font-weight: 700;
}

.menu-desc {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.menu-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #044c29;
    color: white;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.menu-badge:nth-of-type(2) {
    background-color: #e74c3c;
}

/* HR 스타일 */
.menu-section hr {
    width: 100px;
    height: 3px;
    background-color: #044c29;
    border: none;
    margin: 0 auto 30px;
}

/* 푸터 스타일 */
footer {
    background-color: #222;
    color: #aaa;
    padding: 60px 0 0;
}

footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-info {
    flex: 1;
    margin-right: 50px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 20px;
}

.company-info p {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
}

.sitemap, .social-links {
    margin-right: 50px;
}

.sitemap h3, .social-links h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.sitemap ul li, .social-links ul li {
    margin-bottom: 10px;
}

.sitemap ul li a, .social-links ul li a {
    color: #aaa;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.sitemap ul li a:hover, .social-links ul li a:hover {
    color: #044c29;
}

.copyright {
    background-color: #1a1a1a;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* 반응형 디자인 */
@media (max-width: 1200px) {
    .intro-grid,
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 992px) {
    .brand-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    /* 모바일 메뉴 토글 스타일 */
    .mobile-menu-toggle {
        display: flex !important;
    }

    .main-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: white;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 50px;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .main-menu.active {
        left: 0;
    }

    .main-menu li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .main-menu li a {
        display: block;
        padding: 20px 30px;
        font-size: 1.1rem;
        width: 100%;
        transition: all 0.3s ease;
    }

    .main-menu li a:hover {
        background-color: #f8f9fa;
        color: #044c29;
        padding-left: 40px;
    }

    /* 토글 버튼 애니메이션 */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* 기존 반응형 스타일들 */
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .intro-text h2,
    .section-header h2 {
        font-size: 2.2rem;
    }

    .brand-intro,
    .brand-timeline,
    .brand-philosophy,
    .core-values,
    .team-section {
        padding: 80px 0;
    }

    .brand-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .philosophy-item {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .philosophy-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }

    /* 메뉴 페이지 모바일 스타일 */
    .menu-categories {
        flex-wrap: wrap;
        gap: 8px;
        padding: 0 20px;
    }

    .menu-categories li {
        margin: 5px;
    }

    .menu-categories li a {
        padding: 10px 18px;
        font-size: 0.9rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* 기타 섹션들 모바일 최적화 */
    .brand-story-preview .container {
        flex-direction: column;
        gap: 30px;
    }

    .story-section {
        flex-direction: column;
        gap: 30px;
    }

    .story-section.reverse {
        flex-direction: column;
    }

    .event-items {
        flex-direction: column;
        align-items: center;
    }

    .event-item {
        width: 100%;
        max-width: 400px;
    }

    .menu-items {
        flex-direction: column;
        align-items: center;
    }

    .menu-item {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 576px) {
    .brand-hero {
        height: 80vh;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .intro-text h2,
    .section-header h2 {
        font-size: 1.8rem;
    }

    .timeline-content {
        margin-left: 40px;
        padding: 20px;
    }

    .brand-stats {
        flex-wrap: wrap;
        gap: 15px;
    }

    .stat-item {
        flex: 1;
        min-width: 120px;
    }
}
