/* Anı Defteri - Basit ve modern tasarım */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #ffe7f1, #f3f4ff 40%, #ffffff 100%);
  color: #1f2933;
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.card {
  width: 100%;
  max-width: 640px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
  border: 1px solid rgba(148, 163, 184, 0.3);
  padding: 28px 24px 24px;
  backdrop-filter: blur(12px);
}

.card-header {
  text-align: center;
  margin-bottom: 18px;
}

.title {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #9d174d;
  margin-bottom: 4px;
}

.subtitle {
  font-size: 15px;
  color: #4b5563;
}

.divider {
  margin: 18px auto 20px;
  width: 72px;
  height: 2px;
  background: linear-gradient(to right, #ec4899, #f97316);
  border-radius: 999px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field-full {
  grid-column: 1 / -1;
}

label {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
}

label span.required {
  color: #dc2626;
  margin-left: 2px;
}

input[type="text"],
textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  padding: 9px 11px;
  font-size: 14px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  background-color: #f9fafb;
}

input[type="file"] {
  font-size: 13px;
}

input[type="text"]:focus,
textarea:focus {
  outline: none;
  border-color: #ec4899;
  box-shadow: 0 0 0 2px rgba(236, 72, 153, 0.12);
  background-color: #ffffff;
}

textarea {
  resize: vertical;
  min-height: 110px;
}

.help-text {
  font-size: 12px;
  color: #6b7280;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: #4b5563;
}

.checkbox-row input[type="checkbox"] {
  margin-top: 2px;
}

.actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 9px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #ec4899, #f97316);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(236, 72, 153, 0.35);
  transition: transform 0.1s ease, box-shadow 0.1s ease, filter 0.1s ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 12px 24px rgba(236, 72, 153, 0.4);
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(236, 72, 153, 0.35);
}

.status {
  margin-top: 12px;
  font-size: 13px;
  border-radius: 12px;
  padding: 9px 11px;
}

.status-success {
  background: #ecfdf3;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.status-error {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.status ul {
  margin: 4px 0 0;
  padding-left: 18px;
}

.footer-note {
  margin-top: 18px;
  font-size: 11px;
  text-align: center;
  color: #9ca3af;
}

.btn-google-maps {
  display: inline-block;
  background: #4285f4;
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: background 0.2s;
}

.btn-google-maps:hover {
  background: #357ae8;
}


