/* ====================================================
   ŠPICAMENU — Contact Page
   ==================================================== */

body {
  background: var(--bg-light);
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: 100vh;
}

.contact-container {
  margin: calc(var(--navbar-h) + 1.5rem) auto 2rem;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: min(980px, 96vw);
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.contact-container h1 {
  padding: 2rem 1rem 1rem;
  color: var(--brand-dark);
  position: relative;
  text-align: center;
}
.contact-container h1::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: var(--brand-primary);
  border-radius: 2px;
  margin: .6rem auto 0;
}

.con-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 0 2rem;
}

/* -- Contact info column ---------------------------- */
.con-items {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
  width: 50%;
  padding: 1rem 2rem;
}

.con-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.con-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  width: 100%;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  background: var(--bg-light);
  transition: box-shadow var(--ease);
}
.con-item:hover { box-shadow: var(--shadow-sm); }

.icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  margin-top: 2px;
}

.black-bg-icon {
  background-color: #1a1a1a;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  padding: 5px;
  flex-shrink: 0;
}

.con-item p {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.con-item p b {
  color: var(--text-primary);
  font-weight: 700;
  display: block;
  margin-bottom: .15rem;
}

/* -- Map column ------------------------------------- */
.con-map {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .75rem;
  width: 50%;
  padding: 1rem 2rem 1rem 1rem;
}

.con-map p {
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-primary);
  align-self: flex-start;
}

iframe {
  width: 100%;
  height: 55vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: none;
}

/* ====================================================
   RESPONSIVE
   ==================================================== */
@media (max-width: 992px) {
  body { height: auto; }
  .contact-container { height: auto; }
  .con-content {
    flex-direction: column;
    align-items: center;
  }
  .con-items,
  .con-map {
    width: 100%;
    padding: 1rem 1.5rem;
  }
  iframe { width: 100%; height: 45vh; }
}
@media (max-width: 600px) {
  .con-item { padding: .75rem 1rem; }
  iframe    { height: 38vh; }
}