/* styles.css */
body {
  margin: 0;
  font-family: 'Helvetica Neue', sans-serif;
  display: flex;
  height: 100vh;
}

.container {
  display: flex;
  width: 100%;
}

.left-panel, .right-panel {
  flex: 1;
  position: relative;
  padding: 20px;
  box-sizing: border-box;
}

.left-panel {
  position: relative;
  width: 50%;
  height: 100vh;
  overflow: hidden;
}

.branding {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 24px;
  font-weight: bold;
  color: white;
  z-index: 10;
}

.social-icons {
  position: absolute;
  left: 20px;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-icons img {
  width: 24px;
  height: 24px;
}

.main-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.right-panel {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.nav {
  position: absolute;
  top: 20px;
  right: 20px;
}

.nav a {
  color: #007BFF;
  text-decoration: none;
  font-weight: bold;
}

h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.sweater-images {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.sweater-images img {
  width: 150px;
  height: auto;
  object-fit: cover;
}

.promo-text {
  font-size: 16px;
  margin-bottom: 20px;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80%;
  max-width: 300px;
}

.subscribe-form input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
}

.subscribe-form button {
  padding: 10px;
  background-color: #007BFF;
  color: white;
  border: none;
  cursor: pointer;
}

.error-message {
  color: red;
  font-size: 12px;
  margin-top: 5px;
}
/* Responsive overlap on small screens */
@media (max-width: 768px) {
  .branding {
    left: 50%;
    transform: translateX(-50%);
    top: 20px;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
  }
}