/* -------------------- GLOBAL -------------------- */
:root {
  --accent: #3aff7a;
  --accent2: #2ea85e;
  --text: #e8f5e1;
  --muted: #9bb8a3;
}

body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background: url('assets/jungle-bg.jpg') center/cover fixed no-repeat;
  color: var(--text);
  animation: fadeIn 1.2s ease forwards;
}

/* Fade-In Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Parallax Scroll */
body {
  background-attachment: fixed;
}

/* -------------------- HEADER -------------------- */
header {
  background: rgba(0,0,0,0.55);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--accent2);
  backdrop-filter: blur(4px);
  animation: slideDown 0.8s ease forwards;
}

@keyframes slideDown {
  from { transform: translateY(-40px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

header img {
  height: 70px;
  border-radius: 10px;
  border: 2px solid var(--accent2);
  animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}

/* -------------------- NAVIGATION -------------------- */
nav a {
  margin-left: 18px;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: 0.25s;
  position: relative;
}

nav a:hover {
  color: var(--accent);
  transform: scale(1.1);
}

/* Underline Animation */
nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent);
  transition: 0.3s;
}

nav a:hover::after {
  width: 100%;
}

/* -------------------- SECTIONS -------------------- */
section {
  background: rgba(0,0,0,0.55);
  margin: 40px auto;
  padding: 30px;
  width: 85%;
  border-radius: 12px;
  border: 1px solid var(--accent2);
  backdrop-filter: blur(3px);
  animation: fadeIn 1s ease forwards;
}

/* -------------------- BUTTONS -------------------- */
.btn {
  display: inline-block;
  padding: 12px 20px;
  background: var(--accent2);
  color: #000;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.2s;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(46,168,94,0.5);
}

.btn:hover {
  background: var(--accent);
  transform: scale(1.12) rotate(-1deg);
  box-shadow: 0 0 25px rgba(46,168,94,0.9);
}

.btn:active {
  transform: scale(0.9) rotate(1deg);
}

/* -------------------- COPY BUTTON -------------------- */
.copy-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,0,0,0.4);
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--accent2);
  width: fit-content;
}

.copy-btn {
  background: var(--accent2);
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.15s;
}

.copy-btn:hover {
  background: var(--accent);
  transform: scale(1.1);
}

.copy-btn:active {
  transform: scale(0.9);
}

/* -------------------- GALLERY -------------------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}

.gallery img {
  width: 100%;
  border-radius: 10px;
  border: 2px solid var(--accent2);
  transition: 0.3s;
}

.gallery img:hover {
  transform: scale(1.08);
  filter: brightness(1.25);
  box-shadow: 0 0 20px rgba(0,0,0,0.7);
}

/* -------------------- VIDEOS -------------------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
}

.video-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 2px solid var(--accent2);
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
  transition: 0.35s;
}

.video-wrapper:hover {
  transform: scale(1.05);
  box-shadow: 0 0 35px rgba(46,168,94,0.8);
  filter: brightness(1.15);
}

.video-wrapper video {
  width: 100%;
  border-radius: 12px;
}

/* -------------------- TEAM -------------------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}

.team-card {
  background: rgba(0,0,0,0.45);
  padding: 15px;
  border-radius: 10px;
  border: 1px solid var(--accent2);
}
