/* Karpat Otomotiv - Arvento Servisi */
/* Colors: orange, dark gray */

:root {
  --orange: #e67e22;
  --orange-hover: #d35400;
  --orange-light: #f39c12;
  --dark-gray: #2c2c2c;
  --dark-gray-bg: #1a1a1a;
  --gray-text: #7f8c8d;
  --white: #f5f5f5;
}

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

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--dark-gray-bg);
  color: var(--white);
  min-height: 100vh;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page {
  max-width: 560px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  width: 100%;
}

/* Header */
.header {
  text-align: center;
  padding: 2rem 0 2.5rem;
  border-bottom: 2px solid var(--orange);
}

.title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.subtitle {
  font-size: 1.1rem;
  color: var(--orange);
  margin-top: 0.35rem;
  font-weight: 500;
}

/* Content */
.content {
  padding: 2rem 0;
}

.section {
  margin-bottom: 2rem;
}

.section:last-of-type {
  margin-bottom: 0;
}

.section-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-text);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

/* Contact */
.phone a {
  color: var(--orange);
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 500;
}

.phone a:hover {
  color: var(--orange-light);
  text-decoration: underline;
}

.separator {
  color: var(--gray-text);
  margin: 0 0.5rem;
}

/* Address */
.address-text {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.6;
}

/* Map buttons */
.map-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-block;
  padding: 0.65rem 1.25rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s;
}

.btn-apple {
  background: var(--orange);
  color: var(--white);
  border: 2px solid var(--orange);
}

.btn-apple:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
}

.btn-google {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}

.btn-google:hover {
  background: var(--orange);
  color: var(--white);
}

/* Footer */
.footer {
  text-align: center;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--dark-gray);
}

.footer p {
  font-size: 0.85rem;
  color: var(--gray-text);
}
