/* ===== Sri Sai Interior Space - Coming Soon Page ===== */

:root{
  --gold: #c8922e;
  --gold-light: #a9740f;
  --gold-soft: #f7e6bd;
  --green: #0a5c36;
  --green-dark: #073c24;
  --bg-white: #ffffff;
  --bg-soft: #fbfaf6;
  --text-dark: #1c2620;
  --text-muted: #5c6b62;
  --border-soft: rgba(10,92,54,0.18);
}

*{ box-sizing: border-box; }

html,body{
  margin:0;
  padding:0;
  min-height:100vh;
  background: var(--bg-white);
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  overflow-x:hidden;
}

/* ===== Background effects ===== */
.bg-wrap{
  position: fixed;
  inset:0;
  z-index:0;
  background:
    radial-gradient(circle at 15% 20%, rgba(10,92,54,0.08), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(217,164,65,0.12), transparent 45%),
    linear-gradient(160deg, #ffffff 0%, #fbfaf6 50%, #ffffff 100%);
}

.glow{
  position:absolute;
  border-radius:50%;
  filter: blur(100px);
  opacity:0.35;
  animation: float 12s ease-in-out infinite;
}
.glow-1{
  width:420px; height:420px;
  background: var(--green);
  top:-100px; left:-100px;
}
.glow-2{
  width:380px; height:380px;
  background: var(--gold);
  bottom:-120px; right:-80px;
  animation-delay: 3s;
}

@keyframes float{
  0%,100%{ transform: translate(0,0) scale(1); }
  50%{ transform: translate(30px,-30px) scale(1.08); }
}

.particles{
  position:absolute; inset:0;
}
.particle{
  position:absolute;
  bottom:-10px;
  width:4px; height:4px;
  background: var(--gold);
  border-radius:50%;
  opacity:0.5;
  animation: rise linear infinite;
}
@keyframes rise{
  to{
    transform: translateY(-110vh) translateX(20px);
    opacity:0;
  }
}

/* ===== Layout ===== */
.page-container{
  position:relative;
  z-index:1;
  min-height:100vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  padding: 30px 20px 20px;
}

.site-header{
  width:100%;
  display:flex;
  justify-content:center;
  margin-bottom: 10px;
}
.logo-img{
  height: 140px;
  width:auto;
  object-fit:contain;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.15));
  animation: pop-in 1s ease;
}

@keyframes pop-in{
  from{ opacity:0; transform: scale(0.85) translateY(-10px); }
  to{ opacity:1; transform: scale(1) translateY(0); }
}

.main-content{
  width:100%;
  max-width: 900px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  flex:1;
}

.eyebrow{
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 600;
  margin: 4px 0 14px;
}
.eyebrow i{ font-size: 0.6rem; margin: 0 8px; }

.brand-name{
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 800;
  margin: 0;
  letter-spacing: 1px;
  background: linear-gradient(180deg, #c8922e, #a9740f 60%, #7a5308);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 8px rgba(217,164,65,0.12);
}
.brand-name span{
  display:block;
  font-size: 0.55em;
  letter-spacing: 6px;
  color: var(--green-dark);
  -webkit-text-fill-color: var(--green-dark);
  margin-top: 4px;
}

.tagline{
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin: 10px 0 30px;
}

.coming-soon-title{
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 700;
  margin: 0 0 18px;
  color: var(--text-dark);
}
.coming-soon-title span{
  color: var(--green);
}

.intro-text{
  max-width: 680px;
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1rem;
  margin: 0 0 36px;
}
.intro-text strong{ color: var(--gold-light); }

/* ===== Countdown ===== */
.countdown{
  display:flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content:center;
}
.count-box{
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  width: 90px;
  padding: 14px 8px;
  display:flex;
  flex-direction:column;
  align-items:center;
  box-shadow: 0 8px 24px rgba(10,92,54,0.08);
}
.count-box span{
  font-family:'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--green);
  line-height:1;
}
.count-box small{
  margin-top: 6px;
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ===== Services teaser ===== */
.services-teaser{
  display:flex;
  flex-wrap:wrap;
  gap: 12px;
  justify-content:center;
  margin-bottom: 40px;
  max-width: 750px;
}
.service-chip{
  background: linear-gradient(135deg, rgba(10,92,54,0.06), rgba(217,164,65,0.08));
  border: 1px solid var(--border-soft);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--text-dark);
  display:flex;
  align-items:center;
  gap: 8px;
  transition: transform 0.25s ease, background 0.25s ease;
}
.service-chip i{ color: var(--green); }
.service-chip:hover{
  transform: translateY(-3px);
  background: linear-gradient(135deg, rgba(10,92,54,0.14), rgba(217,164,65,0.18));
}

/* ===== Notify form ===== */
.notify-form{
  width:100%;
  max-width: 520px;
  margin-bottom: 30px;
}
.notify-label{
  display:block;
  margin-bottom: 12px;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.notify-input-wrap{
  display:flex;
  align-items:center;
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  padding: 6px 6px 6px 20px;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(10,92,54,0.06);
}
.notify-input-wrap i.fa-envelope{
  color: var(--gold);
}
.notify-input-wrap input{
  flex:1;
  border:none;
  outline:none;
  background: transparent;
  color: var(--text-dark);
  font-family:'Poppins', sans-serif;
  font-size: 0.95rem;
  padding: 10px 0;
}
.notify-input-wrap input::placeholder{ color: rgba(28,38,32,0.4); }

.notify-input-wrap button{
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #ffffff;
  border:none;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor:pointer;
  white-space:nowrap;
  display:flex;
  align-items:center;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.notify-input-wrap button:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(10,92,54,0.3);
}
.notify-input-wrap button:disabled{
  opacity:0.6;
  cursor:not-allowed;
  transform:none;
}

.form-msg{
  margin: 10px 0 0;
  font-size: 0.85rem;
  min-height: 20px;
}
.form-msg.success{ color: #7be3a8; }
.form-msg.error{ color: #ff9b9b; }

/* ===== Contact & social ===== */
.contact-row{
  display:flex;
  flex-wrap:wrap;
  gap: 22px;
  justify-content:center;
  margin-bottom: 20px;
}
.contact-item{
  color: var(--text-dark);
  text-decoration:none;
  font-size: 0.9rem;
  display:flex;
  align-items:center;
  gap: 8px;
  transition: color 0.2s ease;
}
.contact-item i{ color: var(--green); }
.contact-item:hover{ color: var(--gold-light); }

.social-row{
  display:flex;
  gap: 14px;
  margin-bottom: 10px;
}
.social-row a{
  width: 40px; height: 40px;
  border-radius:50%;
  border: 1px solid var(--border-soft);
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--green);
  text-decoration:none;
  transition: all 0.25s ease;
}
.social-row a:hover{
  background: var(--green);
  color: #ffffff;
  transform: translateY(-3px);
  border-color: var(--green);
}

.site-footer{
  position:relative;
  z-index:1;
  padding: 18px 0 6px;
  color: rgba(28,38,32,0.5);
  font-size: 0.8rem;
  text-align:center;
}

/* ===== Responsive ===== */
@media (max-width: 600px){
  .logo-img{ height: 100px; }
  .count-box{ width: 72px; padding: 10px 6px; }
  .count-box span{ font-size: 1.4rem; }
  .notify-input-wrap{
    flex-wrap: wrap;
    border-radius: 20px;
    padding: 14px;
  }
  .notify-input-wrap input{ width:100%; }
  .notify-input-wrap button{
    width:100%;
    justify-content:center;
  }
  .contact-row{ flex-direction:column; gap: 10px; }
}
