/* Custom styles for Swiper navigation buttons */
.testimonialSwiper .swiper-button-next,
.testimonialSwiper .swiper-button-prev {
    color: #3B82F6; /* Blue color matching the theme */
    background-color: rgba(255, 255, 255, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.testimonialSwiper .swiper-button-next:after,
.testimonialSwiper .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.testimonialSwiper .swiper-button-next:hover,
.testimonialSwiper .swiper-button-prev:hover {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Custom styles for Swiper pagination */
.testimonialSwiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #CBD5E1; /* Light gray */
    opacity: 0.7;
}

.testimonialSwiper .swiper-pagination-bullet-active {
    background-color: #3B82F6; /* Blue color matching the theme */
    opacity: 1;
}

/* Custom styles for testimonial slides */
.testimonialSwiper .swiper-slide {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonialSwiper .swiper-slide:hover {
    transform: translateY(-5px);
}

.testimonialSwiper .swiper-slide > div {
    height: 100%;
    transition: box-shadow 0.3s ease, border 0.3s ease;
    border: 1px solid transparent;
}

.testimonialSwiper .swiper-slide:hover > div {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #E2E8F0;
}

/* Add a subtle indicator that the testimonials are swipeable */
.testimonialSwiper::after {
    content: '← 좌우로 스와이프하여 더 많은 사장님들의 이야기를 확인해보세요 →';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 14px;
    color: #6B7280;
    width: 100%;
    font-weight: 500;
}

body { font-family: 'Noto Sans KR', sans-serif; background-color: #F8F7F4; color: #333; }
.highlight-text { color: #3D5A80; }
.accent-bg { background-color: #3D5A80; }
.accent-bg-secondary { background-color: #E07A5F; }
.nav-link {
    cursor: pointer;
    color: #4b5563; /* gray-600 */
    font-weight: 500;
    transition: color 0.3s, border-color 0.3s;
    padding-bottom: 14px;
    padding-top: 14px;
    border-bottom: 3px solid transparent;
}
.nav-link:hover {
    color: #E07A5F;
}
.nav-link.active {
    color: #3D5A80; /* highlight-text */
    font-weight: 700;
    border-bottom-color: #3D5A80;
}
.btn-highlight {
    background-color: #3D5A80;
    color: white !important;
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 0.375rem;
    font-weight: 600;
    border-bottom: none !important;
    transition: all 0.2s;
}
.btn-highlight:hover {
    background-color: #34506f;
    color: white !important;
}
.btn-highlight.active {
    background-color: #2b4560;
    border-bottom: none !important;
}
.page { display: none !important; }
.page.active { display: block !important; }
.tab-btn.active { border-color: #3D5A80; color: #3D5A80; background-color: #E6EBF0;}
.tab-content { display: none; }
.tab-content.active { display: block; }
.phase.active { background-color: #E6EBF0; border-left-color: #E07A5F; }
.chart-container { position: relative; width: 100%; max-width: 600px; margin-left: auto; margin-right: auto; height: 350px; max-height: 400px; }
@media (min-width: 768px) { .chart-container { height: 400px; } }

/* Mobile Menu Styles */
#mobileMenuBtn {
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 60;
}

#mobileMenuBtn:hover {
    transform: scale(1.1);
}

#mobileMenu {
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 50;
}

#mobileMenu.hidden {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

#mobileMenu:not(.hidden) {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

#mobileMenu .bg-white {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

#mobileMenu:not(.hidden) .bg-white {
    transform: translateX(0);
}

.nav-link-mobile {
    display: block;
    color: #4B5563;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.nav-link-mobile:hover {
    color: #1F2937;
    border-bottom-color: #E5E7EB;
}

.nav-link-mobile.active {
    color: #1F2937;
    font-weight: 700;
    border-bottom-color: #3D5A80;
}

.nav-link-mobile.btn-highlight {
    background-color: #3D5A80;
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 600;
    border-bottom: none !important;
    text-align: center;
}

.nav-link-mobile.btn-highlight:hover {
    background-color: #34506f;
}

.nav-link-mobile.btn-highlight.active {
    background-color: #2b4560;
}
