/*
Theme Name: Guava Leaf Premium Coming Soon
Author: Guava Leaf
Version: 3.0
Description: Premium Animated Launch Page with Included Assets
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');

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

body {
  font-family: 'Poppins', sans-serif;
  height: 100vh;
  overflow: hidden;
  background: url('hero-background.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
}

.hero {
  position: relative;
  z-index: 2;
  animation: fadeIn 2s ease-in-out forwards;
  opacity: 0;
}

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

.logo img {
  width: 420px;
  max-width: 90%;
  animation: float 4s ease-in-out infinite;
}

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

h1 {
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #fbc02d;
}

#countdown {
  font-size: 2rem;
  margin-top: 20px;
  font-weight: 600;
}

.email-box { margin-top: 25px; }

.email-box input {
  padding: 14px;
  width: 260px;
  border-radius: 30px;
  border: none;
  outline: none;
}

.email-box button {
  padding: 14px 20px;
  border-radius: 30px;
  border: none;
  background: #ff6f00;
  color: white;
  cursor: pointer;
}

.socials {
  position: absolute;
  bottom: 20px;
  z-index: 2;
}

.socials a {
  margin: 0 12px;
  text-decoration: none;
  font-weight: 500;
  color: white;
}

.music-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  cursor: pointer;
  font-size: 22px;
}


/* Centered Social Row Under Email */
.socials-row {
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    margin-top:20px;
}

.social-icon {
    width:42px;
    height:42px;
    background:#ffffff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 6px 15px rgba(0,0,0,.25);
}

.social-icon svg {
    width:20px;
    height:20px;
    fill:#2e7d32;
}

/* Improve Email Visibility */
.email-box {
    background:rgba(255,255,255,.95);
    padding:15px 20px;
    border-radius:12px;
    display:inline-flex;
    gap:10px;
    box-shadow:0 10px 25px rgba(0,0,0,.3);
}
