* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  /* Adjust to your navbar height */
}

:root {
  --background: #0d1119;
  --background-secondary: #151924;
  --background-dark: #000000;
  --div-bg: #1c1f27;
  --tab-bg: #282b33;
  --text-color: #ffffff;
  --offwhite: #b1b0b0;
  --accent-primary: #078d70;
  --accent-secondary: rgba(7, 141, 112, 0.35);
  --max-width: 1190px;
--gradient: linear-gradient(90deg, var(--accent-primary), #8c00ff);
  --gay-gradient: linear-gradient(to right, #078d70, #26ceaa, #98e8c1, #ffffff, #7bade2, #5049cc, #3d1a78);
}

::-webkit-scrollbar {
  display: none;
}

html {
  background: var(--background);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--text-color);
}

a {
  color: var(--text-color);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

section {
  padding: 4rem 0;
}

.category {
  text-transform: uppercase;
  font-weight: 900;
}


.navbar {
  width: 100%;
  background: rgba(13, 17, 25, 0.7);
  backdrop-filter: blur(5px);
  padding: 20px 30px;
  position: sticky;
  top: 0;
  z-index: 9999;
  border-bottom: 3px solid var(--background-secondary);
  transition: background 0.3s ease, border-bottom 0.3s ease;
}

/* When at top of page */
.navbar.top {
  background: transparent;
  border-bottom: none;
}


.navbar .navbar-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo img {
  max-height: 50px;
}

.logo h3 {
  font-size: 25px;
  font-weight: 900;
  color: var(--text-color);
  text-transform: uppercase;
}

.logo h3 span {
  background: var(--gay-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-clip: text;
  color: transparent;
}


.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 25px;
  color: var(--text-color);
  cursor: pointer;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.links {
  display: flex;
  gap: 30px;
}

.link {
  color: var(--text-color);
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s;
  text-transform: uppercase;
}

.link i,
.btn i {
  display: none;
}

.link.active,
.link:hover {
  color: var(--accent-primary);
  ;
}

.buttons {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 10px 20px;
  background: var(--accent-primary);
  color: var(--text-color);
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  text-decoration: none;
  text-transform: uppercase;
}


.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}

.hero-text h1 {
  font-size: 3rem;
  color: var(--text-color);
}

.socials-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.socials {
  display: flex;
  gap: 1.5rem;
  font-size: 1.8rem;
}

/* Different color or style for main vs secondary */
.main-socials a {
  color: var(--accent-primary);
  transition: color 0.3s ease;
}



.secondary-socials a {
  color: var(--accent-secondary, #6c757d);
  transition: color 0.3s ease;
}

.secondary-socials a:hover {
  color: #495057;
}


.pfp {
  max-width: 100%;
  border-radius: 50%;
  width: 420px;
  height: auto;
}

.about-container {
  gap: 20px;
}

.about-container h1 {

  margin-bottom: 25px;
}

.about-container p {
  font-size: 19px;
}

.counter-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--div-bg);
  border: 2px solid var(--tab-bg);
  padding: 1rem;
  border-radius: 10px;
  text-align: left;
}

.counter-text {
  display: flex;
  flex-direction: column;
}

.counter-title {
  font-size: 1rem;
  opacity: 0.8;
}

.counter-number {
  font-size: 1.6rem;
  font-weight: bold;
}

.counter-icon {
  font-size: 2rem;
  color: var(--main-color);
  /* optional */
}
.fursona-divider {
  display: none; /* hidden by default */
  border: none;
  height: 0;
  margin: 2rem 0;
  position: relative;
}

.progress-box {
  background: var(--div-bg);
  border: 2px solid var(--tab-bg);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: 0.3s ease-in-out;
  margin-bottom: 1rem;
}

.progress-label {
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.progress {
  background: var(--tab-bg);
  border-radius: 1rem;
  overflow: hidden;
  height: 24px;
  position: relative;
}

.progress-bar {
  height: 100%;
  background: var(--gay-gradient);
  width: 70%;
  transition: width 0.6s ease;
  border-radius: 1rem 0 0 1rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 0.5rem;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  transition: width 1.2s ease-in-out;
}


.project,
.contact-box {
  background: var(--div-bg);
  padding: 1rem;
  border-radius: 1rem;
}

.project,
.service {
  background: var(--div-bg);
  padding: 1rem;
  border-radius: 1rem;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project:hover,
.service:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.project-img {
  width: 100%;
  border-radius: 0.75rem;
  margin-bottom: 0.75rem;
  object-fit: cover;
  max-height: 180px;
}

.project h3,
.service h3 {
  color: var(--text-color);
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.project p,
.service p {
  font-size: 0.95rem;
  color: var(--text-color);
}

/* Updated Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}

.contact-card {
  background-color: var(--tab-bg, #1e1e2f);
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact-card:hover {
  transform: translateY(-5px);
  background-color: var(--accent-secondary);
}
.contact-card:hover .value {
  color: var(--accent-primary);
}
.icon-wrapper {
  font-size: 2.2rem;
  color: var(--accent-primary, #00ffff);
  flex-shrink: 0;
}

.info-wrapper {
  display: flex;
  flex-direction: column;
}

.label {
  font-size: 0.85rem;
  color: #aaa;
}

.value {
  font-size: 1.15rem;
  font-weight: 600;
  color: white;
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}


footer {
  position: relative;
  padding: 3rem 1rem 2rem;
  text-align: center;
  overflow: hidden;
  color: white;
  font-family: 'Segoe UI', sans-serif;
}

.footer-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('path-to-footer-image.jpg'); /* Replace with your image */
  background-size: cover;
  background-position: center;
  opacity: 0.8;
  z-index: -1;
}


.footer-content {
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.lgbtq-pride {
  margin-top: 1rem;
  font-weight: bold;
  font-size: 1.1rem;
}
.lgbtq-pride img {
  width: 100px;
  height: auto;
  border-radius: 10px;
}
.footer-links {
  margin-top: 1.2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-primary);
  text-decoration: underline;
}


@media screen and (max-width: 867px) {
  .hamburger {
    display: block;
  }

  .navbar-menu {
    flex-direction: column;
    width: 100%;
    gap: 15px;
    margin-top: 15px;
    display: none;
  }

  .navbar.active .navbar-menu {
    display: flex;
  }

  .links {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .logo img {
    max-height: 40px;
  }

  .logo h3 {
    font-size: 20px;
    font-weight: 900;
    color: var(--text-color);
    text-transform: uppercase;
  }
}


@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .grid-3 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
.contact-grid {
     grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .hero .pfp {
    display: none;
  }

  .hero-text h1 {
    font-size: 2rem;
    text-align: center;
  }

  .socials {
    justify-content: center;
    font-size: 1.4rem;
  }

  .socials-wrapper {
    gap: 0.5rem;
  }

  .pfp {
    width: 180px;
    height: auto;
    margin: 0 auto;
    display: block;
  }

  .counter {
    padding: 0.75rem;
  }

  .progress {
    height: 18px;
  }

  .progress-bar {
    font-size: 0.7rem;
    padding-right: 0.3rem;
  }

  .project,
  .contact-box {
    padding: 0.75rem;
  }

  footer {
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 600px) {
  .category {
    margin-bottom: 10px;
  background: var(--gay-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-clip: text;
  color: transparent;
  }
}

@media (max-width: 768px) {
  .fursona-divider {
    display: block;
    height: 5px;
    background: var(--gay-gradient);
    border-radius: 3px;
    position: relative;
  }
}