/* LOTUSVASTRA - Site Under Construction CSS */
:root {
  --primary: #b47b2a;
  --primary-light: #ecd7b8;
  --primary-dark: #8e5f1d;
  --text-dark: #333333;
  --text-light: #777777;
  --white: #ffffff;
  --bg-light: #f8f5f0;
  --transition: all 0.3s ease;
}

/* Global Styles */
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--text-dark);
}

.construction-bg {
  background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 50%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
}

.construction-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23b47b2a' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  z-index: 0;
}

/* Card container */
.container-card {
  max-width: 1000px;
  width: 90%;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(180, 123, 42, 0.15);
  padding: 40px;
  position: relative;
  z-index: 10;
  backdrop-filter: blur(10px);
  animation: fadeInUp 1s cubic-bezier(0.23, 1, 0.32, 1) both;
}

/* Content layout */
.content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Image styles */
.image-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.construction-gif {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(180, 123, 42, 0.2);
  transform: perspective(1000px) rotateY(-5deg);
  transition: var(--transition);
}

.construction-gif:hover {
  transform: perspective(1000px) rotateY(0deg);
}

/* Text content */
.text-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brand-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin: 0;
  line-height: 1.1;
  letter-spacing: -1px;
  position: relative;
  background: linear-gradient(90deg, #b47b2a 0%, #e2a53d 30%, #ffdb84 50%, #e2a53d 70%, #b47b2a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  animation: shimmer 6s infinite linear;
  background-size: 200% 100%;
}

@keyframes shimmer {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

.brand-title::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #b47b2a 0%, #e2a53d 50%, #b47b2a 100%);
  bottom: -10px;
  left: 0;
  border-radius: 2px;
}

.brand-message {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-light);
  margin: 20px 0 5px 0;
}

.team-signature {
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 500;
  margin-top: 0;
  background: linear-gradient(90deg, #b47b2a 0%, #d19c43 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  align-self: flex-end;
}

/* Countdown styles */
.countdown-container {
  display: flex;
  gap: 15px;
  margin: 15px 0;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--white);
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  min-width: 60px;
  border: 1px solid rgba(180, 123, 42, 0.2);
}

.countdown-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.countdown-label {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 5px;
}

/* Notification form */
.notification-form {
  display: flex;
  margin: 20px 0;
  gap: 10px;
}

.email-input {
  flex: 1;
  padding: 12px 15px;
  border: 2px solid rgba(180, 123, 42, 0.3);
  border-radius: 8px;
  font-size: 0.95rem;
  transition: var(--transition);
}

.email-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(180, 123, 42, 0.2);
}

.notify-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.notify-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* Email styling */
.email-input {
  background-color: var(--bg-light);
  color: var(--primary);
  font-weight: 500;
  cursor: default;
  word-break: break-all; /* Ensures email wraps properly on small screens */
  text-overflow: ellipsis;
}

.email-input:focus {
  background-color: var(--bg-light);
}

/* Footer */
.footer-text {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(180, 123, 42, 0.1);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive design */
@media (max-width: 992px) {
  .container-card {
    padding: 30px;
  }
  
  .content-wrapper {
    gap: 30px;
  }
  
  .brand-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .content-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .brand-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .notification-form {
    flex-direction: column;
  }
  
  .team-signature {
    align-self: center;
  }
  
  .countdown-container {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .container-card {
    padding: 20px 15px;
    width: 95%;
  }
  
  .brand-title {
    font-size: 2.2rem;
  }
  
  .countdown-container {
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .countdown-item {
    min-width: 45px;
    padding: 8px 5px;
  }
  
  .countdown-value {
    font-size: 1.2rem;
  }
  
  .content-wrapper {
    gap: 20px;
  }
}

@media (max-width: 400px) {
  .container-card {
    padding: 15px 10px;
    width: 98%;
  }
  
  .brand-title {
    font-size: 1.8rem;
  }
  
  .brand-message {
    font-size: 0.9rem;
    margin: 15px 0 5px 0;
  }
  
  .team-signature {
    font-size: 0.95rem;
  }
  
  .construction-gif {
    max-width: 75%;
  }
  
  .notification-form {
    margin: 10px 0;
  }
  
  .email-input, .notify-btn {
    padding: 10px;
    font-size: 0.9rem;
  }
}

/* Extra small phone optimization */
@media (max-width: 320px) {
  .construction-bg {
    padding: 2px;
  }
  
  .container-card {
    padding: 10px 8px;
    box-shadow: 0 10px 30px rgba(180, 123, 42, 0.15);
  }
  
  .brand-title {
    font-size: 1.6rem;
  }
  
  .brand-title::after {
    width: 60px;
    height: 3px;
  }
  
  .brand-message {
    font-size: 0.85rem;
    margin: 10px 0 3px 0;
    line-height: 1.4;
  }
  
  .team-signature {
    font-size: 0.9rem;
  }
  
  .countdown-container {
    gap: 5px;
  }
  
  .countdown-item {
    min-width: 40px;
    padding: 5px;
  }
  
  .countdown-value {
    font-size: 1rem;
  }
  
  .countdown-label {
    font-size: 0.7rem;
  }
  
  .email-input, .notify-btn {
    padding: 8px;
    font-size: 0.85rem;
    border-radius: 6px;
  }
  
  .footer-text {
    font-size: 0.8rem;
    margin-top: 15px;
    padding-top: 10px;
  }
}
