/* style.css for Windborne Cheetah Website */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom, #000000, #1c1c1c);
  color: #fffbe6;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

header {
  background: linear-gradient(90deg, #ffcc00, #ff8800);
  color: black;
  text-align: center;
  padding: 60px 20px;
  animation: fadeInDown 1s ease-out;
  position: relative;
}

header img {
  width: 100px;
  position: absolute;
  top: 20px;
  left: 20px;
  animation: floatLogo 3s ease-in-out infinite;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-50px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

nav {
  background-color: #111;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

nav a {
  color: #ffd700;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

nav a:hover {
  background: #ffd700;
  color: #111;
}

section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
  animation: fadeUp 1s ease-out;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

h2 {
  color: #ffcc00;
  border-bottom: 3px solid #ff8800;
  display: inline-block;
  margin-bottom: 20px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.member {
  background: #1a1a1a;
  border: 2px solid #ff8800;
  border-radius: 12px;
  text-align: center;
  padding: 25px;
  box-shadow: 0 8px 16px rgba(255, 200, 0, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.member:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(255, 200, 0, 0.4);
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
}

.gallery img {
  width: 100%;
  max-width: 320px;
  border-radius: 10px;
  border: 3px solid #ffd700;
  transition: transform 0.4s ease;
}

.gallery img:hover {
  transform: scale(1.07);
}

footer {
  background-color: #111;
  color: #ffd700;
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
}

a {
  color: #ffa500;
}

a:hover {
  color: #111;
  background-color: #ffd700;
  padding: 2px 6px;
  border-radius: 4px;
}
