/*
Theme Name: Psikoloji Danışmanlık
Theme URI: https://example.com
Author: Your Name
Author URI: https://example.com
Description: Modern ve huzur verici psikoloji danışmanlık teması. Randevu sistemi ve profesyonel tasarım içerir.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: psikoloji
Tags: health, medical, psychology, appointment, professional
*/

:root {
  --color-primary: rgb(78, 121, 107);
  --color-background: rgb(252, 249, 245);
  --color-accent: rgb(230, 215, 215);
  --color-foreground: rgb(58, 68, 64);
  --color-card: rgb(255, 255, 255);
  --color-secondary: rgb(233, 238, 236);
  --color-muted: rgb(243, 245, 244);
  --color-border: rgb(228, 233, 231);
  --radius: 0.75rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--color-background);
  color: var(--color-foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-foreground);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: rgb(58, 91, 81);
}

.container {
  max-width: 12000px;
  margin: 0 auto;
  padding: 0 1rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--color-primary);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn:hover {
  background-color: rgb(58, 91, 81);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(78, 121, 107, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
  background-color: var(--color-primary);
  color: white;
}

.card {
  background-color: var(--color-card);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.section {
  padding: 4rem 0;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--color-foreground);
}

.section-subtitle {
  text-align: center;
  color: var(--color-primary);
  font-size: 1.125rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .section {
    padding: 3rem 0;
  }
}

/* Form Oluşturucu Entegrasyon Stilleri */
#fbuilder .ui-datepicker-inline {
  max-width: none !important;
}

.ahbfield_service {
  display: none;
}

/* Form Oluşturucu Gönder Düğmesi */
.pbSubmit {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--color-primary);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.pbSubmit:hover {
  background-color: #4caf50;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

/* Form Oluşturucu Metin Renkleri */
#fbuilder,
#fbuilder label,
#fbuilder span {
  color: var(--color-primary);
}

#fbuilder input[type="text"],
#fbuilder textarea,
#fbuilder select {
  color: var(--color-primary);
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0.75rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

#fbuilder input[type="text"]:focus,
#fbuilder textarea:focus,
#fbuilder select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(78, 121, 107, 0.1);
}

/* Tarih Seçici Başlık Stili */
#fbuilder .ui-datepicker-header {
  background: #6cc72b;
  color: #444;
  text-shadow: none;
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 0.75rem;
}

/* Ek Form Oluşturucu Geliştirmeleri */
#fbuilder .ui-datepicker {
  background-color: var(--color-card);
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 1rem;
}

#fbuilder .ui-datepicker td {
  padding: 0.25rem;
}

#fbuilder .ui-datepicker td a {
  text-align: center;
  padding: 0.5rem;
  border-radius: 0.375rem;
  transition: all 0.2s ease;
}

#fbuilder .ui-datepicker td a:hover {
  background-color: var(--color-primary);
  color: white;
}

#fbuilder .ui-datepicker td .ui-state-active {
  background-color: var(--color-primary);
  color: white;
}

/* Form Oluşturucu Konteyner */
#fbuilder {
  background-color: var(--color-card);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  max-width: 700px;
  margin: 0 auto;
}

#fbuilder .fields {
  display: flex;
  flex-direction: column;
  align-content
  gap: 0.15rem;
}


/* Responsive adjustments for form builder */
@media (max-width: 768px) {
  #fbuilder {
    padding: 1.5rem;
  }

  #fbuilder .ui-datepicker {
    font-size: 0.875rem;
  }
}