/* CONTAINER */
.homecollage-section {
  width: 100%;
  padding: 60px 5%;
  background-image: url("/images/logo-bg.png");
  box-sizing: border-box;
	background-size: cover;
  background-position: center;
}


/* TITLE */
.homecollage-title {
  text-align: left;
  color: #091e77;
  margin-bottom: 10px;
  font-size: clamp(1rem, 5vw, 2.5rem);
  text-shadow: 2px 2px 2px white;
	
}

/* LAYOUT */
.homecollage-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

	  
/* TEXT COLUMN */
.homecollage-textblock {
  position: relative;
  flex: 1;
  min-width: 280px;
  min-height: 320px;              /* gives room to vertically center */
}

/* Both text groups sit centered in this column */
.homecollage-text-group {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4em;
  text-align: center;
  font-size: 2rem;
  font-weight: 400;
  color: #262626;
}

/* initial visibility */
.homecollage-text-group-main {
  opacity: 1;
}

.homecollage-text-group-alt {
  opacity: 0;
}

/* each line in the 3-line group */
.homecollage-text-line {
  opacity: 0;                      /* GSAP will fade them in */
}

/* optional styling for the plus line */
.homecollage-text-plus {
  font-size: 2.2rem;
}

/* the 3-line alt phrase */
.homecollage-text-alt-lines {
  line-height: 1.2;
}

/* Mobile: keep centered */
@media (max-width: 600px) {
  .homecollage-text-group {
    font-size: 1.7rem;
  }
}
	  

/* RIGHT IMAGE COLLAGE */
.homecollage-images {
  position: relative;
  width: 450px;
  height: 420px;
}

.homecollage-img {
  position: absolute;
  border-radius: 20px;
  border: 4px solid #eee8e1;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  object-fit: cover;
  width: auto;
}

/* Individually sized + arranged */
.homecollage-img-1 {
  width: 220px;
  left: 0;
  top: 0;
  z-index: 3;
}
.homecollage-img-2 {
  width: 260px;
  right: 0;
  top: 20px;
  z-index: 2;
}
.homecollage-img-3 {
  width: 320px;
  left: 80px;
  bottom: 10px;
  z-index: 1;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .homecollage-images {
    width: 300px;
    height: 280px;
  }
  .homecollage-img-1 { width: 200px; }
  .homecollage-img-2 { width: 180px; }
  .homecollage-img-3 { width: 250px; }
}

@media(max-width: 600px) {
  .homecollage-title { text-align: center; }
  .homecollage-textblock { text-align: center; }
}
