/*
Theme Name: BogeyBossWPTheme
Description: From bogeys to berdies.
Version: 1.0.0
Author: BogeyBoss
Text Domain: bogeyboss
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  overflow: hidden;
  font-family: 'Fira Code', 'Monaco', 'Consolas', 'Ubuntu Mono', 'Roboto Mono', 'Courier New', monospace;
}

.container {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(-45deg, #2d5a27, #4a7c59, #6b9b37, #8bc34a, #388e3c, #2e7d32, #1b5e20, #4caf50);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
}

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

.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
  filter: blur(1px);
  animation: float 20s infinite linear;
}

.shape:nth-child(1) {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  left: 10%;
  animation-delay: 0s;
  animation-duration: 25s;
}

.shape:nth-child(2) {
  width: 120px;
  height: 120px;
  background: rgba(220, 245, 220, 0.3);
  left: 20%;
  animation-delay: 5s;
  animation-duration: 30s;
}

.shape:nth-child(3) {
  width: 60px;
  height: 60px;
  background: rgba(144, 238, 144, 0.3);
  left: 70%;
  animation-delay: 10s;
  animation-duration: 20s;
}

.shape:nth-child(4) {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.2);
  left: 80%;
  animation-delay: 15s;
  animation-duration: 35s;
}

.shape:nth-child(5) {
  width: 140px;
  height: 140px;
  background: rgba(173, 255, 173, 0.2);
  left: 50%;
  animation-delay: 20s;
  animation-duration: 25s;
}

@keyframes float {
  0% {
      transform: translateY(100vh) rotate(0deg);
  }
  100% {
      transform: translateY(-100vh) rotate(360deg);
  }
}

.content {
  text-align: center;
  color: white;
  z-index: 10;
  position: relative;
  padding: 0 20px;
  max-width: 800px;
}

.logo {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: pulse 2s ease-in-out infinite alternate;
}

@keyframes pulse {
  from {
      transform: scale(1);
  }
  to {
      transform: scale(1.05);
  }
}

.title {
  font-size: 4rem;
  font-weight: 300;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out;
}

.subtitle {
  font-size: 1.5rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.countdown-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem 1.5rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.countdown-item:hover {
  transform: translateY(-5px);
}

.countdown-number {
  font-size: 2.5rem;
  font-weight: bold;
  display: block;
}

.countdown-label {
  font-size: 0.9rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.notify-form {
  animation: fadeInUp 1s ease-out 0.9s both;
}

.email-input {
  padding: 15px 25px;
  font-size: 1rem;
  border: none;
  border-radius: 50px 0 0 50px;
  outline: none;
  width: 300px;
  max-width: 60%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.notify-btn {
  padding: 15px 30px;
  font-size: 1rem;
  background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 0 50px 50px 0;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
}

.notify-btn:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-links {
  margin-top: 3rem;
  animation: fadeInUp 1s ease-out 1.2s both;
}

.social-link {
  display: inline-block;
  margin: 0 15px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  line-height: 50px;
  text-align: center;
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  color: white;
}

.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: sparkle 3s linear infinite;
}

@keyframes sparkle {
  0%, 100% {
      opacity: 0;
      transform: scale(0);
  }
  50% {
      opacity: 1;
      transform: scale(1);
  }
}

@media (max-width: 768px) {
  .title {
      font-size: 2.5rem;
  }
  .subtitle {
      font-size: 1.2rem;
  }
  .countdown {
      gap: 1rem;
      flex-wrap: wrap;
  }
  .countdown-item {
      padding: 0.8rem 1rem;
  }
  .email-input {
      width: 200px;
      max-width: 100%;
      border-radius: 25px;
      margin-bottom: 10px;
  }
  .notify-btn {
      border-radius: 25px;
      width: 200px;
  }
  .logo {
      font-size: 2rem;
  }
}
