/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/
/* Apetitlih – brand varijable (slobodno finije podesi) */
:root {
  --ap-primary: #c95a2a;       /* topla "foodie" narančasto-crvena */
  --ap-primary-soft: #ffe6d7;  /* mekana pozadinska nijansa */
  --ap-bg-soft: #fffaf4;       /* lagano krem pozadinska */
  --ap-text: #2b2521;
  --ap-muted: #7c756f;
  --ap-border: #e8ded5;
}

/* Wrapper */
.ap-booking-wrap {
  max-width: 600px;
  margin: 40px auto;
  padding: 20px;
}

/* Kartica */
.ap-booking-card {
  background: linear-gradient(145deg, #ffffff, var(--ap-bg-soft));
  border-radius: 24px;
  padding: 28px 26px 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--ap-border);
}

/* Header */
.ap-booking-header {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
}

.ap-logo-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--ap-primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ap-logo-icon {
  font-size: 26px;
}

.ap-header-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ap-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 11px;
  font-weight: 600;
  color: var(--ap-muted);
}

.ap-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  color: var(--ap-text) !important;
}

.ap-subtitle {
  margin: 0;
  font-size: 14px;
  color: var(--ap-muted) !important;
}

/* Label */
.ap-label {
  font-size: 13px;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
  margin-top: 14px;
  color: var(--ap-text) !important;
}

/* Inputi & textarea */
.ap-input {
  width: 100%;
  padding: 13px 14px;
  border-radius: 14px;
  border: 1px solid var(--ap-border);
  background: #fdfbf9;
  font-size: 15px;
  font-family: inherit;
  color: var(--ap-text);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  box-sizing: border-box;
}

.ap-input::placeholder {
  color: #b3a89f;
}

.ap-input:focus {
  outline: none;
  border-color: var(--ap-primary);
  background: #ffffff;
  box-shadow: 0 0 0 2px rgba(201, 90, 42, 0.16);
}

/* Textarea */
.ap-textarea {
  min-height: 110px;
  resize: vertical;
}

/* Gumb */
.ap-button {
  margin-top: 22px;
  width: 100%;
  padding: 14px 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  background: var(--ap-primary);
  color: #fff;
  box-shadow: 0 12px 26px rgba(201, 90, 42, 0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.ap-button:hover {
  background: #b34e24;
  box-shadow: 0 10px 22px rgba(201, 90, 42, 0.4);
  transform: translateY(-1px);
}

.ap-button:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(201, 90, 42, 0.35);
}

/* Footnote */
.ap-footnote {
  margin-top: 10px;
  font-size: 11px;
  line-height: 1.5;
  color: var(--ap-muted);
}

/* Responsive */
@media (max-width: 600px) {
  .ap-booking-card {
    border-radius: 18px;
    padding: 22px 18px 18px;
  }

  .ap-title {
    font-size: 22px;
  }
}
