@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;600;700;800&display=swap');

body {
  font-family: 'Noto Sans KR', sans-serif;
}

/* Hero Gradient - Pink to Purple */
.hero-gradient {
  background: linear-gradient(135deg, #fce7f3 0%, #f3e8ff 50%, #e9d5ff 100%);
}

/* CTA Gradient */
.cta-gradient {
  background: linear-gradient(135deg, #BC9DFF 0%, #FF8DCE 100%);
}

/* Dialog Overlay */
.dialog-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
  display: none;
}

.dialog-overlay.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.dialog-content {
  background: #F7F7F7;
  border-radius: 1.5rem;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

/* Sheet Overlay (for side panel) */
.sheet-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
  display: none;
}

.sheet-overlay.active {
  display: block;
}

.sheet-content {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  max-width: 100%;
  height: 100%;
  background: white;
  z-index: 101;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}

.sheet-content.active {
  right: 0;
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  min-width: 12rem;
  padding: 0.5rem;
  display: none;
  z-index: 50;
}

.dropdown-menu.active {
  display: block;
}

/* Accordion */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-content.active {
  max-height: 200px;
}

/* Hero Image */
.hero-image {
  border-radius: 1.5rem;
  overflow: hidden;
}

/* Feature Card */
.feature-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* App Preview Card */
.app-preview-card {
  background: white;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Feature Badge */
.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: #c4b5fd;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a78bfa;
}
