* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(
    135deg,
    #eef4ee 0%,
    #dce8dc 40%,
    #cfe0cf 100%
  );
  color: #4b4b4b;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
}


/* Organic green background shapes */

body::before,
body::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

/* Large soft sage glow top left */
body::before {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(95, 120, 95, 0.18), transparent 70%);
  top: -200px;
  left: -200px;
}

/* Deeper forest green bottom right */
body::after {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(60, 90, 60, 0.15), transparent 70%);
  bottom: -250px;
  right: -250px;
}

/* Floating organic blobs */
.green-blob {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(120,150,120,0.12), transparent 70%);
  border-radius: 45% 55% 60% 40% / 60% 40% 60% 40%;
  z-index: 0;
}

.blob-1 {
  top: 10%;
  right: 15%;
}

.blob-2 {
  bottom: 15%;
  left: 10%;
  transform: rotate(45deg);
}


/* Soft grain texture overlay */
body::selection {
  background: #c6a85b;
  color: white;
}

.container {
  position: relative;
  z-index: 2;
}


/* Sacred geometry subtle background */
.sacred-symbol {
  position: absolute;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(140, 150, 120, 0.08);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sacred-symbol::before,
.sacred-symbol::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(140, 150, 120, 0.08);
  border-radius: 50%;
  width: 100%;
  height: 100%;
}

.sacred-symbol::before {
  transform: rotate(45deg);
}

.sacred-symbol::after {
  transform: rotate(90deg);
}

/* Botanical corner accents */
.leaf {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle at center, rgba(108,122,89,0.15), transparent 70%);
  z-index: 0;
}

.leaf-top-left {
  top: -50px;
  left: -50px;
  border-radius: 0 0 200px 0;
}

.leaf-bottom-right {
  bottom: -50px;
  right: -50px;
  border-radius: 200px 0 0 0;
}

/* Main card */
.container {
  max-width: 600px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  padding: 45px;
  border-radius: 25px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
}

.title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.4rem;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 5px;
  color: #4f6f4f;
  text-shadow: 0 0 20px rgba(120, 160, 120, 0.25);
}

.gold-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, #c6a85b, #e4c878);
  margin: 15px auto 25px auto;
}

.subtitle {
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-style: italic;
}

.description {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.profile-image {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 25px;
  border: 4px solid #e5dfcf;
}

.socials {
  margin-bottom: 25px;
}

.socials a {
  text-decoration: none;
  color: #5f6f52;
  margin: 0 12px;
  font-weight: 400;
  transition: all 0.3s ease;
}

.socials a:hover {
  opacity: 0.6;
}

/* Coming Soon Box */
.coming-box {
  margin-top: 35px;
  padding: 20px 30px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(113, 96, 66, 0.518),
    rgba(80, 120, 80, 0.12)
  );
  border: 1px solid rgba(80, 120, 80, 0.25);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(6px);
}

/* Main Coming Text */
.coming-soon {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  letter-spacing: 2px;
  color: #5f4d3f;
  margin: 0;
}

/* Prevent line break */
.no-break {
  white-space: nowrap;
}



/* Fade animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.5s ease, transform 1.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Floating decorative elements */
.floating-leaf {
  position: absolute;
  font-size: 42px;
  opacity: 0.6;
  animation: float 6s ease-in-out infinite;
  z-index: 1;
}

.leaf1 {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.leaf2 {
  bottom: 20%;
  right: 12%;
  animation: driftAcross 12s ease-in-out infinite;
}

.leaf3 {
  top: 25%;
  right: 25%;
  animation-delay: 4s;
}

@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-25px) rotate(8deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes driftAcross {
  0% {
    transform: translateX(-50px) translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateX(50px) translateY(-30px) rotate(15deg);
  }
  100% {
    transform: translateX(-50px) translateY(0px) rotate(0deg);
  }
}

.green-blob {
  animation: slowFloat 12s ease-in-out infinite;
}

@keyframes slowFloat {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

/* Mobile styles */
@media (max-width: 768px) {
  .container {
    width: 90%;           /* container fits smaller screens */
    padding: 20px;
  }

  .title {
    font-size: 2rem;      /* smaller heading for phones */
  }

  .subtitle, .description, .coming-soon {
    font-size: 1rem;      /* readable text */
  }

  .profile-image {
    width: 120px;
    height: auto;
    margin: 20px auto;
  }

  .socials a {
    font-size: 0.9rem;
    display: inline-block;
    margin: 0 5px;
  }
}