/* ===== contact.css ===== */

/* Contact page main section */
.contact-section {
  padding: 4rem 0;
}

.contact-grid {
  display: grid;
  gap: 2.5rem 3rem;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
}

/* narrow screens: 1-column */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-item {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 1.75rem 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid #e5e7eb;
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-item-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.contact-icon {
  font-size: 1.4rem;
}

.contact-title {
  font-size: 1.1rem;
  font-weight: 600;
}

.contact-item p {
  margin: 0.15rem 0;
}

.contact-item a {
  color: #FFC109;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* ===== Contact Page Common Box Style ===== */
.contact-box {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s ease;
}

.contact-box:hover {
  box-shadow: 0 4px 18px rgba(0,0,0,0.1);
}

.info-table {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px; /* label과 value 간격 */
  row-gap: 4px;
}

.label {
  font-weight: bold;
}

.value {
  text-align: left;
}

/* Location Section */
.location {
  padding: 50px 0;
  background: #f9f9f9;
  border-top: 1px solid #eee;
}

.location h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #333;
  text-align: center;
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.location-info {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
}

.location-info h3 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
}

.location-info p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.location-info p:last-child {
  margin-bottom: 0;
}

.location-info strong {
  color: #333;
  font-weight: 600;
}

.location-map {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.location-map iframe {
  width: 100%;
  height: 300px;
  border: 0;
}

/* Responsive adjustments for location */
@media (max-width: 768px) {
  .location-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .location-info {
    padding: 20px;
  }
}
