* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Georgia, 'Times New Roman', serif;
}

html, body {
  height: 100%;
  scroll-behavior: smooth;
    overflow-y: hidden;
  height: 100%;
}
.bg {
  background-color: #F5F3EC;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem 7rem 2rem;
  position: relative;
}

.main {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(3rem, 10vw, 12rem);
  font-weight: 600;
  color: #000;
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-align: center;
  user-select: none;
  text-rendering: optimizeLegibility;
}

.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #000000;
  min-height: max(5vh, 52px);
  height: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  padding: 0.5rem 1.2rem;
  z-index: 1000;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
}

.email-label {
  color: #F5F3EC;
  font-size: clamp(0.8rem, 3vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0.2rem 0.7rem;
  border-radius: 40px;
  white-space: nowrap;
  backdrop-filter: blur(2px);
}



.bottom-bar input {
  background: #ffffff;
  border: none;
  border-radius: 60px;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-family: inherit;
  font-weight: 450;
  color: #111;
  outline: none;
  transition: all 0.2s ease;
  width: auto;
  min-width: 130px;
  flex: 0 1 auto;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.bottom-bar input:focus {
  outline: 2px solid #f0c45a;
  outline-offset: 2px;
  background: #fffef7;
  transform: scale(1.01);
}

.bottom-bar input::placeholder {
  color: #8f8f8f;
  font-weight: 400;
  opacity: 0.8;
}


@media (max-width: 560px) {
  .bottom-bar {
    gap: 0.6rem;
    padding: 0.6rem 1rem;
  }
  .bottom-bar input {
    min-width: 115px;
    padding: 0.45rem 0.8rem;
    font-size: 0.8rem;
  }
  .submit-btn {
    padding: 0.45rem 1rem;
    font-size: 0.8rem;
    min-width: 70px;
  }
  .email-label {
    font-size: 0.8rem;
    white-space: nowrap;
  }
}

@media (max-width: 430px) {
  .bottom-bar {
    justify-content: center;
    gap: 0.5rem 0.8rem;
  }
  .bottom-bar input {
    min-width: 100px;
    flex-shrink: 1;
  }
  .submit-btn {
    padding: 0.45rem 0.9rem;
  }
}

.bottom-bar input:-webkit-autofill,
.bottom-bar input:-webkit-autofill:focus {
  transition: background-color 600000s 0s, color 600000s 0s;
}


.email-label {
  cursor: pointer;
  transition: all 0.2s ease;
}
.email-label:active {
  transform: scale(0.98);
}




.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.photo-placeholder {
  width: clamp(300px, 35vw, 180px);
  height: clamp(300px, 35vw, 180px);
  background-color: #e6e2d6;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255,255,255,0.6);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2399907a" width="48px" height="48px"><path d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"/></svg>');
  background-repeat: no-repeat;
  background-position: center 55%;
  background-size: 40%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  /* filter: sepia(0.4) hue-rotate(5deg) saturate(1.1); */
  filter: sepia(0.3) brightness(1.02) contrast(0.98);
  /* filter: sepia(0.6) hue-rotate(-5deg) brightness(1.05); */
}

.photo-placeholder:hover {
  /* transform: scale(1.02); */
  /* box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1); */
}

.photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
