/* ==========================================
   CSS DESIGN SYSTEM - PARTY RENTAL APPLICATION
   ========================================== */

/* Globális alapok és változók */
:root {
  --font-family: 'Outfit', sans-serif;
  
  /* Színpaletta */
  --bg-main: #070913;
  --bg-card: rgba(15, 20, 38, 0.6);
  --bg-card-hover: rgba(22, 29, 54, 0.85);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(139, 92, 246, 0.3);
  
  --primary: #8b5cf6;
  --primary-hover: #a78bfa;
  --secondary: #ec4899;
  --secondary-hover: #f472b6;
  --accent: #06b6d4;
  --accent-hover: #22d3ee;
  
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-dark: #111827;
  
  --success: #10b981;
  --error: #ef4444;
  --warning: #f59e0b;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 20px rgba(139, 92, 246, 0.25);
  
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-main);
  color: var(--text-main);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Scrollbar stílusok */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
  background: rgba(139, 92, 246, 0.3);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

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

/* Ambient glow hátterek */
.ambient-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(140px);
  z-index: -1;
  opacity: 0.15;
  pointer-events: none;
}
.glow-1 {
  background: var(--primary);
  top: 10%;
  left: -100px;
}
.glow-2 {
  background: var(--secondary);
  top: 60%;
  right: -100px;
}

/* Szöveg- és dizájnelemek */
.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Gombok stílusai */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-family);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #7c3aed 100%);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.45);
  background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary) 100%);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid var(--border-color);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--primary);
}
.btn-outline:hover {
  background: rgba(139, 92, 246, 0.1);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-large {
  padding: 14px 28px;
  font-size: 1.05rem;
  border-radius: 12px;
}

.btn-small {
  padding: 6px 12px;
  font-size: 0.85rem;
  border-radius: 6px;
}

.btn-text {
  background: none;
  border: none;
  color: var(--primary);
  font-family: var(--font-family);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.btn-text:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.w-100 {
  width: 100%;
}

.flex-1 {
  flex: 1;
}

/* Header stílus */
.app-header {
  height: var(--header-height);
  background: rgba(7, 9, 19, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text-main);
  text-decoration: none;
  letter-spacing: 1px;
}

.logo-icon {
  color: var(--primary);
  font-size: 1.6rem;
  filter: drop-shadow(0 0 8px var(--primary));
}

.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link:hover, .nav-link.active {
  color: var(--text-main);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.admin-btn {
  position: relative;
}

.badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--secondary);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px var(--secondary);
  border: 2px solid var(--bg-main);
}

/* Hero Section */
.hero-section {
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 80px;
  position: relative;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(139, 92, 246, 0.1);
  color: var(--primary-hover);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(139, 92, 246, 0.2);
  margin-bottom: 24px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

/* Hero visual elem */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-visual::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(139,92,246,0.15) 0%, transparent 70%);
  z-index: -1;
}

.visual-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 16px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow);
  transform: rotate(3deg);
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.visual-card:hover {
  transform: rotate(0deg) scale(1.02);
  border-color: rgba(139, 92, 246, 0.3);
}

.visual-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  background: var(--secondary);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  box-shadow: 0 0 15px var(--secondary);
}

.visual-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 16px;
}

.visual-info h3 {
  font-size: 1.25rem;
  margin-bottom: 4px;
}
.visual-info p {
  color: var(--primary-hover);
  font-weight: 600;
}

/* Hogyan működik Section */
.how-it-works {
  padding: 80px 0;
  background: rgba(15, 20, 38, 0.3);
  border-y: 1px solid var(--border-color);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  color: var(--secondary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 8px;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 500px;
  margin: 12px auto 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.step-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow);
}

.step-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(236, 72, 153, 0.15) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--primary);
  font-size: 1.8rem;
  border: 1px solid rgba(139, 92, 246, 0.2);
  transition: var(--transition);
}
.step-card:hover .step-icon {
  color: white;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  transform: rotate(10deg);
  box-shadow: var(--shadow-glow);
}

.step-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Equipment Section */
.equipment-section {
  padding: 100px 0;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}

.loading-spinner {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 0;
  font-size: 1.2rem;
  color: var(--text-muted);
}

.equipment-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(8px);
}
.equipment-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glow);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), var(--shadow-glow);
}

.card-img-wrapper {
  width: 100%;
  height: 230px;
  position: relative;
  overflow: hidden;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.equipment-card:hover .card-img {
  transform: scale(1.08);
}

.category-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(7, 9, 19, 0.75);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-main);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
}

.card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.card-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
}

.card-price {
  display: flex;
  flex-direction: column;
}

.price-num {
  font-size: 1.5rem;
  font-weight: 800;
}
.price-unit {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: rgba(15, 20, 38, 0.2);
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  backdrop-filter: blur(8px);
}

.contact-info h2 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.contact-info p {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.05rem;
}
.detail-item i {
  width: 40px;
  height: 40px;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.form-group input, .form-group textarea, .form-group select {
  font-family: var(--font-family);
  background: rgba(7, 9, 19, 0.6);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 12px 16px;
  border-radius: 10px;
  outline: none;
  font-size: 0.95rem;
  transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.2);
}

/* Footer bottom bar */
.app-footer-bar {
  padding: 30px 0;
  border-top: 1px solid var(--border-color);
  background: #05070f;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-container p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-socials {
  display: flex;
  gap: 16px;
}
.footer-socials a {
  color: var(--text-muted);
  font-size: 1.2rem;
  transition: var(--transition);
}
.footer-socials a:hover {
  color: var(--primary);
}

/* MODAL SYSTEM (FOGLALÁSI ABLAK) */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 7, 13, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 24px;
}
.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: #0f1426;
  border: 1px solid var(--border-color);
  border-radius: 28px;
  width: 100%;
  max-width: 960px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
  transform: translateY(20px);
  transition: transform 0.3s ease;
  padding: 40px;
  display: flex;
  flex-direction: column;
}
.modal-backdrop.open .modal-card {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.modal-close-btn:hover {
  background: var(--error);
  color: white;
  border-color: var(--error);
  transform: rotate(90deg);
}

.modal-header {
  margin-bottom: 28px;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.modal-header h2 {
  font-size: 2rem;
  font-weight: 800;
}
.category-badge {
  background: rgba(139, 92, 246, 0.15);
  color: var(--primary-hover);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.modal-body-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 40px;
}

.modal-eq-details-box {
  background: rgba(7, 9, 19, 0.5);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 24px;
}
.modal-eq-price {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary-hover);
}
.modal-eq-desc-text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* INTERAKTÍV NAPTÁR STÍLUSOK */
.calendar-container {
  background: rgba(7, 9, 19, 0.7);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 24px;
}

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

.calendar-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: capitalize;
}

.calendar-nav-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.calendar-nav-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-bottom: 12px;
}
.calendar-weekdays div {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.calendar-day {
  aspect-ratio: 1;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  color: var(--text-main);
  position: relative;
}

/* Különböző nap típusok stílusa */
.calendar-day:hover:not(.disabled):not(.booked) {
  background: rgba(139, 92, 246, 0.2);
  border-color: var(--primary);
}

.calendar-day.empty {
  background: transparent;
  cursor: default;
  pointer-events: none;
}

.calendar-day.disabled {
  color: rgba(255, 255, 255, 0.15);
  background: transparent;
  cursor: not-allowed;
  font-weight: 400;
}

.calendar-day.booked {
  background: rgba(239, 68, 110, 0.12);
  color: var(--error);
  text-decoration: line-through;
  cursor: not-allowed;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.calendar-day.selected {
  background: var(--primary) !important;
  color: white !important;
  box-shadow: 0 0 15px var(--primary);
}

.calendar-day.in-range {
  background: rgba(6, 182, 212, 0.25);
  color: var(--accent-hover);
  border-radius: 0;
}
.calendar-day.start-range {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  background: var(--primary);
  color: white;
}
.calendar-day.end-range {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  background: var(--accent);
  color: white;
}

.calendar-legend {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.legend-dot.free { background: rgba(255, 255, 255, 0.2); }
.legend-dot.booked { background: var(--error); }
.legend-dot.selected { background: var(--primary); }

/* Dátum kijelölések és Összegző doboz */
.form-subtitle {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-hover);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 8px;
}
.form-subtitle:not(:first-of-type) {
  margin-top: 24px;
}

.date-inputs-row {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.price-summary-box {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
  border: 1px solid var(--border-glow);
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 20px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.summary-row strong {
  font-weight: 700;
}
.total-row {
  margin-top: 12px;
  border-top: 1px solid var(--border-color);
  padding-top: 12px;
  font-size: 1.2rem;
}

/* ==========================================
   TULAJDONOSI (ADMIN) FELÜLET STÍLUSAI
   ========================================== */
.admin-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #060810;
  z-index: 500;
  display: none;
  flex-direction: column;
  overflow-y: auto;
}
.admin-panel.open {
  display: flex;
}

.admin-header-bar {
  background: #0c0f1d;
  border-bottom: 1px solid var(--border-color);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 10;
}

.admin-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.admin-header-content h2 {
  font-size: 1.5rem;
  font-weight: 800;
}

.admin-container {
  padding-top: 32px;
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Admin statisztikák */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stat-card {
  background: rgba(15, 20, 38, 0.8);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  backdrop-filter: blur(8px);
}

.stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.stat-icon.pink {
  background: rgba(236, 72, 153, 0.1);
  color: var(--secondary);
}
.stat-icon.purple {
  background: rgba(139, 92, 246, 0.1);
  color: var(--primary);
}
.stat-icon.cyan {
  background: rgba(6, 182, 212, 0.1);
  color: var(--accent);
}

.stat-info {
  display: flex;
  flex-direction: column;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}
.stat-value {
  font-size: 1.6rem;
  font-weight: 800;
}

/* Admin rács elrendezés */
.admin-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 32px;
}

.admin-card {
  background: rgba(15, 20, 38, 0.8);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 16px;
}
.card-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Foglalási táblázat */
.table-responsive {
  width: 100%;
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.admin-table th, .admin-table td {
  padding: 16px;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.9rem;
}

.admin-table th {
  color: var(--text-muted);
  font-weight: 600;
  background: rgba(0, 0, 0, 0.2);
}

.admin-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

/* Bérlő részletező a táblázatban */
.customer-cell {
  display: flex;
  flex-direction: column;
}
.customer-name {
  font-weight: 700;
}
.customer-contact {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Státusz badge-ek */
.status-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}
.status-badge.pending {
  background: rgba(245, 158, 11, 0.15);
  color: var(--warning);
  border: 1px solid rgba(245, 158, 11, 0.2);
}
.status-badge.quoted {
  background: rgba(6, 182, 212, 0.15);
  color: var(--accent);
  border: 1px solid rgba(6, 182, 212, 0.2);
}
.status-badge.approved {
  background: rgba(16, 185, 129, 0.15);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.2);
}
.status-badge.cancelled {
  background: rgba(239, 68, 68, 0.15);
  color: var(--error);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.admin-actions-cell {
  display: flex;
  gap: 8px;
}

/* Oldalsáv panelek (Értesítések és E-mail logok) */
.admin-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.notification-list, .email-logs-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 280px;
  overflow-y: auto;
}

.empty-list-text {
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 20px 0;
}

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

/* Értesítési elemek */
.notification-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  padding: 12px;
  border-radius: 10px;
  font-size: 0.85rem;
  position: relative;
  transition: var(--transition);
}
.notification-item.unread {
  border-left: 3px solid var(--secondary);
  background: rgba(236, 72, 153, 0.05);
}
.notification-time {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* E-mail log elemek */
.email-log-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  padding: 12px;
  border-radius: 10px;
  font-size: 0.85rem;
}
.email-log-item strong {
  color: var(--accent);
}
.email-log-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
}
.email-log-title {
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.email-log-to {
  color: var(--text-muted);
  font-size: 0.75rem;
  margin-bottom: 8px;
}
.email-preview-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--primary-hover);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  border: 1px dashed rgba(139, 92, 246, 0.4);
  padding: 4px 8px;
  border-radius: 6px;
  margin-top: 4px;
  transition: var(--transition);
}
.email-preview-link:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: var(--primary);
}

/* CUSTOM TOAST SYSTEM */
.alert-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #0f172a;
  border: 1px solid var(--success);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.25);
  border-radius: 12px;
  padding: 16px 24px;
  z-index: 2000;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.alert-toast.show {
  transform: translateX(0);
}
.alert-toast.error {
  border-color: var(--error);
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.25);
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 12px;
}
.toast-icon {
  font-size: 1.3rem;
}
.alert-toast:not(.error) .toast-icon {
  color: var(--success);
}
.alert-toast.error .toast-icon {
  color: var(--error);
}
.toast-message {
  font-size: 0.95rem;
  font-weight: 600;
}

/* Swticher gombok az admin felületen */
.btn-switcher {
  background: transparent;
  color: var(--text-muted);
  border: none;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-switcher:hover {
  color: var(--text-main);
}
.btn-switcher.active {
  background: var(--primary);
  color: white;
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
}

/* Admin naptár specifikus stílusok */
.admin-cal-day {
  aspect-ratio: auto !important;
  min-height: 95px !important;
  justify-content: flex-start !important;
  align-items: stretch !important;
  padding: 8px !important;
  background: rgba(255, 255, 255, 0.01) !important;
}
.admin-cal-day .day-number {
  font-size: 0.75rem;
  font-weight: bold;
  color: var(--text-muted);
  text-align: right;
  margin-bottom: 4px;
}
.admin-cal-day.today {
  border: 1.5px solid var(--accent) !important;
  background: rgba(6, 182, 212, 0.05) !important;
}

.admin-cal-booking-badge {
  padding: 3px 6px;
  font-size: 0.7rem;
  border-radius: 4px;
  margin-top: 3px;
  font-weight: 600;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
  user-select: none;
}
.admin-cal-booking-badge:hover {
  transform: scale(1.02);
  filter: brightness(1.15);
}

/* Státusz Szűrő Gombok */
.status-filters .filter-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 8px;
  transition: var(--transition);
  cursor: pointer;
}
.status-filters .filter-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
}
.status-filters .filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
}

/* RESPONSIVE DIZÁJN */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .hero-subtitle {
    margin: 0 auto 32px;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-visual {
    margin-top: 32px;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-card {
    grid-template-columns: 1fr;
    padding: 32px;
  }
  
  .modal-body-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .admin-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none; /* Mobilon elrejtjük az egyszerűség kedvéért */
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .modal-card {
    padding: 24px;
  }
}

/* Blog Card Hover Effects */
.blog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}
.blog-card:hover .blog-img {
  transform: scale(1.08);
}

/* Category Accordion Styles */
.category-accordion {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  margin-bottom: 24px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.category-accordion:hover {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}
.category-header {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  background: rgba(255, 255, 255, 0.01);
  transition: all 0.3s ease;
}
.category-header:hover {
  background: rgba(255, 255, 255, 0.04);
}
.category-title-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}
.category-icon {
  font-size: 1.3rem;
  color: var(--primary);
  background: rgba(139, 92, 246, 0.1);
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.1);
}
.category-title-wrapper h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin: 0;
  font-family: 'Outfit', sans-serif;
}
.category-count {
  font-size: 0.8rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
}
.toggle-arrow {
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}
.category-accordion.active .toggle-arrow {
  transform: rotate(180deg);
  color: var(--primary);
}
.category-content-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.category-accordion.active .category-content-wrapper {
  max-height: 3500px;
}
.category-grid-inner {
  padding: 24px;
  border-top: 1px solid var(--border-color);
  background: rgba(0, 0, 0, 0.15);
}

/* Description Read More Styles */
.card-desc-container {
  position: relative;
  margin-bottom: 16px;
}
.card-desc-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
  transition: all 0.3s ease;
}
.card-desc-text.collapsed {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.read-more-btn {
  background: transparent;
  border: none;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 0 0;
  font-family: 'Outfit', sans-serif;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease;
}
.read-more-btn:hover {
  color: var(--primary-light);
  text-decoration: underline;
}
