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

body {
  font-family: 'Helvetica Neue', sans-serif;
  background: #0a0a0a;
  color: #fff;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  overflow-x: hidden;
}

/* Main Wrapper */
.vcr-animation-wrapper {
  width: 100%;
  max-width: 800px;
  text-align: center;
}

/* Logo (bigger size but responsive) */
.vcr-logo {
  width: clamp(250px, 55%, 360px);
  margin-bottom: 1.5rem;
}

/* Titles */
.vcr-title {
  font-size: clamp(2rem, 5vw, 3.8rem);
  margin-bottom: 0.8rem;
  font-weight: 700;
}

/* Shiny Silver Text Effect */
.vcr-subtitle {
  font-size: clamp(1.2rem, 3vw, 2rem);
  background: linear-gradient(
    90deg,
    #00d4ff 10%,
    #f0f0f0 20%,
    #00d4ff 30%,
    #f0f0f0 40%,
    #00d4ff 50%,
    #f0f0f0 60%,
    #00d4ff 70%,
    #e8e8e8 80%,
    #00d4ff 90%,
    #f0f0f0 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 10s linear infinite;
  margin-bottom: 1rem;
}


@keyframes shine {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}


/* Tagline */
.vcr-tagline {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  margin-bottom: 2rem;
  opacity: 0.8;
}

/* Contact Info */
.vcr-contact-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
}

.vcr-contact-line a {
  color: #00d4ff;  /* soft steel blue */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.vcr-contact-line a:hover {
  color: #a9c5d3;  /* lighter steel blue */
  text-decoration: none;
}


/* Contact Form */
.vcr-contact-form {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.vcr-form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.vcr-contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.vcr-contact-form input,
.vcr-contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #555;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1rem;
}

.vcr-contact-form input::placeholder,
.vcr-contact-form textarea::placeholder {
  color: #ccc;
}

/* Validation */
.vcr-error-message {
  color: #ff4d4d;
  font-size: 0.9rem;
  display: none;
}

input.error, textarea.error {
  border-color: #ff4d4d;
}

/* Button */
.vcr-contact-form button {
  background: #00d4ff;
  color: #fff;
  padding: 0.85rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 100%;
}

.vcr-contact-form button:hover {
  background: #00b0d6;
}

.vcr-form-status {
  margin-top: 1rem;
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 600px) {
  .vcr-contact-form {
    padding: 1.5rem;
  }

  .vcr-contact-box {
    padding: 1rem;
  }
}
