/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  height: 100vh;
  display: flex;
}

.container {
  display: flex;
  width: 100%;
  height: 100vh;
}

/* Left side */
.left {
  flex: 1;
  background: #eee;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-img {
  height: 100px;
  width: auto;
}

.brand-info {
  display: flex;
  flex-direction: column;
}

.brand-info .name {
  font-weight: bold;
  font-size: 20px;
}

.brand-info .link {
  color: #777;
  text-decoration: none;
  font-size: 16px;
}

.headline {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.3;
}

/* Right side */
.right {
  flex: 3;
  display: flex;
  position: relative; /* needed for overlay logo */
}

.right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Logo overlay */
.logo-overlay {
  object-position: 60% 40%;
  scale: .95;
  height: 50px;
  width: auto;
  background: rgba(255, 255, 255, 0.8); /* optional subtle background */
  padding: 20px;
  border-radius: 6px;
}

/* Responsive layout */
@media (max-width: 768px) {
  body {
    height: auto;
  }

  .container {
    flex-direction: column;
    height: auto;
  }

  .left {
    padding: 20px;
    text-align: center;
    align-items: center;
  }

  .headline {
    font-size: 24px;
  }

  .right img {
    height: auto;
    max-height: 300px;
  }

  .logo-overlay {
    height: 40px;
    top: 10px;
    left: 10px;
  }
}
