/* Reset and Base Styles */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background: radial-gradient(ellipse at center, #A5D6A7 0%, #7FBC7F 25%, #5A9B5A 50%, #2E7D32 75%, #0C3A0D 100%);
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  max-width: 600px;
  width: 100%;
  padding: 20px;
  border-radius: 15px;
  background-color: rgba(4, 48, 17, 0.6);
  box-shadow: 0 0 20px rgba(15, 155, 15, 0.4);
  animation: fadeIn 0.8s ease forwards;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.logo {
  width: 100%;
  max-width: 350px;
  height: auto;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.02);
}

h1 {
  font-size: 2.5em;
  margin: 10px 0px 0px 0px;
  color: #19af46;
  border-bottom: 2px solid #19af46;
  padding-bottom: 10px;
  line-height: 0.5;
  display: inline-block;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  font-weight: 600;
}

.tagline {
  font-size: 1.2em;
  color: #ccffcc;
  margin-bottom: 20px;
  font-weight: 400;
}

#status-message {
  margin: 0px;
  font-size: 15px;
  color: #ffff66;
  text-shadow: 1px 1px 0 #0a5a24, 2px 2px 2px rgba(0, 0, 0, 0.5);
  min-height: 2.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
  padding: 0 20px;
  background: linear-gradient(135deg, rgba(165, 214, 167, 0.1) 0%, rgba(102, 187, 106, 0.05) 100%);
  border-radius: 15px;
  border: 1px solid rgba(102, 187, 106, 0.3);
  box-shadow: 0 4px 16px rgba(12, 58, 13, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

#status-message:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(12, 58, 13, 0.3);
  border-color: rgba(102, 187, 106, 0.5);
  background: linear-gradient(135deg, rgba(165, 214, 167, 0.15) 0%, rgba(102, 187, 106, 0.08) 100%);
}

.contact-box {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 10px;
  margin: 20px 0;
  width: 100%;
  max-width: 400px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.contact-box:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.contact-box h3 {
  margin: 0px;
  color: #19af46;
  font-size: 1.5em;
  font-weight: 600;
  border-bottom: 2px solid #19af46;
  padding-bottom: 5px;
  line-height: 1;
  display: inline-block;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  margin: 12px 18px;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1px solid rgba(102, 187, 106, 0.4);
  background: linear-gradient(135deg, 
    rgba(165, 214, 167, 0.08) 0%, 
    rgba(165, 214, 167, 0.04) 100%);
  box-shadow: 
    0 4px 16px rgba(12, 58, 13, 0.15),
    0 0 0 1px rgba(102, 187, 106, 0.15) inset,
    0 0 20px rgba(102, 187, 106, 0.05);
  min-width: 200px;
  position: relative;
  overflow: hidden;
  transform-origin: center;
  white-space: nowrap;
}

.contact-link:hover {
  color: #ffffff;
  border-color: #66bb6a;
  transform: scale(1.03) translateY(-2px);
  box-shadow: 
    0 0 0 2px rgba(102, 187, 106, 0.4),
    0 0 0 4px rgba(102, 187, 106, 0.2),
    0 8px 24px rgba(12, 58, 13, 0.25),
    0 0 0 1px rgba(102, 187, 106, 0.2) inset,
    0 0 30px rgba(102, 187, 106, 0.1);
  background: linear-gradient(135deg, 
    rgba(165, 214, 167, 0.15) 0%, 
    rgba(165, 214, 167, 0.08) 100%);
}

.contact-link:focus {
  outline: none;
  border-color: #66bb6a;
  transform: scale(1.02);
  box-shadow: 
    0 0 0 2px rgba(102, 187, 106, 0.4),
    0 0 0 4px rgba(102, 187, 106, 0.2),
    0 0 20px rgba(102, 187, 106, 0.2);
}

.contact-link[href^="tel:"]:focus {
  border-color: #66bb6a;
  box-shadow: 
    0 0 0 2px rgba(102, 187, 106, 0.5),
    0 0 0 4px rgba(102, 187, 106, 0.3),
    0 0 20px rgba(102, 187, 106, 0.2);
}

.contact-link[href^="mailto:"]:focus {
  border-color: #66bb6a;
  box-shadow: 
    0 0 0 2px rgba(102, 187, 106, 0.5),
    0 0 0 4px rgba(102, 187, 106, 0.3),
    0 0 20px rgba(102, 187, 106, 0.2);
}

/* Contact Link Specific Hover Effects */
.contact-link[href^="tel:"] {
  background: linear-gradient(135deg, 
    rgba(165, 214, 167, 0.15) 0%, 
    rgba(165, 214, 167, 0.08) 50%, 
    rgba(165, 214, 167, 0.04) 100%);
  border-color: rgba(102, 187, 106, 0.6);
  box-shadow: 
    0 4px 16px rgba(12, 58, 13, 0.15),
    0 0 0 1px rgba(102, 187, 106, 0.2) inset,
    0 0 20px rgba(102, 187, 106, 0.08),
    0 0 0 1px rgba(102, 187, 106, 0.3);
}

.contact-link[href^="tel:"]:hover {
  background: linear-gradient(135deg, 
    rgba(165, 214, 167, 0.25) 0%, 
    rgba(165, 214, 167, 0.15) 50%, 
    rgba(165, 214, 167, 0.08) 100%);
  border-color: #66bb6a;
  box-shadow: 
    0 0 0 2px rgba(102, 187, 106, 0.4),
    0 0 0 4px rgba(102, 187, 106, 0.2),
    0 8px 24px rgba(12, 58, 13, 0.25),
    0 0 0 1px rgba(102, 187, 106, 0.3) inset,
    0 0 40px rgba(102, 187, 106, 0.15),
    0 0 0 1px rgba(102, 187, 106, 0.5);
}

.contact-link[href^="mailto:"] {
  background: linear-gradient(135deg, 
    rgba(165, 214, 167, 0.15) 0%, 
    rgba(165, 214, 167, 0.08) 50%, 
    rgba(165, 214, 167, 0.04) 100%);
  border-color: rgba(102, 187, 106, 0.6);
  box-shadow: 
    0 4px 16px rgba(12, 58, 13, 0.15),
    0 0 0 1px rgba(102, 187, 106, 0.2) inset,
    0 0 20px rgba(102, 187, 106, 0.08),
    0 0 0 1px rgba(102, 187, 106, 0.3);
}

.contact-link[href^="mailto:"]:hover {
  background: linear-gradient(135deg, 
    rgba(165, 214, 167, 0.25) 0%, 
    rgba(165, 214, 167, 0.15) 50%, 
    rgba(165, 214, 167, 0.08) 100%);
  border-color: #66bb6a;
  box-shadow: 
    0 0 0 2px rgba(102, 187, 106, 0.4),
    0 0 0 4px rgba(102, 187, 106, 0.2),
    0 8px 24px rgba(12, 58, 13, 0.25),
    0 0 0 1px rgba(102, 187, 106, 0.3) inset,
    0 0 40px rgba(102, 187, 106, 0.15),
    0 0 0 1px rgba(102, 187, 106, 0.5);
}

/* Social Icons */
.social {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 0px;
}

.social a {
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  position: relative;
  overflow: visible;
}

.social a:focus {
  outline: none;
}

.social i {
  font-size: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid transparent;
}

/* Social Icon Specific Styles */
.social a[href*="threads"] i,
.social .threads-icon i {
  color: #ffffff;
  border: 2px solid #000000;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 100%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.social a[href*="instagram"] i {
  color: #ffffff;
  border: 2px solid #e90bcb;
  background: linear-gradient(135deg, rgba(211, 18, 195, 0.9) 0%, rgba(169, 21, 156, 0.7) 100%);
  box-shadow: 0 2px 8px rgba(211, 18, 195, 0.2);
}

.social a[href*="facebook"] i {
  color: #ffffff;
  border: 2px solid #0f119b;
  background: linear-gradient(135deg, rgba(48, 46, 139, 0.9) 0%, rgba(15, 17, 155, 0.7) 100%);
  box-shadow: 0 2px 8px rgba(48, 46, 139, 0.2);
}

.social a[href*="linkedin"] i {
  color: #ffffff;
  border: 2px solid #0077b5;
  background: linear-gradient(135deg, rgba(0, 119, 181, 0.9) 0%, rgba(0, 95, 145, 0.7) 100%);
  box-shadow: 0 2px 8px rgba(0, 119, 181, 0.2);
}

.social a[href*="x.com"] i {
  color: #ffffff;
  border: 2px solid #000000;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 100%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.social a[href*="pinterest"] i {
  color: #ffffff;
  border: 2px solid #e60023;
  background: linear-gradient(135deg, rgba(230, 0, 35, 0.9) 0%, rgba(184, 0, 28, 0.7) 100%);
  box-shadow: 0 2px 8px rgba(230, 0, 35, 0.2);
}

/* Hover Effects */
.social a:hover i {
  border-color: #ffffff;
  transform: scale(1.15) rotate(360deg);
  box-shadow: 
    0 0 0 3px rgba(255, 255, 255, 0.3),
    0 0 0 6px rgba(255, 255, 255, 0.2),
    0 0 20px rgba(255, 255, 255, 0.4),
    0 4px 12px rgba(0, 0, 0, 0.3);
}

.social a[href*="threads"]:hover i,
.social .threads-icon:hover i {
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
}

.social a[href*="instagram"]:hover i {
  background: linear-gradient(135deg, #e90bcb 0%, #ca15b2 100%);
}

.social a[href*="facebook"]:hover i {
  background: linear-gradient(135deg, #0f119b 0%, #0a0d7a 100%);
}

.social a[href*="linkedin"]:hover i {
  background: linear-gradient(135deg, #0077b5 0%, #005a8b 100%);
}

.social a[href*="pinterest"]:hover i {
  background: linear-gradient(135deg, #e60023 0%, #b8001c 100%);
}

.footer {
  margin-top: 20px;
  font-size: 0.9em;
  color: #cccccc;
  text-align: center;
}

/* Animations */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.container > * {
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}

.container > *:nth-child(1) { animation-delay: 0.1s; }
.container > *:nth-child(2) { animation-delay: 0.2s; }
.container > *:nth-child(3) { animation-delay: 0.3s; }
.container > *:nth-child(4) { animation-delay: 0.4s; }
.container > *:nth-child(5) { animation-delay: 0.5s; }
.container > *:nth-child(6) { animation-delay: 0.6s; }

/* Responsive Design */
@media (max-width: 768px) {
  body {
    padding: 15px;
  }
  
  .container {
    padding: 15px;
    max-width: 500px;
  }
  
  h1 {
    font-size: 2em;
  }
  
  .tagline {
    font-size: 1em;
  }
  
  #status-message {
    font-size: 1.2em;
  }
  
  .contact-box h3 {
    font-size: 1.3em;
  }
  
     .logo {
     max-width: 280px;
   }
   
   .contact-link {
     padding: 11px 15px;
     min-width: 190px;
   }
   
   .social {
     gap: 10px;
   }
  
     .social a {
     width: 40px;
     height: 40px;
   }
   
   .social i {
     width: 40px;
     height: 40px;
     font-size: 18px;
   }
}

@media (max-width: 480px) {
  .container {
    padding: 12px;
    border-radius: 10px;
  }
  
  h1 {
    font-size: 1.6em;
  }
  
  .tagline {
    font-size: 0.9em;
  }
  
  #status-message {
    font-size: 1em;
  }
  
  .contact-box h3 {
    font-size: 1.2em;
  }
  
  .logo {
    max-width: 220px;
  }
  
     .contact-box {
     padding: 12px;
   }
   
   .contact-link {
     padding: 10px 14px;
     min-width: 180px;
     font-size: 0.9em;
   }
  
  .social {
    gap: 8px;
  }
  
     .social a {
     width: 35px;
     height: 35px;
   }
   
   .social i {
     font-size: 16px;
     width: 35px;
     height: 35px;
   }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .container {
    border: 2px solid #ffffff;
  }
  
  .contact-box {
    border: 2px solid #ffffff;
  }
  
     .social a:focus {
     outline: none;
   }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .social a:hover i {
    transform: none;
  }
}