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

:root {
  --primary-green: #1a5f3f;
  --emerald: #2d7a5b;
  --light-green: #4a9d7a;
  --accent-gold: #d4af37;
  --cream: #fdfbf7;
  --stone: #e8e4dd;
  --dark-text: #1a2e1a;
  --shadow: rgba(26, 95, 63, 0.15);
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: 
    linear-gradient(135deg, rgba(15, 61, 42, 0.65) 0%, rgba(26, 95, 63, 0.60) 50%, rgba(45, 122, 91, 0.70) 100%),
    url('garden-background.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: var(--cream);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('leaf-overlay.png');
  background-size: 800px;
  background-position: top right;
  background-repeat: no-repeat;
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
}

/* Animated particles background */
.particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  pointer-events: none;
  animation: float linear infinite;
}

@keyframes float {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.3;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}

/* Main container */
.container {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

/* Logo section */
.logo-container {
  text-align: center;
  margin-bottom: 2rem;
  animation: fadeInDown 1s ease-out;
}

.logo {
  width: 280px;
  height: auto;
  max-height: 220px;
  object-fit: contain;
  background: white;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: pulse 3s ease-in-out infinite;
  margin-bottom: 1.5rem;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.brand-name {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--cream) 0%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

/* Main content */
.main-content {
  text-align: center;
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.coming-soon {
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 0.6);
}

.tagline {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.7), 0 1px 3px rgba(0, 0, 0, 0.5);
}

.description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 1px 3px rgba(0, 0, 0, 0.6);
}

/* Contact section */
.contact-section {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease-out 0.6s both;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  border-color: var(--accent-gold);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--emerald), var(--light-green));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.contact-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
}

.contact-value {
  font-size: 1.1rem;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-value:hover {
  color: var(--accent-gold);
}

/* Services preview */
.services-preview {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease-out 0.9s both;
  flex-wrap: wrap;
  justify-content: center;
}

.service-badge {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  color: rgba(255, 255, 255, 1);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.service-badge:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
  border-color: var(--accent-gold);
}

.service-badge .icon {
  font-size: 1.3rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Footer */
.footer {
  margin-top: auto;
  text-align: center;
  padding: 2rem 0;
  color: #ffffff;
  font-size: 1rem;
  animation: fadeIn 1s ease-out 1.2s both;
  text-shadow: 
    0 3px 10px rgba(0, 0, 0, 0.9),
    0 1px 3px rgba(0, 0, 0, 0.8),
    0 0 20px rgba(0, 0, 0, 0.5);
}

.footer-content {
  margin-bottom: 1rem;
}

.footer p {
  margin: 0.3rem 0;
}

.footer-credit {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.95);
  margin-top: 0.5rem;
  text-shadow: 
    0 2px 8px rgba(0, 0, 0, 0.9),
    0 1px 3px rgba(0, 0, 0, 0.8);
}

.footer-credit a {
  color: var(--accent-gold);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  text-shadow: 
    0 2px 8px rgba(0, 0, 0, 0.9),
    0 1px 3px rgba(0, 0, 0, 0.8),
    0 0 15px rgba(212, 175, 55, 0.3);
}

.footer-credit a:hover {
  color: #fff;
  text-shadow: 
    0 0 20px var(--accent-gold),
    0 0 10px var(--accent-gold),
    0 2px 8px rgba(0, 0, 0, 0.9);
}


.leaf-accent {
  font-size: 2rem;
  margin-top: 1rem;
  animation: sway 3s ease-in-out infinite;
  display: inline-block;
}

@keyframes sway {
  0%,
  100% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(5deg);
  }
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive design */
@media (max-width: 768px) {
  .brand-name {
    font-size: 2rem;
  }

  .coming-soon {
    font-size: 2.5rem;
  }

  .tagline {
    font-size: 1.1rem;
    letter-spacing: 2px;
  }

  .description {
    font-size: 1rem;
  }

  .contact-section {
    flex-direction: column;
    gap: 1rem;
  }

  .contact-card {
    width: 100%;
    max-width: 350px;
  }

  .services-preview {
    gap: 0.75rem;
  }

  .service-badge {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
  }

  .logo {
    width: 180px;
    max-height: 150px;
  }
}

@media (max-width: 480px) {
  .coming-soon {
    font-size: 2rem;
  }

  .brand-name {
    font-size: 1.5rem;
  }

  .container {
    padding: 1.5rem;
  }

  .logo {
    width: 140px;
    max-height: 120px;
  }
}
