/* Atelier No.8 - Kurumsal Renk Paleti */
:root {
  --color-soft-green: #d2e2d6;
  --color-deep-gray: #333333;
  --color-cream: #f7f4f0;
  --color-terracotta: #e27d60;
  --color-terracotta-hover: #a5593c;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-deep-gray);
  background-color: var(--color-cream);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header & Navigation */
.header {
  background: var(--color-soft-green);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

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

.logo {
  text-decoration: none;
  color: var(--color-deep-gray);
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.logo:hover {
  color: var(--color-terracotta);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--color-deep-gray);
  font-size: 0.85rem;
  font-weight: 500;
  font-family: var(--font-heading);
  letter-spacing: 0.1em;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-terracotta);
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-trigger {
  cursor: pointer;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  list-style: none;
  min-width: 220px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.25s ease;
  margin-top: 0.5rem;
  z-index: 50;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 0.75rem 1.25rem;
  color: var(--color-deep-gray);
  font-size: 0.9rem;
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
}

.dropdown-menu li a:hover {
  background: var(--color-soft-green);
  color: var(--color-terracotta);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--color-deep-gray);
}

/* Hero - Ana Sayfa */
.hero {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 140px);
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 4rem;
  background: var(--color-cream);
}

.calendar-cell--disabled {
    opacity: 0.4;
    pointer-events: none;
}

.logo-hero h1 {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--color-deep-gray);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.slogan {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--color-terracotta);
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1rem;
  color: var(--color-deep-gray);
  max-width: 420px;
  line-height: 1.8;
}

.hero-image {
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Placeholder when no image */
.hero-image img[alt="Atölye binası"],
.hero-image img[src*="placeholder"] {
  background: linear-gradient(135deg, var(--color-soft-green) 0%, var(--color-terracotta) 100%);
  min-height: 400px;
}

/* Workshops Page */
.workshops-page {
  flex: 1;
  padding: 0 0 3rem;
  max-width: 1200px;
  margin: 0 auto;
  overflow: visible;
}

.workshops-cover {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  margin-bottom: 3rem;
}

.workshops-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.workshops-cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem 2rem;
}

.workshops-cover-overlay h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: white;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  margin-bottom: 0.25rem;
}

.workshops-cover-overlay p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.workshop-section {
  padding: 0 2rem;
  margin-bottom: 4rem;
  overflow: visible;
}


.workshop-section h2 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: var(--color-deep-gray);
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-soft-green);
}

.workshop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  overflow: visible;
}

.workshop-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(210, 226, 214, 0.6);
  overflow: visible;
  transition: transform 0.2s, box-shadow 0.2s;
}

.workshop-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.workshop-card-image {
  width: 100%;
  height: 160px;
  overflow: hidden;
  background: var(--color-soft-green);
}

.workshop-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.workshop-card-body {
  padding: 1.75rem;
}

.workshop-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-deep-gray);
  margin-bottom: 1rem;
}

.workshop-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  overflow: visible;
  position: relative;
}

.info-tooltip-wrapper {
  position: relative;
}

.tooltip-content {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border: 2px solid var(--color-terracotta);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  width: 300px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  margin-bottom: 0.75rem;
  max-height: 400px;
  overflow-y: auto;
}

.tooltip-content::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: var(--color-terracotta);
}

.tooltip-workshop-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-deep-gray);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.tooltip-description {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.tooltip-price {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-terracotta);
  font-weight: 600;
  margin-bottom: 1rem;
}

.info-tooltip-wrapper:hover .tooltip-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-5px);
}

/* Buttons */
.btn {
  padding: 0.6rem 1.25rem;
  border: none;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-info {
  background: var(--color-soft-green);
  color: var(--color-deep-gray);
}

.btn-info:hover {
  background: var(--color-terracotta);
  color: white;
}

.btn-reservation {
  background: var(--color-terracotta);
  color: white;
}

.btn-reservation:hover {
  background: var(--color-terracotta-hover);
}

.btn-primary {
  background: var(--color-terracotta);
  color: white;
}

.btn-primary:hover {
  background: var(--color-terracotta-hover);
}

/* Smaller modifier for primary buttons (tooltip use) - placed after large primary rule so it overrides */
.btn-primary.btn-smaller {
  padding: 0.28rem 0.6rem;
  font-size: 0.72rem;
  border-radius: 6px;
  line-height: 1;
}

.btn-small {
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
}

/* Slightly smaller variant used for compact tooltip buttons */
.btn-smaller {
  padding: 0.28rem 0.6rem;
  font-size: 0.72rem;
  border-radius: 6px;
}

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

.modal.active {
  display: flex;
}

.modal-content {
  background: white;
  border-radius: 16px;
  padding: 1rem;
  max-width: 560px;
  width: 100%;
  max-height: 98vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--color-terracotta);
  line-height: 1;
}

.modal-close:hover {
  color: var(--color-deep-gray);
}

.modal-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--color-deep-gray);
}

#reservation-modal-info {
  font-size: 0.85rem;
  margin-bottom: 0.75rem !important;
  color: #555;
}

/* Custom Popup Styles */
.custom-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  min-width: 300px;
  max-width: 400px;
  text-align: center;
}

.custom-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.custom-popup-content {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: var(--color-deep-gray);
  white-space: pre-line;
  line-height: 1.4;
}

.custom-popup-close {
  background: var(--color-terracotta);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

.custom-popup-close:hover {
  background: var(--color-terracotta-hover);
}

/* Rezervasyon Takvimi */
.logo-hero {
  margin-bottom: 1.5rem;
  text-align: center;
}

.nav-logo {
  height: 40px;
  width: auto;
  display: block;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1.1;
  color: var(--color-deep-gray);
  margin: 0 0 0.75rem 0;
}

.main-logo {
  max-height: 120px;
  max-width: 300px;
  height: auto;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.main-logo:hover {
  transform: scale(1.05);
}

.calendar-section {
  margin-bottom: 1.5rem;
}

.calendar-header {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-deep-gray);
  margin-bottom: 1rem;
}

.calendar-container {
  margin-bottom: 0.5rem;
}

.calendar-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.calendar-table th {
  padding: 0.5rem;
  text-align: center;
  color: var(--color-deep-gray);
  font-weight: 500;
  border-bottom: 1px solid var(--color-soft-green);
}

.calendar-table td {
  padding: 0.4rem;
  text-align: center;
  vertical-align: top;
  min-height: 50px;
}

.calendar-cell {
  min-width: 36px;
  height: 52px;
  border: 1px solid #eee;
  border-radius: 6px;
  cursor: default;
}

.calendar-cell--empty {
  background: #fafafa;
  border-color: transparent;
}

.calendar-cell--past {
  color: #bbb;
  background: #f5f5f5;
}

.calendar-cell--unavailable {
  color: #999;
  background: #fafafa;
}

.calendar-cell--available {
  cursor: pointer;
  background: white;
  color: var(--color-deep-gray);
  transition: all 0.2s;
}

.calendar-cell--available:hover {
  background: var(--color-soft-green);
  border-color: var(--color-terracotta);
}

.calendar-cell--available.calendar-cell--selected {
  background: var(--color-soft-green);
  border-color: var(--color-deep-gray);
  box-shadow: inset 0 0 0 2px var(--color-deep-gray);
}

.calendar-day {
  display: block;
  font-weight: 600;
  margin-bottom: 2px;
}

.calendar-slot {
  display: block;
  font-size: 0.7rem;
  color: var(--color-terracotta);
}

.calendar-capacity {
  display: block;
  font-size: 0.65rem;
  color: var(--color-terracotta);
}

.calendar-full {
  display: block;
  font-size: 0.65rem;
  color: var(--color-terracotta);
}

.calendar-hint {
  font-size: 0.8rem;
  color: var(--color-terracotta);
  margin-top: 0.5rem;
}

.reservation-form .form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.reservation-form input {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: var(--font-body);
}

.btn-submit {
  width: 100%;
  padding: 0.9rem;
  background: var(--color-terracotta);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
}

.btn-submit:hover {
  background: var(--color-terracotta-hover);
}

/* Events Page */
.events-page {
  flex: 1;
  padding: 3rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.events-hero {
  text-align: center;
  margin-bottom: 3rem;
}

.events-hero h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--color-deep-gray);
  margin-bottom: 0.5rem;
}

.events-hero p {
  color: var(--color-deep-gray);
  font-size: 1.1rem;
}

.events-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

.event-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.5rem;
  align-items: center;
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(210, 226, 214, 0.6);
}

.event-image {
  width: 120px;
  height: 120px;
  background: var(--color-soft-green);
  overflow: hidden;
  border-radius: 10px;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.event-placeholder {
  font-size: 2.5rem;
}

.event-info h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--color-deep-gray);
  margin-bottom: 0.5rem;
}

.event-info p {
  font-size: 0.95rem;
  color: var(--color-deep-gray);
  line-height: 1.6;
}

.events-cta {
  text-align: center;
  padding: 2rem;
  background: var(--color-soft-green);
  border-radius: 12px;
}

.events-cta p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* Contact Page */
.contact-page {
  flex: 1;
  padding: 2rem 2rem 3rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  display: block;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form-section {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(210, 226, 214, 0.6);
  grid-column: 2;
  grid-row: 1 / span 2;
}

.contact-hero {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-hero h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--color-deep-gray);
  margin-bottom: 0.5rem;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-map-section {
  grid-column: 1;
  grid-row: 1;
}

.contact-form--horizontal .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}

.contact-form--horizontal textarea {
  min-height: 140px;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: none;
}

.social-buttons {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
}

.instagram-btn {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #f77737);
  color: white;
}

.instagram-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(131, 58, 180, 0.3);
}

.whatsapp-btn {
  background: #25d366;
  color: white;
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-secondary {
  background: var(--color-soft-green);
  color: var(--color-deep-gray);
  border: none;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 0.5rem;
}

.btn-secondary:hover {
  background: var(--color-terracotta);
  color: white;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  grid-column: 1;
  grid-row: 2;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  font-size: 1.5rem;
}

.contact-item h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-deep-gray);
  margin-bottom: 0.25rem;
}

.contact-item p {
  font-size: 0.95rem;
  color: var(--color-deep-gray);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-deep-gray);
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

.contact-form input.input-error,
.contact-form textarea.input-error {
  border-color: var(--color-terracotta);
}

.contact-form .field-error {
  display: block;
  font-size: 0.8rem;
  color: var(--color-terracotta);
  margin-top: 0.35rem;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .form-message {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
}

.contact-form .form-message--success {
  background: var(--color-soft-green);
  color: var(--color-deep-gray);
}

.contact-form .form-message--error {
  background: var(--color-soft-green);
  color: var(--color-deep-gray);
}

.contact-form button[type="submit"]:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Footer */
.footer {
  background: var(--color-soft-green);
  color: var(--color-deep-gray);
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
}

/* Workshop Schedule Page */
.schedule-page {
  flex: 1;
  padding: 2rem 0;
}

.schedule-hero {
  text-align: center;
  margin-bottom: 3rem;
  padding: 0 2rem;
}

.schedule-hero h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--color-deep-gray);
  margin-bottom: 0.5rem;
}

.schedule-hero p {
  font-size: 1.1rem;
  color: var(--color-deep-gray);
  max-width: 600px;
  margin: 0 auto;
}

.schedule-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.schedule-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}

.month-selector {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.month-selector h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-deep-gray);
  margin: 0;
}

.schedule-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.calendar-section {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.calendar-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.calendar-table th {
  padding: 0.75rem;
  text-align: center;
  color: var(--color-deep-gray);
  font-weight: 600;
  border-bottom: 2px solid var(--color-soft-green);
  font-family: var(--font-body);
}

.calendar-table td {
  padding: 0.5rem;
  text-align: center;
  vertical-align: top;
  min-height: 60px;
}

.calendar-cell {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  cursor: default;
  transition: all 0.2s;
}

.calendar-cell--empty {
  background: #fafafa;
  border-color: transparent;
}

.calendar-cell--has-workshops {
  background: white;
  border-color: var(--color-soft-green);
  cursor: pointer;
  position: relative;
}

.calendar-cell--has-workshops:hover {
  background: var(--color-soft-green);
  border-color: var(--color-terracotta);
  transform: translateY(-2px);
}

.calendar-cell--selected {
  background: var(--color-terracotta);
  border-color: var(--color-deep-gray);
  color: white;
}

.calendar-day {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.calendar-indicators {
  display: flex;
  gap: 2px;
  justify-content: center;
  flex-wrap: wrap;
}

.workshop-indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.2s ease;
}

.workshop-indicator--anne-cocuk {
  background: #2d5016;
  border-color: rgba(45, 80, 22, 0.5);
}

.workshop-indicator--yetişkin {
  background: #803312;
  border-color: rgba(128, 51, 18, 0.5);
}

.calendar-cell--has-workshops:hover .workshop-indicator--anne-cocuk {
  background: #4a7d26;
  border-color: rgba(74, 125, 38, 0.8);
  transform: scale(1.2);
}

.calendar-cell--has-workshops:hover .workshop-indicator--yetişkin {
  background: #b84a1f;
  border-color: rgba(184, 74, 31, 0.8);
  transform: scale(1.2);
}

.workshops-section {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.workshops-section h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-deep-gray);
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--color-soft-green);
  padding-bottom: 0.5rem;
}

.daily-workshops-list {
  min-height: 300px;
}

.no-workshops {
  text-align: center;
  padding: 2rem;
  color: #666;
  font-style: italic;
}

.workshop-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.workshop-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  transition: all 0.2s;
}

.workshop-item:hover {
  border-color: var(--color-soft-green);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.workshop-time {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-terracotta);
  min-width: 60px;
}

.workshop-info {
  flex: 1;
}

.workshop-name {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-deep-gray);
  margin: 0 0 0.5rem 0;
}

.workshop-details {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
}

.workshop-category {
  background: var(--color-soft-green);
  color: var(--color-deep-gray);
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-weight: 500;
}

.workshop-capacity {
  color: #666;
}

.workshop-action {
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .schedule-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .schedule-hero h1 {
    font-size: 2rem;
  }
  
  .calendar-table {
    font-size: 0.8rem;
  }
  
  .calendar-cell {
    min-height: 50px;
  }
  
  .workshop-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  
  .workshop-time {
    min-width: auto;
  }
}
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 2rem;
  }

  .hero-image {
    min-height: 300px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-form-section {
    grid-column: 1;
    grid-row: auto;
  }

  .contact-map-section {
    grid-column: 1;
    grid-row: auto;
  }

  .contact-info {
    grid-column: 1;
    grid-row: auto;
  }

  .event-card {
    grid-template-columns: 1fr;
  }

  .workshop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: white;
    padding: 1rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 1rem;
    margin-top: 0.5rem;
    display: none;
  }

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

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

  /* Schedule page mobile fixes */
  .schedule-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .calendar-table {
    font-size: 0.75rem;
    width: 100%;
    overflow-x: auto;
    display: block;
  }

  .calendar-table th,
  .calendar-table td {
    padding: 0.3rem;
    min-width: 35px;
  }

  .calendar-cell {
    min-height: 40px;
    font-size: 0.7rem;
  }

  .daily-workshops-list {
    padding: 1rem;
  }

  .month-selector {
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }

  .workshop-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .workshop-time {
    font-size: 0.8rem;
    min-width: auto;
  }

  .workshop-name {
    font-size: 0.8rem;
  }

  .workshop-details {
    font-size: 0.65rem;
  }

  /* Events page mobile fixes */
  .events-hero {
    padding: 2rem 1rem;
    text-align: center;
  }

  .events-hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

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

  .events-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 1rem;
  }

  .event-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .event-image {
    width: 100%;
    max-width: 200px;
    height: 200px;
    margin: 0 auto 1rem auto;
  }

  /* Workshops page tooltip mobile fix */
  .info-tooltip-wrapper {
    position: relative;
  }

  .tooltip-content {
    position: fixed;
    bottom: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90vw;
    max-width: 320px;
    max-height: 70vh;
    overflow-y: auto;
    z-index: 1000;
    margin: 0;
  }

  .tooltip-content::after {
    display: none;
  }

  .workshop-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 1rem;
  }

  .workshop-section {
    padding: 0 0.5rem;
  }

  .hero-content {
    padding: 1.5rem 1rem;
  }

  .hero-image {
    min-height: 250px;
  }

  .workshops-cover {
    height: 200px;
  }

  .workshops-cover-overlay {
    padding: 1.5rem 1rem;
  }

  .workshops-cover-overlay h1 {
    font-size: 1.8rem;
  }

  .workshops-cover-overlay p {
    font-size: 0.9rem;
  }

  .workshop-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

  .workshop-card {
    margin-bottom: 1rem;
  }

  .workshop-card-body {
    padding: 1rem;
  }

  .workshop-card h3 {
    font-size: 1.2rem;
  }

  .workshop-card-image {
    height: 140px;
  }

  .reservation-form .form-row {
    flex-direction: column;
  }

  .corporate-logos {
    flex-direction: column;
    gap: 1rem;
  }

  .corporate-logo {
    max-height: 50px;
    max-width: 100px;
  }
}

/* Workshop Detail Page Styles */
.workshop-detail-page {
  flex: 1;
  padding: 2rem 0;
}

.workshop-detail-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.workshop-detail-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  align-items: start;
}

.workshop-detail-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.workshop-detail-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.workshop-detail-info h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--color-deep-gray);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.workshop-description-combined {
  margin-top: 1.5rem;
}

.workshop-description-combined h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-deep-gray);
  margin-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-soft-green);
  padding-bottom: 0.5rem;
}

.workshop-description-combined #workshop-description p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 0.75rem;
}

.workshop-description-combined #workshop-detailed-info {
  margin-top: 0.75rem;
  font-size: 0.9rem;
}

.workshop-description-combined .detail-item {
  margin-bottom: 0.75rem;
}

.workshop-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.category-badge {
  background: var(--color-terracotta);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
}

.price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-deep-gray);
  font-weight: 600;
}

.workshop-detail-content {
  display: grid;
  gap: 3rem;
}

.workshop-detail-content section {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.workshop-detail-content h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--color-deep-gray);
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--color-soft-green);
  padding-bottom: 0.5rem;
}

.workshop-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
}

.works.hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #333;
}

.corporate-logos {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  align-items: center;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.corporate-logo {
  max-height: 60px;
  max-width: 120px;
  height: auto;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.3s, transform 0.3s;
}

.corporate-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

.detail-item {
  margin-bottom: 1.5rem;
}

.detail-item strong {
  color: var(--color-deep-gray);
  font-size: 1rem;
  display: block;
  margin-bottom: 0.5rem;
}

.detail-item p {
  line-height: 1.6;
  color: #555;
}

.capacity-section {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-soft-green);
}

.capacity-section h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-deep-gray);
  margin-bottom: 1rem;
}

.capacity-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.capacity-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: var(--color-soft-green);
  border-radius: 8px;
}

.capacity-label {
  font-weight: 600;
  color: var(--color-deep-gray);
}

.reservation-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.reservation-form-detail {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.5rem;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--color-deep-gray);
  font-size: 0.85rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.5rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 0.85rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-terracotta);
}

.selected-date-info {
  background: var(--color-soft-green);
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.total-price-section {
  background: linear-gradient(135deg, var(--color-soft-green) 0%, var(--color-cream) 100%);
  padding: 0.75rem;
  border-radius: 12px;
  margin-top: 0.5rem;
  border: 2px solid var(--color-terracotta);
}

.price-breakdown {
  margin-bottom: 0.5rem;
}

.price-breakdown h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-deep-gray);
  margin: 0 0 0.5rem 0;
}

.price-details {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-deep-gray);
}

.total-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(128, 51, 18, 0.2);
}

.total-label {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-deep-gray);
  font-weight: 600;
}

.total-amount {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-terracotta);
  font-weight: 700;
}

.btn-primary {
  background: var(--color-terracotta);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

/* Specific style for reservation modal submit button */
#reservation-modal-form .btn-primary {
  padding: 0.7rem 1.4rem;
  font-size: 0.9rem;
}

.btn-primary:hover {
  background: var(--color-terracotta-hover);
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.2rem;
}

.error-message {
  text-align: center;
  padding: 4rem 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(128, 51, 18, 0.08);
}

.error-message h2 {
  color: var(--color-deep-gray);
  margin-bottom: 1rem;
}

.error-message a {
  color: var(--color-terracotta);
  text-decoration: none;
  font-weight: 600;
}

.error-message a:hover {
  text-decoration: underline;
}

@media (max-width: 968px) {
  .workshop-detail-header {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .reservation-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .workshop-detail-image img {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .workshop-detail-container {
    padding: 0 1rem;
  }
  
  .workshop-detail-info h1 {
    font-size: 2rem;
  }
  
  .workshop-detail-content section {
    padding: 1.5rem;
  }
  
  .capacity-info {
    grid-template-columns: 1fr;
  }
  
  .workshop-meta {
    flex-direction: column;
    align-items: start;
    gap: 0.5rem;
  }
}
