body {
    overflow-x: hidden !important;
}
.page-top-content{
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.right-content {
    background-color: var(--primary);
    color: var(--text-light);
   min-height: 100vh;
   display: flex;
   justify-content: center;
   align-items: center;

}

.nursey-bar {
    background: var(--neutral);
}
 .img-wrapper {
  width: 100%;

     /* istediğin sabit maks yüksekliği ayarla */
  overflow: hidden;
  border-radius: 10px;  /* opsiyonel: köşe yumuşatma */
}

 .img-wrapper img {
  width: calc(80% + 50px) !important;
  height: 85vh;   /* resmi kutuya sığdırır, bozmadan kırpar */
  object-fit: cover;    /* resmi kutuya sığdırır, bozmadan kırpar */
  display: block;
}

/** LEFT BAR */

.left-content{
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;

}


.left-content-title {
    font-size: 60px;
    font-style: italic;
}

.left-content-text {
    font-size: 22px;
}

.left-content-subtitle {
    font-size: 14px;
    text-transform: uppercase;
    font-family: "Unica One",
        sans-serif !important;
    letter-spacing: 0.2rem;
}


/** Alt bottom bar css */
.page-bottom-content {
    background-color: var(--neutral);
    color: var(--text-darkk);
    min-height: 65vh;
}

.page-bottom-content h3 {
    font-size: 60px;
    font-style: italic;
}

.page-bottom-content span {
    font-size: 22px;
}

.page-bottom-content button {
    font-size: 16px !important;
    text-transform: uppercase;
    letter-spacing: 0.4rem;
    display: flex;
    font-family: "Unica One",
        sans-serif !important;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

@media screen and (max-width: 768px) {
  .left-content-title {
        font-size: 40px;
        font-style: italic;
    }

    .left-content-text {
        font-size: 18px;
    }

    .left-content-subtitle {
        font-size: 12px;
        text-transform: uppercase;
        font-family: "Unica One",
            sans-serif !important;
        letter-spacing: 0.2rem;
    }

     .right-content{
        max-height: max-content !important;
       height: max-content !important;
     }

      .img-wrapper {
        overflow: hidden;
        height: 20vh;
        border-radius: 10px;  /* opsiyonel: köşe yumusuzaatma */
    }
 .img-wrapper img {
        height: 100% !important;
        width: 100% !important;
    }
    .right-content, .left-content {
        min-height: max-content;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 2rem 0;
    }
}
