
/* style.css */

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "adobe-garamond-pro", serif;
  font-weight: 400;
  color: #1a1a1a;
  background: linear-gradient(135deg, #f6d7c2, #f0b49f, #e7aac2, #c8a0d9, #a58ec4);
  background-size: 600% 600%;
  animation: backgroundShift 45s ease-in-out infinite;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@keyframes backgroundShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes wiggle {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(10deg); }
  50% { transform: rotate(-8deg); }
  75% { transform: rotate(6deg); }
  100% { transform: rotate(0deg); }
}

@keyframes sassFlip {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(15deg) scale(1.1); }
  50% { transform: rotate(-15deg) scale(1.1); }
  75% { transform: rotate(10deg); }
  100% { transform: rotate(0deg); }
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.emoji {
  display: block;
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.emoji:hover {
  animation: wiggle 0.5s ease;
}

.emoji:active {
  animation: sassFlip 1s ease-in-out;
}

.copy {
  font-size: 4rem;
  line-height: 1.5;
  font-weight: 400;
}

.copy em {
  font-style: italic;
}

.copy a {
  position: relative;
  font-style: italic;
  color: #1a1a1a;
  text-decoration: none;
}

.copy a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: #1a1a1a;
  transition: width 0.3s ease, left 0.3s ease;
}

.copy a:hover::after {
  width: 100%;
  left: 0;
}

.eyebrow {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  font-family: sans-serif;
}

.sociallink img {
  width: 48px;
  height: auto;
}

@media screen and (max-width: 768px) {
  .copy {
    font-size: 2.25rem;
    line-height: 1.4;
  }

  .container {
    padding: 2rem 1rem;
  }

  .emoji {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
  }

  .sociallink img {
    width: 40px;
  }
}
