


:root {
  
  --bg-main: #b80f24;
  --bg-secondary: #0a0a0c; 
  
  
  --bg-card: rgba(10, 10, 12, 0.82); 
  --bg-card-hover: rgba(18, 18, 22, 0.88);
  
  
  --accent-red: #ff1e38;
  --accent-red-glow: rgba(255, 30, 56, 0.45);
  
  
  --text-main: #f5e6c8;
  --text-muted: #a89f8d;
  --text-light: #ffffff;
  
  
  --border-light: rgba(245, 230, 200, 0.15);
  --border-red: rgba(255, 30, 56, 0.3);
  --border-red-active: #ff1e38;
  
  
  --font-title: 'Pirata One', 'Cinzel', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-vintage: 'Special Elite', 'Courier New', monospace;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  --shadow-premium: 0 15px 40px rgba(0, 0, 0, 0.6);
  
  
  --color-pending: #fbbf24;
  --color-approved: #2563eb;
  --color-rejected: #ef4444;
  --color-paid: #10b981;
}


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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-main);
  background-image: radial-gradient(rgba(0, 0, 0, 0.25) 15%, transparent 16%);
  background-size: 20px 20px; 
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}


::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
  background: var(--text-main);
  border: 2px solid var(--bg-secondary);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-red);
}


.carousel-img,
.artist-avatar,
.artist-profile-avatar,
.blog-card-img,
.appt-design-img,
.image-preview {
  filter: grayscale(100%) contrast(1.1) brightness(0.85);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  transition: filter 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.6s ease;
}

.artist-card:hover .artist-avatar,
.artist-detail-item:hover .artist-profile-avatar,
.blog-card:hover .blog-card-img,
.appt-card:hover .appt-design-img,
.custom-carousel:hover .carousel-img {
  filter: grayscale(0%) contrast(1) brightness(1);
  border-color: var(--accent-red);
}


.logo-img {
  filter: none;
  transition: var(--transition-smooth);
}
.logo-img:hover {
  transform: scale(1.05) rotate(-2deg);
}


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.hidden {
  display: none !important;
}

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


.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  border-radius: 16px; 
  box-shadow: var(--shadow-premium);
  padding: 32px;
  transition: var(--transition-smooth);
}

.glass-panel:hover {
  border-color: rgba(255, 30, 56, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  transform: translateY(-2px);
}


.section-header {
  text-align: center;
  margin-bottom: 48px;
  margin-top: 48px;
  background: var(--bg-card);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 24px 40px;
  display: inline-block;
  left: 50%;
  position: relative;
  transform: translateX(-50%);
  box-shadow: var(--shadow-premium);
}

.section-header h2 {
  font-family: var(--font-title);
  font-size: 3.2rem;
  color: var(--text-light);
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.section-header p {
  color: var(--text-muted);
  font-family: var(--font-vintage);
  font-size: 0.95rem;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  font-size: 0.95rem;
  font-weight: 400;
  border-radius: 30px; 
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  border: 2px solid var(--border-light);
  font-family: var(--font-vintage);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.btn-gold {
  background-color: var(--text-main);
  color: #000000;
  border-color: var(--text-main);
}

.btn-gold:hover {
  background-color: transparent;
  color: var(--text-main);
  box-shadow: 0 0 20px rgba(245, 230, 200, 0.35);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background: var(--text-main);
  border-color: var(--text-main);
  color: #000000;
  box-shadow: 0 0 20px rgba(245, 230, 200, 0.35);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

.btn-large {
  padding: 16px 40px;
  font-size: 1.05rem;
}


.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 12, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
  transition: var(--transition-smooth);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
}

.logo-area {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 12px;
}

.logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-title);
  color: var(--text-light);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(255, 30, 56, 0.4);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  color: var(--text-main);
  text-decoration: none;
  font-family: var(--font-vintage);
  font-size: 0.9rem;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  padding: 6px 0;
  text-transform: uppercase;
}

.nav-link i {
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

.nav-link:hover i, .nav-link.active i {
  color: var(--accent-red);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-red);
  transition: var(--transition-fast);
}

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


.menu-dropdown-wrapper {
  position: relative;
}

.menu-trigger-btn {
  background: rgba(10, 10, 12, 0.82);
  border: 1px solid var(--border-light);
  color: var(--text-main);
  padding: 10px 24px;
  border-radius: 30px; 
  font-family: var(--font-vintage);
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.menu-trigger-btn i {
  font-size: 0.95rem;
  color: var(--accent-red);
}

.menu-trigger-btn:hover {
  border-color: var(--accent-red);
  color: var(--text-light);
  box-shadow: 0 0 15px rgba(255, 30, 56, 0.3);
  transform: translateY(-2px);
}


.dropdown-menu-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 230px;
  background: rgba(10, 10, 12, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  box-shadow: var(--shadow-premium);
  padding: 16px 20px;
  z-index: 1010;
  transform-origin: top right;
}

.dropdown-menu-panel:not(.hidden) {
  animation: menuFadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes menuFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.dropdown-menu-panel .nav-links {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}

.dropdown-menu-panel .nav-link {
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 10px;
}

.dropdown-menu-panel .nav-link::after {
  display: none !important;
}

.dropdown-menu-panel .nav-link:hover,
.dropdown-menu-panel .nav-link.active {
  background: rgba(255, 30, 56, 0.08);
  border-color: rgba(255, 30, 56, 0.25);
  color: var(--accent-red);
  padding-left: 20px;
}

.dropdown-menu-panel .nav-link:hover i,
.dropdown-menu-panel .nav-link.active i {
  color: var(--accent-red);
}


.page-section {
  padding-top: 140px;
  padding-bottom: 80px;
  min-height: calc(100vh - 120px);
}


.hero-banner {
  height: 70vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-premium);
  overflow: hidden;
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: -10px; left: -10px; right: -10px; bottom: -10px;
  background-image: url('assets/hero_banner.jpg');
  background-size: cover;
  background-position: center;
  filter: blur(3px) grayscale(30%) brightness(0.45);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.65), rgba(184, 15, 36, 0.4));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 32px 40px;
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  box-shadow: var(--shadow-premium);
}

.hero-content h1 {
  font-family: var(--font-title);
  font-size: 5.5rem;
  color: #ffffff;
  font-weight: 400;
  letter-spacing: 4px;
  margin-bottom: 12px;
  line-height: 1.1;
  text-transform: uppercase;
  text-shadow: 0 0 15px rgba(255, 30, 56, 0.6);
}

.hero-content p {
  font-family: var(--font-vintage);
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 30px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}


.carousel-section {
  margin-top: 60px;
  margin-bottom: 60px;
}

.custom-carousel {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: 16px; 
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--border-light);
}

.carousel-track-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel-track {
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 1;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 2;
}

.carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  border-radius: 0px; 
}

.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(0deg, rgba(10,10,12,0.98) 0%, rgba(10,10,12,0.75) 70%, transparent 100%);
  padding: 40px 60px;
  color: #ffffff;
  z-index: 3;
  border-top: 1px solid var(--border-light);
}

.carousel-caption h3 {
  font-family: var(--font-title);
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: var(--text-main);
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 1px;
}

.carousel-caption p {
  font-family: var(--font-vintage);
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 800px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10, 10, 12, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid var(--border-light);
  color: var(--text-light);
  width: 44px;
  height: 44px;
  border-radius: 50%; 
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.carousel-btn:hover {
  background: var(--text-main);
  color: #000000;
  border-color: var(--text-main);
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

.carousel-dots {
  position: absolute;
  bottom: 20px;
  right: 40px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: var(--transition-fast);
}

.carousel-dot.active {
  background: var(--text-main);
  border-color: var(--text-main);
  transform: scale(1.25);
}


.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.artist-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
}

.artist-card .avatar-wrapper {
  width: 200px;
  height: 200px;
  border-radius: 16px; 
  overflow: hidden;
  margin-bottom: 24px;
  transition: var(--transition-smooth);
  position: relative;
}

.artist-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0px; 
}

.artist-card:hover .avatar-wrapper {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(255, 30, 56, 0.25);
}

.artist-card h3 {
  font-family: var(--font-title);
  font-size: 2.2rem;
  color: var(--text-light);
  margin-bottom: 6px;
  text-transform: uppercase;
  transition: var(--transition-fast);
  font-weight: 400;
}
.artist-card:hover h3 {
  color: var(--accent-red);
}

.artist-specialty {
  color: var(--accent-red);
  font-family: var(--font-vintage);
  font-size: 0.85rem;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-bottom: 2px dashed var(--border-light);
  padding-bottom: 4px;
  display: inline-block;
}

.artist-bio-snippet {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}


.artists-detail-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.artist-profile-showcase {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
}

.artist-profile-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.artist-profile-avatar {
  width: 260px;
  height: 260px;
  border-radius: 16px;
  object-fit: cover;
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}

.artist-profile-right h3 {
  font-family: var(--font-title);
  font-size: 3.2rem;
  color: var(--text-light);
  margin-bottom: 6px;
  text-transform: uppercase;
  font-weight: 400;
}

.artist-profile-right .specialty-badge {
  display: inline-block;
  color: var(--accent-red);
  font-family: var(--font-vintage);
  font-size: 0.9rem;
  margin-bottom: 20px;
  border-bottom: 2px dashed var(--border-light);
  padding-bottom: 4px;
  text-transform: uppercase;
}

.artist-profile-bio {
  font-size: 1.05rem;
  color: var(--text-main);
  margin-bottom: 30px;
  line-height: 1.7;
}

.artist-works-area {
  margin-top: 40px;
  border-top: 2px dashed var(--border-light);
  padding-top: 30px;
}

.artist-works-area h4 {
  font-family: var(--font-title);
  color: var(--text-light);
  font-size: 2rem;
  margin-bottom: 24px;
  text-transform: uppercase;
  font-weight: 400;
}


.blog-filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--bg-card);
  color: var(--text-main);
  border: 1px solid var(--border-light);
  padding: 8px 24px;
  border-radius: 30px; 
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: var(--font-vintage);
  text-transform: uppercase;
  font-size: 0.85rem;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--text-main);
  color: #000000;
  border-color: var(--text-main);
  box-shadow: 0 0 15px rgba(245, 230, 200, 0.25);
}

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 40px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card-img-wrapper {
  height: 240px;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 12px;
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0px;
}

.blog-card-meta {
  display: flex;
  gap: 16px;
  font-family: var(--font-vintage);
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.blog-card h3 {
  font-family: var(--font-title);
  font-size: 2rem;
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.25;
  text-transform: uppercase;
  font-weight: 400;
}

.blog-card-content {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.blog-card-author {
  margin-top: auto;
  border-top: 2px dashed var(--border-light);
  padding-top: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-vintage);
  font-size: 0.85rem;
  color: var(--accent-red);
  text-transform: uppercase;
  text-decoration: none;
}


.booking-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.booking-header {
  text-align: center;
  margin-bottom: 36px;
  background: var(--bg-card);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 24px 40px;
  box-shadow: var(--shadow-premium);
}

.booking-header h2 {
  font-family: var(--font-title);
  color: var(--text-light);
  font-size: 2.6rem;
  text-transform: uppercase;
  font-weight: 400;
}
.booking-header p {
  font-family: var(--font-vintage);
  font-size: 0.95rem;
}

.booking-login-alert {
  text-align: center;
  padding: 30px;
  border: 1px dashed var(--accent-red);
  border-radius: 16px;
  background: var(--bg-card);
  box-shadow: var(--shadow-premium);
}

.booking-login-alert p {
  font-family: var(--font-vintage);
  color: var(--text-light);
  margin-bottom: 20px;
}

.form-row {
  display: flex;
  gap: 24px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

.form-group label {
  color: var(--text-light);
  font-family: var(--font-vintage);
  font-size: 0.85rem;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.form-group input, 
.form-group select, 
.form-group textarea {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-light);
  color: var(--text-main);
  padding: 12px 16px;
  border-radius: 8px; 
  font-family: var(--font-vintage);
  font-size: 0.95rem;
  transition: var(--transition-fast);
  width: 100%;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-red);
  box-shadow: 0 0 10px rgba(255, 30, 56, 0.25);
}

.input-helper {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 6px;
  font-style: italic;
}


.time-slots-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.time-slot {
  border: 1px solid var(--border-light);
  background: rgba(0, 0, 0, 0.5);
  color: var(--text-main);
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  font-family: var(--font-vintage);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.time-slot:hover:not(.disabled):not(.selected) {
  background: var(--text-main);
  color: #000000;
  border-color: var(--text-main);
}

.time-slot.selected {
  background: var(--text-main);
  color: #000000;
  border-color: var(--text-main);
  box-shadow: 0 0 15px rgba(245, 230, 200, 0.35);
}

.time-slot.disabled {
  background: rgba(18, 18, 20, 0.6);
  color: #555560;
  border-color: rgba(255, 255, 255, 0.05);
  cursor: not-allowed;
  text-decoration: line-through;
}


.image-upload-wrapper {
  position: relative;
  border: 2px dashed var(--border-light);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
}

.image-upload-wrapper:hover {
  background: rgba(0, 0, 0, 0.7);
  border-color: var(--accent-red);
}

.image-upload-wrapper input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.upload-placeholder i {
  font-size: 2rem;
  color: var(--border-light);
  margin-bottom: 8px;
}

.upload-placeholder p {
  color: var(--text-muted);
  font-family: var(--font-vintage);
  font-size: 0.85rem;
}

.image-preview {
  max-width: 100%;
  max-height: 250px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  margin-top: 10px;
}


.auth-container {
  max-width: 500px;
  margin: 0 auto;
}

.auth-tabs {
  display: flex;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}

.auth-tab {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 12px;
  font-family: var(--font-vintage);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-fast);
  text-transform: uppercase;
}

.auth-tab.active {
  color: var(--accent-red);
  border-bottom: 3px solid var(--accent-red);
}

.auth-form {
  display: none;
}

.auth-form.active {
  display: block;
}

.auth-form h3 {
  font-family: var(--font-title);
  color: var(--text-light);
  margin-bottom: 24px;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 2rem;
}


.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  border-bottom: 2px dashed var(--border-light);
  padding-bottom: 20px;
}

.user-welcome h2 {
  font-family: var(--font-title);
  color: var(--text-light);
  text-transform: uppercase;
  font-weight: 400;
  font-size: 2.6rem;
}

.user-welcome p {
  font-family: var(--font-vintage);
  color: var(--text-muted);
}


.artist-dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 32px;
}

.grid-col-span-full {
  grid-column: 1 / -1;
}

.grid-col-span-2 {
  grid-column: span 2;
}

.artist-header-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border-bottom: 2px dashed var(--border-light);
  padding-bottom: 20px;
}

.artist-meta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.artist-dashboard-avatar {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid var(--border-light);
}

.iban-info {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-family: monospace;
}

.wallet-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: 16px 24px;
  border-radius: 16px;
  text-align: right;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-premium);
}

.wallet-label {
  font-family: var(--font-vintage);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.wallet-amount {
  font-size: 2rem;
  font-weight: 400;
  color: var(--accent-red);
  font-family: var(--font-title);
}

.scrollable {
  max-height: 450px;
  overflow-y: auto;
  padding-right: 8px;
}


.appointments-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.appt-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-fast);
}

.appt-card:hover {
  border-color: rgba(255, 30, 56, 0.45);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  transform: translateY(-2px);
}

.appt-info-main {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.appt-design-img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 12px;
}

.appt-text-details h4 {
  color: var(--text-light);
  font-family: var(--font-title);
  font-weight: 400;
  font-size: 1.6rem;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.appt-meta-line {
  font-family: var(--font-vintage);
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.appt-meta-line i {
  width: 16px;
  color: var(--accent-red);
}

.appt-desc {
  font-size: 0.9rem;
  color: var(--text-main);
  background: rgba(0, 0, 0, 0.4);
  border: 1px dashed var(--border-light);
  border-radius: 8px;
  padding: 8px 14px;
  margin-top: 8px;
}

.appt-status-action {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}


.status-badge {
  padding: 6px 14px;
  border-radius: 20px; 
  font-family: var(--font-vintage);
  font-size: 0.75rem;
  text-transform: uppercase;
  display: inline-block;
  border: 1px solid var(--border-light);
}

.status-pending {
  background: rgba(251, 191, 36, 0.04);
  color: var(--color-pending);
  border-color: var(--color-pending);
}

.status-approved {
  background: rgba(37, 99, 235, 0.04);
  color: var(--color-approved);
  border-color: var(--color-approved);
}

.status-rejected {
  background: rgba(239, 68, 68, 0.04);
  color: var(--color-rejected);
  border-color: var(--color-rejected);
}

.status-paid {
  background: rgba(16, 185, 129, 0.04);
  color: var(--color-paid);
  border-color: var(--color-paid);
}

.negotiation-badge {
  background: rgba(255, 30, 56, 0.04);
  color: var(--accent-red);
  border-color: var(--accent-red);
}


.action-row {
  display: flex;
  gap: 8px;
}

.btn-small {
  padding: 6px 16px;
  font-size: 0.8rem;
  border-radius: 20px;
}

.btn-success {
  background-color: var(--color-paid);
  border-color: var(--color-paid);
  color: #ffffff;
}
.btn-success:hover {
  background-color: transparent;
  color: var(--color-paid);
  border-color: var(--color-paid);
}

.btn-danger {
  background-color: var(--color-rejected);
  border-color: var(--color-rejected);
  color: #ffffff;
}
.btn-danger:hover {
  background-color: transparent;
  color: var(--color-rejected);
  border-color: var(--color-rejected);
}

.approve-form-inline {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  align-items: center;
}

.approve-form-inline input {
  padding: 6px 10px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-light);
  color: var(--text-main);
  border-radius: 8px;
  width: 110px;
  font-family: var(--font-vintage);
}


.schedule-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.schedule-slot-btn {
  padding: 10px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  color: var(--text-main);
  cursor: pointer;
  text-align: center;
  transition: var(--transition-fast);
  font-family: var(--font-vintage);
  font-size: 0.85rem;
}

.schedule-slot-btn.blocked {
  background: rgba(239, 68, 68, 0.2);
  border-color: var(--color-rejected);
  color: var(--color-rejected);
  text-decoration: line-through;
}

.schedule-slot-btn:hover {
  background: var(--text-main);
  border-color: var(--text-main);
  color: #000000;
}


.footer-info {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  padding: 60px 0 0 0;
  margin-top: 100px;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 40px;
}

.footer-col h3 {
  font-family: var(--font-title);
  color: var(--text-light);
  font-size: 1.8rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 400;
}

.footer-col p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-col p i {
  color: var(--accent-red);
  margin-top: 4px;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%; 
  background: var(--bg-card);
  color: var(--text-main);
  font-size: 1.1rem;
  border: 1px solid var(--border-light);
  transition: var(--transition-fast);
}

.social-icons a:hover {
  background: var(--text-main);
  border-color: var(--text-main);
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(245, 230, 200, 0.25);
}

.map-container {
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--border-light);
}

.footer-bottom {
  border-top: 2px dashed var(--border-light);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-family: var(--font-vintage);
  color: var(--text-muted);
  font-size: 0.85rem;
}


.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.modal-content {
  width: 100%;
  max-width: 500px;
  position: relative;
  border: 1px solid var(--border-light);
  border-radius: 20px; 
  background: var(--bg-card);
  transform: scale(1);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  padding: 32px;
}

.modal-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.6rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.modal-close:hover {
  color: var(--accent-red);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.modal-header h2 {
  font-family: var(--font-title);
  color: var(--text-light);
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 400;
}


@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .artist-dashboard-grid {
    grid-template-columns: 1fr;
  }
  
  .grid-col-span-2, .grid-col-span-full {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  

  .hero-content h1 {
    font-size: 3.5rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .custom-carousel {
    height: 350px;
  }

  .carousel-caption {
    padding: 20px;
  }

  .carousel-caption h3 {
    font-size: 1.6rem;
  }

  .artist-profile-showcase {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .appt-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .appt-status-action {
    text-align: left;
    align-items: flex-start;
    width: 100%;
  }

  .artist-header-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .wallet-card {
    text-align: left;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 12px 16px;
  }
  .logo-text {
    font-size: 1.6rem;
  }
  .menu-trigger-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
    letter-spacing: 1px;
  }
  .dropdown-menu-panel {
    width: 200px;
    padding: 12px 16px;
  }
}


.chat-modal {
  max-width: 600px !important;
  width: 90% !important;
  height: 85vh !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 24px !important;
  border-radius: 20px !important;
  background: var(--bg-card) !important;
  border: 1px solid var(--border-light) !important;
}

.chat-appointment-summary {
  background: var(--bg-card-hover);
  border: 1px dashed var(--border-light);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 16px;
  font-family: var(--font-vintage);
  font-size: 0.85rem;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-main);
}
.chat-appointment-summary strong {
  color: var(--accent-red);
}

.chat-messages-container {
  flex: 1;
  overflow-y: auto;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 16px;
  background: var(--bg-secondary) !important;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.chat-bubble {
  max-width: 80%;
  padding: 10px 14px;
  font-size: 0.9rem;
  line-height: 1.4;
  border: 1px solid var(--border-light);
}

.chat-bubble.sent {
  align-self: flex-end;
  background: var(--bg-main) !important;
  color: var(--text-main) !important;
  border-color: var(--border-light) !important;
  border-radius: 16px 16px 2px 16px; 
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.chat-bubble.received {
  align-self: flex-start;
  background: var(--bg-card) !important;
  color: var(--text-main) !important;
  border-color: var(--border-light) !important;
  border-radius: 16px 16px 16px 2px;
}

.chat-bubble-time {
  display: block;
  font-family: var(--font-vintage);
  font-size: 0.7rem;
  margin-top: 4px;
  text-align: right;
  opacity: 0.6;
}

.chat-message-form {
  display: flex;
  gap: 12px;
}

