:root {
  --eco-lime: #C4D600;
  --clean-white: #FFFFFF;
  --slate-gray: #888B8D;
  --charcoal: #333333;
  --silver-ash: #F4F5F7;
  --danger: #e74c3c;
}

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

body {
  font-family: 'Inter', 'Roboto', sans-serif;
  color: var(--charcoal);
  background-color: var(--clean-white);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Outfit', sans-serif;
  color: var(--charcoal);
  font-weight: 600;
}

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

/* Header & Nav */
header {
  padding: 24px 0;
  border-bottom: 1px solid var(--silver-ash);
  background-color: var(--clean-white);
}

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

.logo {
  font-size: 24px;
  font-weight: bold;
  color: var(--eco-lime);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-text {
  color: var(--slate-gray);
  font-weight: 400;
}

/* Hero Carousel Section */
.hero-carousel-section {
  position: relative;
  margin: 32px 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-carousel {
  width: 100%;
  height: 500px;
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  padding: 48px;
  border-radius: 16px;
  text-align: center;
  max-width: 700px;
  margin: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.hero-overlay h1 {
  font-size: 42px;
  margin-bottom: 16px;
  color: var(--charcoal);
}

.hero-overlay p {
  font-size: 18px;
  color: var(--slate-gray);
}

.carousel-indicators {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.indicator.active {
  background: var(--eco-lime);
  transform: scale(1.3);
}

/* Calendar Section */
.calendar-section {
  padding: 48px 0 0 0;
}

.section-title {
  font-size: 32px;
  margin-bottom: 24px;
  text-align: center;
}

.calendar-wrapper {
  position: sticky;
  top: 0;
  background-color: var(--clean-white);
  z-index: 90;
  display: flex;
  align-items: center;
  margin-bottom: 32px;
  padding: 16px 0;
  border-bottom: 1px solid var(--silver-ash);
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.calendar-scroll {
  display: flex;
  overflow-x: auto;
  gap: 16px;
  padding: 16px;
  scroll-behavior: smooth;
  flex-grow: 1;
  /* Hide scrollbar */
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.calendar-scroll::-webkit-scrollbar {
  display: none;
}

.scroll-btn {
  background: var(--clean-white);
  border: 1px solid var(--silver-ash);
  color: var(--charcoal);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease;
  z-index: 10;
}

.scroll-btn:hover {
  background: var(--silver-ash);
}

.date-card {
  flex: 0 0 calc((100% / 7) - 16px); /* Roughly 7 days visible */
  min-width: 100px;
  background: var(--clean-white);
  border: 2px solid var(--silver-ash);
  border-radius: 12px;
  padding: 16px 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.date-card:hover {
  border-color: var(--eco-lime);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.date-card.active {
  background: var(--eco-lime);
  border-color: var(--eco-lime);
  color: var(--charcoal);
}

.date-card.active .date-services-list {
  display: none !important;
}

.date-card.holiday {
  border-color: var(--danger);
  position: relative;
}
.date-card.holiday::after {
  content: "Ünnepnap";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--danger);
  color: white;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: bold;
}

.date-day-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--slate-gray);
  margin-bottom: 4px;
}
.date-card.active .date-day-name {
  color: var(--charcoal);
}

.date-number {
  font-size: 32px;
  font-weight: bold;
}

/* Services Section */
.services-section {
  display: none; /* Hidden until date is selected */
  padding: 0 0 64px 0;
}

.services-section.active {
  display: block;
}

.service-card {
  background: var(--clean-white);
  border: 1px solid var(--silver-ash);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: border-color 0.2s;
}

.service-card:hover {
  border-color: var(--eco-lime);
}

.service-card-image {
  width: 100%;
  max-height: 200px;
  overflow: hidden;
  border-radius: 11px 11px 0 0;
  margin: -24px -24px 20px -24px;
  width: calc(100% + 48px);
  position: relative;
}

.service-card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card-image img {
  transform: scale(1.03);
}

.service-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.service-title {
  font-size: 20px;
  font-weight: 600;
}

.info-btn {
  background: none;
  border: 1px solid var(--slate-gray);
  color: var(--slate-gray);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s;
}

.info-btn:hover {
  background: var(--silver-ash);
  color: var(--charcoal);
  border-color: var(--charcoal);
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--silver-ash);
  padding: 8px 16px;
  border-radius: 24px;
}

.qty-btn {
  background: none;
  border: none;
  font-size: 20px;
  font-weight: bold;
  color: var(--charcoal);
  cursor: pointer;
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.qty-btn:hover {
  color: var(--eco-lime);
}

.qty-display {
  font-size: 18px;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}

/* Modal */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 100;
  justify-content: center;
  align-items: center;
}
.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: var(--clean-white);
  padding: 32px;
  border-radius: 16px;
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.close-modal {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--slate-gray);
}
.close-modal:hover {
  color: var(--charcoal);
}

.modal-title {
  font-size: 24px;
  margin-bottom: 16px;
}

.modal-desc {
  color: var(--slate-gray);
  margin-bottom: 24px;
}

.skills-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.skill-tag {
  background: var(--silver-ash);
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 14px;
  color: var(--charcoal);
}

/* Buttons */
.btn-primary {
  background: var(--eco-lime);
  color: var(--charcoal);
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-primary:hover {
  filter: brightness(0.95);
}

/* Footer */
footer {
  background: var(--silver-ash);
  padding: 48px 0;
  margin-top: 64px;
  text-align: center;
  color: var(--slate-gray);
}
