/*
Theme Name: Find Norman
Theme URI: https://findnorman.com
Description: Minimal mystery landing page for Find Norman
Author: Norman
Version: 1.0
*/

/* Reset everything */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Full screen black background */
html, body {
  height: 100%;
  width: 100%;
  background-color: #000000;
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  overflow: hidden;
}

/* Hide WordPress default elements */
.admin-bar,
.site-header,
.site-footer,
.entry-meta,
.entry-footer,
.comments-area,
.widget-area,
.wp-block-column,
.wp-block-columns,
.wp-site-blocks > *:not(.entry-content) {
  display: none !important;
}

/* Center everything */
.site-main,
.entry-content,
article {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

/* The Question */
.question {
  font-size: clamp(2rem, 8vw, 5rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 60px;
  text-transform: uppercase;
  animation: fadeIn 2s ease-out;
}

/* Email Form */
.email-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 400px;
  animation: fadeIn 2s ease-out 0.5s both;
}

.email-input {
  width: 100%;
  padding: 16px 24px;
  font-size: 16px;
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
  outline: none;
  transition: all 0.3s ease;
}

.email-input::placeholder {
  color: #666666;
}

.email-input:focus {
  border-color: #ffffff;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.submit-button {
  padding: 16px 48px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-button:hover {
  background: #ffffff;
  color: #000000;
}

/* The Divider */
.divider {
  margin: 80px 0 40px 0;
  color: #333333;
  font-size: 24px;
  letter-spacing: 0.5em;
  animation: fadeIn 2s ease-out 1s both;
}

/* The Motto */
.motto {
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  font-style: italic;
  color: #666666;
  line-height: 1.8;
  animation: fadeIn 2s ease-out 1.5s both;
}

/* Success Message */
.success-message {
  display: none;
  font-size: 1.25rem;
  color: #ffffff;
  animation: fadeIn 1s ease-out;
}

.success-message.visible {
  display: block;
}

/* Fade In Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Adjustments */
@media (max-width: 480px) {
  .question {
    margin-bottom: 40px;
  }
  
  .divider {
    margin: 60px 0 30px 0;
  }
  
  .motto {
    padding: 0 20px;
  }
}