/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* ================= BODY ================= */
body {
  background-color: #f5f5f5;
  color: #1f1f1f;
}

/* ================= HEADER ================= */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #0a0a0a;
}

.gallery-bg {
  position: relative;
  min-height: 85vh;
  background-image: url("https://i.ibb.co/0Rn4PJkR/Chat-GPT-Image-Jan-14-2026-06-04-07-PM.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 0 8%;
}
/* ================= NAVBAR ================= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 8%;
  background-color: #1f1f1f;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: #f5f5f5;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links .active {
  color: #ef233c;
}

.about {
  padding: 90px 8%;
  text-align: center;   /* CENTERS ALL TEXT + BUTTON */
}

.about h2 {
  margin-bottom: 20px;
}

.about p {
  max-width: 700px;
  margin: 0 auto 30px;  /* centers paragraph + adds space */
  line-height: 1.8;
}

/* ================= BUTTON ================= */
.btn-primary {
  background-color: #b40421;
  color: #f5f5f5;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: #ef233c;
}

.btn-four {
  display: inline-block;          /* IMPORTANT for margin to work */
  margin-top: px;               /* space above button */

  background-color: #b40421;
  color: #f5f5f5;

  padding: 12px 32px;
  border-radius: 30px;

  text-decoration: none;
  font-size: 15px;
  font-weight: 500;

  transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Hover effect */
.btn-four:hover {
  background-color: #ef233c;
  transform: translateY(-2px);
}

/* ================= HERO ================= */
.gallery-hero {
  min-height: 60vh;
}

.hero-bg {
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 0 8%;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.65);
}

.hero-content {
  position: relative;
  max-width: 650px;
  color: #f5f5f5;
}

.hero-content h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

.hero-content p {
  font-size: 15px;
  color: #d3d3d3;
  line-height: 1.8;
}

/* ================= GALLERY ================= */
.gallery {
  padding: 90px 8%;
  text-align: center;
}

.gallery h2 {
  font-size: 34px;
  margin-bottom: 55px;
}

/* GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* ITEM */
.gallery-item {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
}

.gallery-item:hover {
  transform: translateY(-8px);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* ================= LIGHTBOX ================= */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 40px;
  font-size: 38px;
  color: #ffffff;
  cursor: pointer;
}

/* ================= FOOTER ================= */
.footer {
  background-color: #0a0a0a;
  color: #f5f5f5;
  padding: 30px;
  text-align: center;
  font-size: 13px;
  margin-top: 80px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .hero-content h1 {
    font-size: 32px;
  }

  .nav-links {
    display: none;
  }
}
