/* Custom CSS */

/* Base Styles */
:root {
  --primary-color: #3b82f6;
  --secondary-color: #1e293b;
  --text-color: #334155;
  --light-bg: #f9fafb;
  --dark-bg: #1f2937;
}

html, body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

body {
  color: var(--text-color);
  transition: all 0.3s ease;
  background-image: url('../assets/img/bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
}

#app {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100vh;
}

/* Animation Classes */
.animate-element {
  opacity: 0;
  transform: translateY(20px);
}

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo */
.footer-logo {
  width: 100%;
  object-fit: contain;
  padding: 0 20px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .footer-logo {
    padding: 0 10px;
  }
} 