/* Toss-style custom CSS for Marigold theme */
:root {
  --toss-blue: #0064ff;
  --toss-light-blue: #e8f3ff;
  --toss-dark-blue: #0052cc;
  --toss-yellow: #ffcc00;
  --toss-green: #00bf63;
  --toss-red: #ff4d4d;
  --toss-purple: #6a5dfd;
  --toss-gray-100: #f9f9f9;
  --toss-gray-200: #f0f0f0;
  --toss-gray-300: #e0e0e0;
  --toss-gray-400: #c2c2c2;
  --toss-gray-500: #999999;
  --toss-gray-600: #666666;
  --toss-gray-700: #444444;
  --toss-gray-800: #333333;
  --toss-gray-900: #1a1a1a;
  --toss-black: #000000;
  --toss-white: #ffffff;
}

/* Floating background shapes */
.floating-shapes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 15s infinite linear;
}

.floating-shape:nth-child(1) {
  width: 100px;
  height: 100px;
  background-color: var(--toss-blue);
  top: 10%;
  left: 20%;
  animation-duration: 20s;
}

.floating-shape:nth-child(2) {
  width: 150px;
  height: 150px;
  background-color: var(--toss-green);
  top: 70%;
  left: 80%;
  animation-duration: 25s;
  animation-direction: reverse;
}

.floating-shape:nth-child(3) {
  width: 80px;
  height: 80px;
  background-color: var(--toss-yellow);
  top: 40%;
  left: 70%;
  animation-duration: 15s;
}

.floating-shape:nth-child(4) {
  width: 120px;
  height: 120px;
  background-color: var(--toss-purple);
  top: 80%;
  left: 10%;
  animation-duration: 30s;
  animation-direction: reverse;
}

@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(20px, 20px) rotate(90deg);
  }
  50% {
    transform: translate(40px, 0) rotate(180deg);
  }
  75% {
    transform: translate(20px, -20px) rotate(270deg);
  }
  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}

/* Navigation bar */
.toss-navbar {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--toss-gray-200);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.toss-navbar .nav-link {
  color: var(--toss-gray-800);
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}

.toss-navbar .nav-link:hover,
.toss-navbar .nav-link.active {
  color: var(--toss-blue);
  background-color: var(--toss-light-blue);
}

/* Hero section */
.hero-section {
  padding: 4rem 0;
  text-align: center;
  background: linear-gradient(135deg, var(--toss-light-blue) 0%, var(--toss-white) 50%, var(--toss-gray-100) 100%);
  position: relative;
  overflow: hidden;
}

.hero-title {
  font-size: 3rem;
  font-weight: 900;
  color: var(--toss-black);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--toss-gray-800);
  margin-bottom: 1rem;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--toss-gray-600);
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Feature cards */
.feature-card {
  border-radius: 1rem;
  padding: 2rem;
  background-color: var(--toss-white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  border: 1px solid var(--toss-gray-200);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.feature-title {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--toss-gray-900);
}

.feature-description {
  color: var(--toss-gray-600);
  font-size: 0.95rem;
}

/* App buttons */
.app-button {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid var(--toss-gray-300);
  background-color: var(--toss-white);
  color: var(--toss-gray-900);
  margin: 0.5rem;
}

.app-button:hover {
  background-color: var(--toss-gray-100);
  border-color: var(--toss-gray-400);
}

.app-button i {
  font-size: 1.5rem;
  margin-right: 0.75rem;
}

/* Site info section */
.site-info {
  background-color: var(--toss-gray-100);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-top: 2rem;
}

/* Footer */
.toss-footer {
  background-color: var(--toss-gray-900);
  color: var(--toss-white);
  padding: 3rem 0 2rem;
}

.footer-title {
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--toss-gray-700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.footer-link {
  color: var(--toss-gray-400);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--toss-white);
}

.copyright {
  border-top: 1px solid var(--toss-gray-700);
  padding-top: 1.5rem;
  text-align: center;
  color: var(--toss-gray-500);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .feature-card {
    padding: 1.5rem;
  }
  
  .app-button {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}
