@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

:root {
  --font-heading: 'Poppins', sans-serif;
  --font-paragraph: 'Inter', sans-serif;

  --bg: #0C0C0D;
  --card: #18181B;

  --text: #F5F5F5;
  --text-light: #A1A1AA;

  --accent: #3F82F7;
  --accent-hover: #5B9CFF;

  --border: #27272A;
}

body {
  width: 100vw;
  background-color: var(--bg);
  overflow-x: hidden;
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 9;
  /* background: rgba(255, 255, 255, 0.08); */
/* border-radius: 16px; */
/* box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); */
backdrop-filter: blur(5.4px);
-webkit-backdrop-filter: blur(2.4px);
transition: ease-in-out 0.2s;
}

.logo {
  display: flex;
  align-items: end;
}

.logo h6 {
  font-family: var(--font-heading);
  margin-bottom: 5px;
  letter-spacing: 2px;
  color: var(--text);
  font-size: 1.3rem;
}

nav img {
  width: 40px;
}

/* DROPDOWN */
#categorySelect {
  padding: 10px 20px;
  font-family: var(--font-paragraph);
  border-radius: 6px;
  background-color: var(--card);
  color: var(--text);
  border: 1px solid var(--border);
  outline: none;
  cursor: pointer;
}

#categorySelect:hover {
  border-color: #666;
}

option {
  border-radius: 2px;
}

/* HERO */
.hero {
  width: 100%;
  padding: 7% 5% 5% 5%;
  position: relative;
}

.hero h1 {
  color: var(--text);
  font-family: var(--font-heading);
  text-transform: capitalize;
  margin-bottom: 30px;
  font-size: 3rem;
  font-weight: 600;
}

.hero p {
  color: var(--text-light);
  font-family: var(--font-paragraph);
  font-size: 1.2rem;
  line-height: 1.5;
}

.hero a {
  position: absolute;
  bottom: 7%;
  right: 5%;
}

.ctaBtn {
  background: linear-gradient(60deg, #EA580C, #F05252);
  padding: 10px 20px;
  font-family: var(--font-paragraph);
  text-decoration: none;
  color: var(--text);
  font-size: 1.2rem;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
}

.ctaBtn:hover {
  background: linear-gradient(60deg, #F05252, #EA580C);
}

.ctaBtn i {
  font-size: 1.5rem;
  display: inline-block;
  transition: 0.2s ease-in-out;
}

.ctaBtn:hover .ctaBtnIcon {
  transform: rotate(90deg);
}

/* ===================== Gallery ===================== */
.gallery {
  width: 90%;
  max-width: 1300px;
  margin: 120px auto 0 auto;
}

.gallery-title {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 50px;
  font-family: var(--font-heading);
  color: var(--text);
  border-top: 1px solid;
  border-color: var(--border);
  padding-top: 10px;
}

.masonry {
  column-count: 4;
  column-gap: 15px;
}

.card {
  width: 100%;
  margin-bottom: 15px;
  overflow: hidden;
  border-radius: 14px;
  break-inside: avoid;
  position: relative;
  cursor: pointer;

  opacity: 1;
  transform: translateY(50px);
  transition: transform .25s ease, box-shadow .25s ease;
}

.card img {
  width: 100%;
  display: block;
  border-radius: 14px;
  transition: transform .30s ease;
}

/* Hover Effect */
.card:hover {
  /* transform: translateY(-1px); */
  box-shadow: 0 5px 20px rgba(0,0,0,0.25);
}

.card:hover img {
  transform: scale(1.05);
}

/* Load More Button */
.loadMoreBtn {
  background: #18181B;
  color: var(--text);
  padding: 12px 30px;
  font-family: var(--font-paragraph);
  font-size: 1.1rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: block;
  margin: 100px auto 80px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.loadMoreBtn:hover {
  background: var(--accent);
  border-color: var(--accent);
}

/* Responsive */
@media (max-width: 1024px) {
  .masonry { column-count: 3; }
}

@media (max-width: 768px) {
  .masonry { column-count: 2; }
}

@media (max-width: 480px) {
  .masonry { column-count: 2; }
}


/* Lightbox Styles */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  flex-direction: column;
}

.lightbox-img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 3rem;
  color: #fff;
  cursor: pointer;
}

.lightbox-download {
  margin-top: 20px;
  padding: 12px 25px;
  font-size: 1.2rem;
  border: none;
  border-radius: 8px;
  background: #3F82F7;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.lightbox-download:hover {
  background: #5B9CFF;
}

/* Download Toast */
.download-toast {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: #3F82F7;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 9999;
  font-family: var(--font-heading);
}

.download-toast.show {
  opacity: 1;
  pointer-events: auto;
}

.rightFooter{
  display: flex;
  flex-direction: column;
  justify-content: start;
}

.site-footer {
  background-color: var(--card);
  color: var(--text-light);
  padding: 40px 5%;
  font-family: var(--font-paragraph);
  text-align: center;
}

.footer-container {
  margin-bottom: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.footer-logo img {
  width: 80px;
}

.footer-logo h6 {
  font-family: var(--font-heading);
  color: var(--text);
  font-size: 2rem;
  margin-top: 30px;
  letter-spacing: 1.5px;
}

.footer-tagline {
  font-size: 0.95rem;
  margin-bottom: 15px;
  color: var(--text-light);
  font-family: var(--font-heading);
  text-align: start;
}



.developer-info p {
  margin: 5px 0;
  font-size: 0.9rem;
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
}

.highLight{
  font-size: 1.2rem;
  font-family: var(--font-heading);
  font-weight: 500;
  margin-bottom: 20px;
}

.developer-info a {
  color: var(--accent);
  text-decoration: none;
  font-family: var(--font-heading);
  margin-left: 7px;
}

.developer-info a:hover {
  text-decoration: underline;
}

.footer-bottom {
  font-size: 0.85rem;
  color: var(--text-light);
  border-top: 1px solid var(--border);
  padding-top: 15px;
  font-family: var(--font-heading);
}


.pages{
  display: flex;
  gap: 20px;
  padding: 10px;
}

.pages a{
  text-decoration: none;
  color: var(--accent);
  font-family: var(--font-paragraph);
  font-size: 0.9rem;
}


.ad-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 40px 0; /* Space above and below ad */
}

.ad-container ins {
    display: inline-block !important;
    text-align: center;
}



.category-description {
  width: 100%;
  padding: 1% 8%;
  border-radius: 12px;
  text-align: center;
  color: #fff;
  line-height: 1.6;
  margin-top: 100px;
}

.category-description h2 {
  margin-bottom: 30px;
  padding-top: 1.5%;
  font-size: 2.1rem;
  color: var(--text);
  text-align: start;
  font-family: var(--font-heading);
  letter-spacing: 1px;
  font-weight: 600;
  border-top: 1px solid;
  border-color: var(--border);
}

.category-description p {
  margin-bottom: 10px;
  font-size: 1rem;
  color: var(--text-light);
  text-align: start;
  font-family: var(--font-paragraph);
}

.category-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.category-buttons button {
  padding: 10px 18px;
  border-radius: 8px;
  border: none;
  background: #1e1e1e;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.category-buttons button:hover {
  background: #00ffc8;
  color: #000;
}

/* Responsive */
@media (max-width: 600px) {
.category-description{
  padding: 1% 5%;
}

  .category-description h2 {
    font-size: 1.5rem;
  }
  .category-description p {
    font-size: 0.7rem;
  }
}



.about-section {
  width: 100%;
  padding: 1% 8%;
  margin-top: 50px;
  margin-bottom: 100px;
}

.about-container {
  line-height: 1.7;
}

.about-section h2 {
  border-top: 1px solid #2a2a2a;
  font-size: 2.5rem;
  font-weight: 600;
  text-align: start;
  margin-bottom: 25px;
  color: var(--text);
  font-family: var(--font-heading);
}

.about-section h3 {
  margin-top: 30px;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text);
  font-family: var(--font-heading);
}

.about-section p {
  font-size: 1.05rem;
  opacity: 1;
  margin-top: 12px;
  color: var(--text-light);
  font-family: var(--font-paragraph);
}

.about-section ul {
  margin-top: 15px;
  padding-left: 20px;
}

.about-section ul li {
  margin-bottom: 10px;
  font-size: 1.05rem;
  opacity: 1;
  color: var(--text-light);
  font-family: var(--font-paragraph);
}

/* Responsive */
@media (max-width: 768px) {
.about-section{
  padding: 1% 5%;

}

  .about-section h2 {
    font-size: 1.5rem;
  }
  .about-section h3 {
    font-size: 0.9rem;
  }
  .about-section p, 
  .about-section ul li {
    font-size: 0.7rem;
  }
}
