/* === BASE === */
body.contact-page {
  background-color: #0f0d0d;
  color: #fff;
  font-family: 'Georgia', serif;
  overflow-x: hidden;
  padding-top: 120px; /* necesario para no tapar el contenido */
}

/* === HEADER WRAPPER === */
.header-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-inner nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* === HEADER === */
.contact-page header {
  background: #0f0d0d;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  width: 100%;
  box-sizing: border-box; /* asegura que el padding no haga overflow */
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

.contact-page .logo {
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}

nav a {
  color: #f2e6da;
  margin-left: 20px;
  text-decoration: none;
}

nav a.active,
nav a:hover {
  color: #caa880;
  font-weight: bold;
}

/* === CONTAINER === */
.contact-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

/* === TITLE === */
.contact-title {
  font-size: 42px;
  margin-bottom: 10px;
  color: #caa880;
}

.contact-sub {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 40px;
}

.contact-photo {
  margin: 30px auto;
  text-align: center;
}

.contact-photo img {
  max-width: 240px;
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.contact-photo img:hover {
  transform: scale(1.03);
}

/* === INFO === */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

/* individual items */
.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
}

.info-item img.icon {
  height: 20px;
  width: auto;
  filter: brightness(0) invert(1); /* blanco */
  opacity: 0.9;
}

.info-item a {
  color: #caa880;
  text-decoration: none;
  transition: 0.2s ease;
}

.info-item a:hover {
  color: #fff;
  text-decoration: underline;
}