@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --bg-color: #ffffff;
  --text-dark: #073a24; /* Forest green from logo text */
  --text-muted: #4b5563;
  --accent-gold: #c2911b; /* Gold/Ochre from logo */
  --accent-blue: #0c58a6; /* Deep blue from logo wave */
  --accent-green: #0d5c2c; /* Grass green from logo */
  
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-dark);
  font-family: var(--font-body);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

/* Subtle background accent glow */
body::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(12, 88, 166, 0.03) 0%, rgba(13, 92, 44, 0.02) 50%, rgba(255, 255, 255, 0) 70%);
  z-index: 0;
  pointer-events: none;
}

.container {
  width: 100%;
  max-width: 600px;
  padding: 2rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Logo Presentation */
.logo-container {
  margin-bottom: 3rem;
  animation: logoAppear 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.logo-wrapper {
  max-width: 320px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.logo-wrapper:hover {
  transform: scale(1.03);
}

.logo {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Announcement Content */
.content {
  opacity: 0;
  transform: translateY(20px);
  animation: contentAppear 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.badge {
  display: inline-block;
  color: var(--accent-gold);
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

/* Minimalist border line matching the logo colors */
.badge::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 25%;
  width: 50%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-blue));
  border-radius: 2px;
}

.company-name {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  line-height: 1.4;
  margin-top: 1rem;
  max-width: 480px;
}

/* Keyframes */
@keyframes logoAppear {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(-10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

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

/* Footer Copyright */
.footer {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.8rem;
  color: #9ca3af;
  letter-spacing: 0.05em;
  font-family: var(--font-body);
  opacity: 0;
  animation: contentAppear 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

/* Mobile responsive scaling */
@media (max-width: 480px) {
  .logo-wrapper {
    max-width: 250px;
  }
  .badge {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
  }
  .company-name {
    font-size: 1.15rem;
  }
  .footer {
    font-size: 0.75rem;
    bottom: 1.5rem;
  }
}
