:root {
  color-scheme: light;
  color: #091016;
  background: #ffffff;
  font-family: Inter, system-ui, sans-serif;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  min-height: 100vh;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-shell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
  padding-top: 3rem;
}
.logo-header {
  margin-bottom: 2rem;
}
.logo {
  height: 120px;
  width: auto;
  display: block;
}
.landing-link {
  text-decoration: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.landing-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 90vw;
  height: auto;
}
.landing-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  transition: all 0.3s ease;
  cursor: pointer;
}

.landing-link:hover .landing-image {
  transform: scale(1.05);
  filter: brightness(1.1);
  box-shadow: 0 0 40px rgba(255, 109, 69, 0.4);
}

.click-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  animation: bounce 1.5s ease-in-out infinite;
}

.click-text {
  font-size: 1.2rem;
  font-weight: 900;
  color: #ff6c42;
  margin: 0;
  transform: rotate(-8deg);
  font-style: italic;
  letter-spacing: 0.05em;
  font-family: 'Comic Sans MS', 'Marker Felt', cursive, system-ui;
}

.arrow-down {
  font-size: 1.8rem;
  color: #ff6c42;
  animation: bounce-arrow 1.5s ease-in-out infinite;
  font-weight: bold;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes bounce-arrow {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }

@media (max-width: 768px) {
  .word-balloon {
    top: 12%;
    right: -5%;
  }
}

.contact-cta {
  margin-top: 2rem;
}

.contact-link {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: linear-gradient(135deg, #ff9d27 0%, #ff6c42 100%);
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0.5rem;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 109, 69, 0.3);
}

.contact-link:active {
  transform: translateY(0);
}

.contact-page-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.back-link {
  align-self: flex-start;
  color: #091016;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
  margin-bottom: 1rem;
}

.back-link:hover {
  color: #ff6c42;
}

.contact-section {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
}

.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #091016;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #091016;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  color: #091016;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff6c42;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 109, 69, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  padding: 0.85rem 2rem;
  background: linear-gradient(135deg, #ff9d27 0%, #ff6c42 100%);
  color: #091016;
  font-weight: 700;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 109, 69, 0.3);
}

.form-submit:active {
  transform: translateY(0);
}
