/* ==========================================
   Music Bar NOVE - Elegant & Sophisticated Styles
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Montserrat:wght@200;300;400;500;600;700&display=swap');

:root {
  /* Elegant Violet & Gold Palette */
  --color-primary: #9b59d0;
  --color-primary-light: #b47ee0;
  --color-secondary: #6b2d8c;
  --color-accent: #d4af37;
  --color-gold: #c9a858;
  --color-violet-dark: #4a1e5c;
  
  /* Background Colors */
  --color-bg-dark: #0a0412;
  --color-bg-darker: #050208;
  --color-bg-card: rgba(30, 15, 40, 0.8);
  --color-bg-overlay: rgba(15, 8, 25, 0.9);
  
  /* Text Colors */
  --color-text: #f5f5f5;
  --color-text-muted: #b8a8c8;
  --color-text-dark: #6b5c7c;
  
  /* Border */
  --color-border: rgba(155, 89, 208, 0.2);
  --color-border-light: rgba(155, 89, 208, 0.1);
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2.5rem;
  --spacing-xl: 4rem;
  
  /* Typography */
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(107, 45, 140, 0.3);
  --shadow-md: 0 4px 16px rgba(107, 45, 140, 0.4);
  --shadow-lg: 0 8px 32px rgba(107, 45, 140, 0.5);
  --shadow-glow: 0 0 25px rgba(155, 89, 208, 0.4);
  --shadow-gold: 0 0 20px rgba(212, 175, 55, 0.3);
}

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

body {
  font-family: var(--font-body);
  background: var(--color-bg-dark);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
  font-weight: 300;
  letter-spacing: 0.3px;
}

/* ==========================================
   Typography
   ========================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 1px;
}

h1 { font-size: 3.5rem; line-height: 1.2; }
h2 { font-size: 2.8rem; line-height: 1.3; }
h3 { font-size: 2rem; line-height: 1.4; }
h4 { font-size: 1.5rem; line-height: 1.4; }

/* ==========================================
   Navbar - Elegant & Minimal
   ========================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background: var(--color-bg-overlay);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  padding: 1.2rem 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
  padding: 0.8rem 0;
  background: rgba(10, 10, 10, 0.95);
  box-shadow: var(--shadow-md);
}

.navbar .container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5rem;
}

.nav-brand .brand-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  letter-spacing: 2px;
}

.nav-brand .brand-logo img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  object-fit: cover;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 10px rgba(155, 89, 208, 0.3));
  background: white;
  padding: 2px;
}

.nav-brand .brand-logo:hover img {
  filter: drop-shadow(0 0 20px rgba(155, 89, 208, 0.6));
  transform: translateY(-2px);
}

/* Mobile Menu Hamburger */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 1150;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(10px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-10px);
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1050;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-nav-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: var(--color-bg-dark);
  border-left: 1px solid var(--color-border);
  z-index: 1080;
  transition: right 0.3s ease;
  overflow-y: auto;
  padding: 5rem 2rem 2rem;
}

.mobile-nav-menu.active {
  right: 0;
}

.mobile-nav-menu .nav-link {
  display: block;
  padding: 1rem 0;
  font-size: 1.1rem;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile-nav-menu .nav-link:hover,
.mobile-nav-menu .nav-link.active {
  color: var(--color-primary);
  padding-left: 1rem;
}

.mobile-nav-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.mobile-nav-actions .btn {
  flex: 1;
}

/* Menu Tabs */
.menu-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--color-border);
}

.menu-tab {
  flex: 1;
  padding: 1rem 2rem;
  background: transparent;
  border: none;
  color: var(--color-text-muted);
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}

.menu-tab i {
  margin-right: 0.5rem;
}

.menu-tab:hover {
  color: var(--color-primary);
}

.menu-tab.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.menu-tab-content {
  display: none;
}

.menu-tab-content.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

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

/* Calendar Styles */
.calendar-container {
  margin: 3rem 0;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  background: rgba(155, 89, 208, 0.1);
  border-bottom: 1px solid var(--color-border);
}

.calendar-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.calendar-nav-btn {
  background: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.calendar-nav-btn:hover {
  background: var(--color-primary);
  color: white;
}

.calendar-month {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 2px;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: rgba(155, 89, 208, 0.05);
  border-bottom: 1px solid var(--color-border);
}

.calendar-weekday {
  text-align: center;
  padding: 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.calendar-weekday.sunday {
  color: #ff6b6b;
}

.calendar-weekday.saturday {
  color: var(--color-primary);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: var(--color-border);
}

.calendar-day {
  background: var(--color-bg-dark);
  min-height: 150px;
  padding: 0.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.calendar-day:hover {
  background: rgba(155, 89, 208, 0.05);
}

.calendar-day.empty {
  background: rgba(0, 0, 0, 0.3);
}

.calendar-day-number {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.calendar-day.sunday .calendar-day-number {
  color: #ff6b6b;
}

.calendar-day.saturday .calendar-day-number {
  color: var(--color-primary);
}

.calendar-event-card {
  background: rgba(155, 89, 208, 0.1);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}

.calendar-event-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(155, 89, 208, 0.3);
  border-color: var(--color-primary);
}

.calendar-event-image {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.calendar-event-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.calendar-event-genre {
  font-size: 0.75rem;
  color: var(--color-primary);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}


}

.nav-menu {
  display: flex;
  gap: 3.5rem;
  align-items: center;
}

.nav-link {
  color: var(--color-text);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--color-primary);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary);
}

.nav-actions {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.lang-switch {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-decoration: none;
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.lang-switch:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
  background: rgba(155, 89, 208, 0.08);
}

/* ==========================================
   Buttons - Sophisticated
   ========================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  border-radius: 0;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.6s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  color: white;
  border: 1px solid var(--color-primary);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary) 100%);
  color: white;
  box-shadow: var(--shadow-glow), var(--shadow-gold);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
  box-shadow: var(--shadow-glow);
}

.btn-sm {
  padding: 0.7rem 1.8rem;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 1.2rem 3rem;
  font-size: 0.95rem;
}

/* ==========================================
   Hero Section - Ultra Elegant
   ========================================== */

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background: var(--color-bg-darker);
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.slide.active {
  opacity: 1;
}

.slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.2) 0%,
    rgba(0,0,0,0.5) 50%,
    rgba(10,10,10,0.9) 100%
  );
}

.slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at center,
    transparent 0%,
    rgba(10,10,10,0.3) 100%
  );
}

.slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.slide-content h2 {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 300;
  color: white;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  margin-bottom: 1.5rem;
  letter-spacing: 4px;
  animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-content .meta {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 300;
  animation: fadeInUp 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  z-index: 10;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: float 3s ease-in-out infinite;
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
}

.hero-dots {
  position: absolute;
  bottom: 2rem;
  right: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 10;
}

.dot {
  width: 2px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
}

.dot::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--color-primary);
  transition: height 0.4s ease;
}

.dot.active::before {
  height: 100%;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.4);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

/* ==========================================
   Main Content
   ========================================== */

.main-content {
  margin-top: 0;
  min-height: calc(100vh - 80px);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--color-border), transparent);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.section-overline {
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-weight: 400;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 300;
}

/* ==========================================
   Marquee - Elegant Ticker
   ========================================== */

.marquee {
  background: linear-gradient(90deg, 
    rgba(155, 89, 208, 0.05) 0%, 
    rgba(212, 175, 55, 0.08) 50%,
    rgba(155, 89, 208, 0.05) 100%);
  padding: 2rem 0;
  overflow: hidden;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  position: relative;
}

.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
}

.marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--color-bg-dark), transparent);
}

.marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--color-bg-dark), transparent);
}

.marquee-track {
  display: flex;
  gap: 5rem;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 3px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.marquee-item::before {
  content: '◆';
  font-size: 0.6rem;
  color: var(--color-primary);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ==========================================
   Cards - Sophisticated
   ========================================== */

.card {
  background: var(--color-bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-border);
  padding: 3rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  transition: left 0.6s ease;
}

.card:hover::before {
  left: 100%;
}

.card:hover {
  border-color: var(--color-primary);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  background: rgba(20, 20, 20, 0.95);
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--color-primary);
  letter-spacing: 1px;
}

.card-title i {
  font-size: 1.4rem;
}

/* ==========================================
   Grid
   ========================================== */

.grid {
  display: grid;
  gap: 2.5rem;
}

.cols-2 {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.cols-3 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

/* ==========================================
   Page Header (for internal pages)
   ========================================== */

.page-header {
  text-align: center;
  padding: 8rem 0 4rem;
  background: linear-gradient(to bottom, var(--color-bg-darker), var(--color-bg-dark));
  border-bottom: 1px solid var(--color-border);
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.page-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--color-text);
  margin-bottom: 1rem;
  letter-spacing: 3px;
}

.page-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  font-weight: 300;
  letter-spacing: 1px;
}

/* ==========================================
   Instagram Section
   ========================================== */

.instagram-section {
  text-align: center;
  padding: 4rem 0;
  background: linear-gradient(to bottom,
    rgba(155, 89, 208, 0.05) 0%,
    transparent 100%);
  border-top: 1px solid var(--color-border);
}

.instagram-section h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 300;
  color: var(--color-text);
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.instagram-handle {
  font-size: 1.2rem;
  color: var(--color-accent);
  font-weight: 400;
  margin-bottom: 2rem;
  letter-spacing: 2px;
}

/* ==========================================
   Footer - Minimal & Elegant
   ========================================== */

.footer {
  background: var(--color-bg-darker);
  border-top: 1px solid var(--color-border);
  padding: 4rem 0 2rem;
  margin-top: 6rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

.footer-section h4 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.footer-text {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.9;
  font-weight: 300;
  white-space: pre-line;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  color: var(--color-text-dark);
  font-size: 0.85rem;
  letter-spacing: 1px;
}

/* ==========================================
   Menu & Pricing Styles
   ========================================== */

.menu-container {
  max-width: 1000px;
  margin: 0 auto;
}

/* Menu Tabs */
.menu-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  border-bottom: 2px solid var(--color-border);
  justify-content: center;
  flex-wrap: wrap;
}

.menu-tab {
  padding: 1rem 2rem;
  background: transparent;
  border: none;
  color: var(--color-text-muted);
  font-size: 1.1rem;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  letter-spacing: 1px;
  font-family: var(--font-body);
}

.menu-tab::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s ease;
}

.menu-tab:hover {
  color: var(--color-primary);
}

.menu-tab.active {
  color: var(--color-primary);
}

.menu-tab.active::after {
  width: 100%;
}

.menu-content {
  display: none;
}

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

.menu-category {
  margin-bottom: 3rem;
}

.category-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--color-primary);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: 1rem;
  letter-spacing: 2px;
}

.menu-subcategory {
  margin-bottom: 2rem;
}

.subcategory-header {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--color-text-muted);
  margin-bottom: 1.2rem;
  padding-left: 1rem;
  border-left: 2px solid var(--color-primary);
  letter-spacing: 1px;
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  background: rgba(155, 89, 208, 0.05);
  border: 1px solid var(--color-border-light);
  transition: all 0.4s ease;
}

.menu-item:hover {
  background: rgba(155, 89, 208, 0.12);
  border-color: var(--color-border);
  transform: translateX(8px);
  box-shadow: var(--shadow-sm);
}

.item-name {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.item-price {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.3rem;
  letter-spacing: 1px;
}

/* Table Styles */

.table {
  width: 100%;
  border-collapse: collapse;
}

.table tbody tr {
  border-bottom: 1px solid var(--color-border-light);
  transition: background 0.3s ease;
}

.table tbody tr:hover {
  background: rgba(155, 89, 208, 0.08);
}

.table td {
  padding: 1.5rem 1rem;
  font-weight: 300;
}

.table .text-right {
  text-align: right;
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--color-primary);
  font-size: 1.2rem;
}

.table-label {
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.table-desc {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  font-weight: 300;
}

.pricing-notes {
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(155, 89, 208, 0.08);
  border-left: 2px solid var(--color-primary);
}

.note-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  font-weight: 300;
}

.note-item i {
  color: var(--color-primary);
  margin-top: 0.3rem;
}

/* ==========================================
   Utility Classes
   ========================================== */

.text-center {
  text-align: center;
}

.text-muted {
  color: var(--color-text-muted);
}

.text-sm {
  font-size: 0.875rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* ==========================================
   Responsive Design
   ========================================== */

/* PC版専用 - 1025px以上 */
@media (min-width: 1025px) {
  .nav-menu {
    display: flex;
    gap: 3.5rem;
    align-items: center;
  }
}

@media (max-width: 1024px) {
  :root {
    --spacing-xl: 3rem;
  }
  
  .navbar .container {
    padding: 0 2rem;
  }
  
  .container {
    padding: 0 2rem;
  }
  
  h1 { font-size: 3rem; }
  h2 { font-size: 2.5rem; }
  
  .slide-content h2 {
    font-size: 4rem;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .nav-actions {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-nav-menu {
    display: block;
  }
  
  .navbar .container {
    padding: 0 1.5rem;
  }
  
  .container {
    padding: 0 1.5rem;
  }

  .hero {
    height: 80vh;
    min-height: 600px;
  }

  .slide-content h2 {
    font-size: 3rem;
    letter-spacing: 2px;
  }
  
  .slide-content .meta {
    font-size: 0.9rem;
    letter-spacing: 3px;
  }
  
  /* Page Hero Mobile Styles */
  .page-hero {
    height: 200px !important;
  }
  
  .page-hero h1 {
    font-size: 2rem !important;
  }
  
  .page-hero p {
    font-size: 0.9rem !important;
  }

  .section-title {
    font-size: 2.2rem;
  }
  
  .section {
    padding: 4rem 0;
  }

  .cols-2,
  .cols-3 {
    grid-template-columns: 1fr;
  }
  
  .card {
    padding: 2rem;
  }
  
  .hero-dots {
    right: 1.5rem;
  }

  /* Menu Tabs for Mobile */
  .menu-tabs {
    flex-direction: column;
    gap: 0;
  }
  
  /* Mobile Calendar - Vertical List Style (SEL OCTAGON TOKYO) */
  .calendar-weekdays {
    display: none;
  }
  
  .calendar-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: transparent;
  }
  
  .calendar-day {
    display: flex;
    flex-direction: row;
    align-items: center;
    min-height: auto;
    padding: 0;
    border: 1px solid var(--color-border);
    border-bottom: none;
    background: var(--color-bg-dark);
  }
  
  .calendar-day:last-child {
    border-bottom: 1px solid var(--color-border);
  }
  
  .calendar-day.empty {
    display: none;
  }
  
  .calendar-day-number {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    padding: 1.5rem 1rem;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    border-right: 1px solid var(--color-border);
  }
  
  .calendar-day-number::after {
    content: attr(data-weekday);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.25rem;
  }
  
  .calendar-event-card {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin: 0;
    background: transparent;
    border: none;
    border-radius: 0;
  }
  
  .calendar-event-image {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    margin: 0;
  }
  
  .calendar-event-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .calendar-event-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .calendar-event-genre {
    font-size: 0.8rem;
  }

  .menu-tab {
    border-bottom: 1px solid var(--color-border);
    padding: 1rem;
    text-align: left;
  }

  .menu-tab.active {
    border-left: 3px solid var(--color-primary);
    border-bottom-color: var(--color-border);
  }

  /* Event Flyer Images */
  .grid.cols-3 img {
    max-height: 400px;
    object-fit: contain;
  }

  /* Calendar Responsive */
  .calendar-header {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }

  .calendar-nav {
    gap: 1rem;
  }

  .calendar-nav-btn {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }

  .calendar-month {
    font-size: 1.4rem;
  }

  .calendar-weekday {
    padding: 0.5rem;
    font-size: 0.75rem;
  }

  .calendar-day {
    min-height: 100px;
  }

  .calendar-day-number {
    font-size: 1rem;
  }

  .calendar-event-image {
    height: 60px;
  }

  .calendar-event-title {
    font-size: 0.75rem;
  }

  .calendar-event-genre {
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  
  .slide-content h2 {
    font-size: 2.5rem;
  }
  
  .btn {
    padding: 0.9rem 2rem;
    font-size: 0.8rem;
  }
  
  .card {
    padding: 1.5rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }

  /* Logo for Mobile */
  .nav-brand .brand-logo img {
    height: 40px;
    width: 40px;
  }

  /* Menu Tabs for Small Mobile */
  .menu-tab {
    font-size: 0.95rem;
    padding: 0.8rem;
  }
}
