/*.hero {
  background: #ff0000;
  display: flex;
  flex-direction: row;
  padding: 40px 5%;
  gap: 30px;
  width: 100%;
  height: 100vh;
} 

.hero-right {
  width: 70vw;
  height: 70vh;
  position: relative;
  right: 1vw;
  background: #ffffff;
  border-radius: 15px;
}

.photo {
  position: relative;
  left: 1vw;
  width: 20vw;
  height: 70vh;
  border-radius: 15px;
}

.photo img {
  border-radius: 15px;
  width: 100%;
  height: 100%;
}

.hero-right h1 { font-size: 48px; margin-bottom: 10px; }
.hero-right p { margin-bottom: 40px; color: #555; line-height: 1.6; }*/

* {
    /*outline: 1px solid blue; */
    box-sizing: border-box
}

.hero {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 60px 5%;
    background: url("../assets/backdrop/01.png") center/cover no-repeat;
}

.hero-left {
    width: 25%;
    max-width: 350px;
    aspect-ratio: 3 / 4;
    border-radius: 15px;
    overflow: hidden;
    background: #fff;

    flex-shrink: 0;
}

.photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-right {
    width: 65%;
    max-width: 900px;

    background: #fff;
    border-radius: 15px;

    padding: 50px;
}

.hero-right h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-right p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

/* Mobile */

@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-left,
    .hero-right {
        width: 100%;
        max-width: 600px;
    }

    .hero-left {
        aspect-ratio: 1;
    }

    .hero-right {
        padding: 35px;
    }

    .hero-right h1 {
        font-size: 36px;
    }
}
