:root {
  --bg-dark: #ffffff;
  --text-light: #030303;
  --accent: #0ec2cf;
  --card-bg: #32bdcf;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
}

/* NAVBAR */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #000a29;
  color: white;
  z-index: 1000;
  border-bottom: 1px solid #222;
}

.nav {
  max-width: 1200px;
  margin: auto;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  letter-spacing: 3px;
  font-weight: bold;
}

.logo-img {
  width: 100px;
  height: 100px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  font-size: 0.65rem;
  letter-spacing: 1px;
}

.menu {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.menu a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
}

.menu a:hover {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
}

/* SECTIONS */
section {
  max-width: 1200px;
  margin: auto;
  padding: 6rem 1.5rem;
}

.hero {
  padding-top: 9rem;
  text-align: center;
}

h2{
  font-family: 'Times New Roman', Times, serif;
  font-size: large;
  color: #151515;
  text-align: center;

  background-color: rgba(12, 200, 224, 0.5)
}

#about{
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* TEAM CARDS */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.team-card {
  background: #32bdcf;
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

.team-card img {
  width: 100%;
  max-width: 120px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.hero h1 {
  letter-spacing: 4px;
  font-size: 2.6rem;
}

.hero p {
  color: #aaa;
  margin-top: 0.5rem;
}

.placeholder {
  height: 260px;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8a8989;
  border-radius: 6px;
}

 img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* GRID & CARDS */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.desc{
  text-align: center;
  margin-top: 0.8rem;
  font-size: 1.2em;
}
.card {
  background: var(--card-bg);
  padding: 1.5rem;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

.advantages {
  list-style: none;
  margin-top: 1.5rem;
}

.advantages li {
  margin-bottom: 0.8rem;
  color: #f0f0f0;
}

/* FORM */
form {
  max-width: 500px;
  margin-top: 2rem;
}

input, textarea {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1rem;
  background: #e6e6e6;
  border: 1px solid #333;
  color: white;
  border-radius: 4px;
}

button {
  background: var(--accent);
  border: none;
  padding: 0.8rem;
  width: 100%;
  cursor: pointer;
  font-weight: bold;
}

.form-message {
  margin-top: 1rem;
  font-size: 0.9rem;
}

.copyright {
  background: #000a29;
  color: white;
  bottom: 0;  
}
/* FOOTER */
.footer-grid{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  background: #000a29;
  color: white;
}

.footer-item {
  display: flex;
  flex: 1;
  width: 100%;
  align-items: center;
  gap: 10px;
  padding: 20px;
  margin: auto;
}

.footer-img {
  width: 30px;
  height: auto;
}

a:link {
  color: var(--accent);
  text-decoration: none;
}

a:visited {
  color: white;
}

a:hover {
  color: royalblue;
}

/* SCROLL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* PARALLAX HERO */
.parallax {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#progressBar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--accent);
  z-index: 2000;
}

/* PARTNERS SLIDER */
.partner-slider {
  overflow: hidden;
  margin-top: 2rem;
  position: relative;
}

.partner-track {
  display: flex;
  gap: 2rem;
  animation: slidePartners 20s linear infinite;
}

.partner {
  min-width: 180px;
  max-height: 200px;
  background: #1a1a1a;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  font-size: 0.85rem;
  flex-shrink: 0;
}

@keyframes slidePartners {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Optional: slightly larger on desktop */
@media (min-width: 1024px) {
  .logo-img {
    width: 48px;
    height: 48px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .menu {
    position: absolute;
    top: 70px;
    right: 0;
    background: #000a29;
    flex-direction: column;
    width: 220px;
    display: none;
    padding: 1rem;
  }

  .menu.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .parallax {
    background-attachment: scroll;
    width: fit-content;
    background-size: unset;
  }
  .footer-grid{
    width: 100%;
    flex-direction: column;
    align-items: center;
  }
}
