/* ===== GLOBAL IMPORTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Anybody:wght@400;600;800&display=swap');

/* ===== ROOT VARIABLES ===== */
:root {
  --hero-height: 60vh;
  --accent: #00bcd4;
  --dark-bg: #111;
  --light-bg: #fff;
  --grey-bg: #f8fafc;
  --text-dark: #222;
  --text-light: #fff;
}

/* ===== GLOBAL STYLES ===== */
body {
  margin: 0;
  font-family: 'Anybody', sans-serif;
  background: var(--dark-bg);
  color: var(--text-light);
  overflow-x: hidden;
}

h1, h2, h3, h4, p { margin: 0; }

/* ===== BUTTON ===== */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  color: #0f0f0fdb;
  padding: 14px 36px;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1em;
  margin-top: 20px;
  border: 2px solid #124b5f;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}
.btn:hover {
  background: #124b5f;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

/* ===== SOCIAL ICONS ===== */
.socials {
  margin-top: 40px;
  display: flex;
  gap: 20px;
}
.socials a {
  width: 50px; height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  color: #0f0f0fdb;
  border-radius: 50%;
  font-size: 1.5em;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.socials a:hover {
  background: #124b5f;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

/* ===== SOFTWARE LOGOS ===== */
.software-logos {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin: 60px auto 0;
  padding: 0 5%;
  max-width: 1200px;
}
.software-logos img {
  height: 60px;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.software-logos img:hover { transform: scale(1.1); }


html {
  scroll-behavior: smooth;
}

/* Generic fade-in section animation */
.fade-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* When the section is in view */
.fade-section.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Optional: subtle image hover like a “breathing” motion */
.motion-image {
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.motion-image:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}


/* ===== GLOBAL RESPONSIVE ===== */
@media (max-width: 950px) {
  .software-logos { justify-content: center; gap: 25px; padding: 0 10%; }
  .software-logos img { height: 50px; }
}
