/*
Theme Name: Simple
Theme URI: https://kevinhanson.org
Author: Kevin Hanson
Description: A minimalist single-page splash theme with a soft gradient background, fade-in text, and animated pill buttons.
Version: 1.3
Requires at least: 6.0
Tested up to: 6.8
License: GPL-2.0-or-later
Text Domain: simple
*/

/* === Global Reset === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* === Base Body === */
body {
  height: 100vh;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: white;
  background-color: #000;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: fadeInBody 1s ease-in;
}

/* === Overlay Gradient === */
.overlay {
  background: linear-gradient(rgba(0,0,0,0.10), rgba(0,0,0,0.20));
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* === Center Content === */
.content {
  text-align: center;
  animation: fadeIn 2s ease-in;
}

/* === Profile Picture === */
.profile-pic {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 3px solid white;
  object-fit: cover;
  margin-bottom: 20px;
  animation: fadeIn 2s ease-in;
}

/* === Heading Animation === */
h1 {
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.2s;
}

/* === Social Links: White Pill Buttons === */
.links a {
  display: inline-block;
  background-color: #ffffff;
  color: #000000;
  padding: 8px 18px;
  margin: 6px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  border: 1px solid transparent;
  opacity: 0;
  transition: all 0.25s ease-in-out;
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.6s;
}

.links a:hover {
  background-color: #000000;
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.25);
}

/* === Responsive === */
@media (max-width: 600px) {
  .profile-pic {
    width: 130px;
    height: 130px;
  }
  .links a {
    display: block;
    margin: 10px auto;
    width: fit-content;
  }
}

/* === Keyframes === */
@keyframes fadeInBody {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
