


#boja{
    color: white;
}


.two-column-wrapper {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: stretch;   /* makes both columns same height */
    margin-top: 20px;
    flex-wrap: wrap;        /* still responsive */
}

.left-column,
.right-column {
    flex: 1;
    min-width: 300px;
    margin: 0;              /* no spacing */
    padding: 0;
    display: flex;          /* allows equal height inner content */
}

.left-column > div,
.right-column > div {
    width: 100%;
}


.about-postcard {
  max-width: 900px;
  margin: 60px auto;
  display: flex;
  background: #fffaf3;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  font-family: "Georgia", serif;
}

/* Left image */
.postcard-image {
  width: 45%;
}

.postcard-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right content */
.postcard-content {
  position: relative;
  width: 55%;
  padding: 40px;
  border-left: 2px dashed #d6b98c;
}

.postcard-content h2 {
  margin-top: 60px;
  font-size: 32px;
  color: #5a3e2b;
}

.postcard-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}

/* Stamp (logo) */
.postcard-stamp {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 80px;
  height: 80px;
  border: 2px solid #b44;
  border-radius: 8px;
  transform: rotate(8deg);
  background: #fff;
}

.postcard-stamp img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

