/* =========================
   Kamloops Aerial Services
   Dark Cinematic Portfolio
   ========================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  background: linear-gradient(180deg, #0a0a0a, #1a1a1a);
  color: #f5f5f5;
  line-height: 1.6;
}

/* HEADER */
header {
  background: rgba(15, 15, 15, 0.95);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  border-bottom: 1px solid #333;
  position: sticky;
  top: 0;
  z-index: 100;
}

header h1 {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

nav a {
  color: #ddd;
  margin: 0 15px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover,
nav a.active {
  color: #66c0f4;
}

/* HERO SECTION */
.hero {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(180deg, #141414, #0d0d0d);
}

.hero h2 {
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 15px;
}

.hero p {
  color: #ccc;
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

/* BIO SECTION */
.bio {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}

.bio h3 {
  font-size: 1.8rem;
  color: #66c0f4;
  margin-bottom: 15px;
}

.bio p {
  color: #ccc;
  margin-bottom: 15px;
}

.bio ul {
  list-style: square;
  margin-left: 20px;
  color: #aaa;
}

/* GALLERY SECTION */
.gallery {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}

.gallery h3 {
  font-size: 1.8rem;
  color: #66c0f4;
  margin-bottom: 25px;
  text-align: center;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.image-grid img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  filter: brightness(80%);
  transition: all 0.4s ease;
}

.image-grid img:hover {
  filter: brightness(100%);
  transform: scale(1.05);
}

/* FOOTER */
footer {
  background: #0d0d0d;
  text-align: center;
  padding: 25px;
  border-top: 1px solid #333;
  color: #aaa;
}

footer a {
  color: #66c0f4;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* LIGHTBOX */
#lightbox {
  position: fixed;
  display: none;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
}

#lightbox.active {
  display: flex;
}

#lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 8px;
  border: 2px solid #555;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

html {
  scroll-behavior: smooth;
}


