/* Highlight active nav link */
.nav a.nav-active {
  color: #fb1d5a;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: linear-gradient(180deg, #190057 0%, #3a256c 100%);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
  position: relative;
  cursor: url("/Assets/main_coursor.png") 0 0, auto;
}

body {
  display: flex;
  flex-direction: column;
}

/* The main content should expand and push footer down */
main {
  flex: 1;
}

.pink-blur,
.pink-stain {
  pointer-events: none; /* no click-blocking */
  position: absolute; /* tie them to viewport, not parents */
  top: 0;
  z-index: 0; /* stays behind header */
}

/* Left top pink blur */
.pink-blur {
  background: rgba(255, 173, 169, 0.5);
  border-radius: 50%;
  filter: blur(clamp(30px, 6vw, 67px));
  height: clamp(150px, 15vw, 230px);
  left: 0; /* flush to the left edge */
  width: clamp(150px, 15vw, 230px);
}

/* Right top pink stain */
.pink-stain {
  height: clamp(190px, 22vh, 310px);
  right: 0; /* flush to the right edge */
  width: clamp(130px, 20vw, 280px);
}

.pink-stain img {
  display: block;
  height: auto;
  width: 100%;
}

.main-container {
  margin: 0 auto;
  max-width: 1440px;
  min-height: 100vh;
  width: 100%;
}

.header {
  align-items: center;
  backdrop-filter: blur(20px);
  background: linear-gradient(
    90deg,
    rgba(25, 0, 87, 0.7) 0%,
    rgba(64, 40, 121, 0.7) 50.48%,
    rgba(25, 0, 87, 0.7) 100%
  );
  border: 1px solid #7d68b3;
  border-radius: 90px;
  box-shadow: 0 0 40px 0 rgba(125, 104, 179, 0.2);
  display: flex;
  height: 116px;
  justify-content: space-between;
  margin: 32px auto 80px auto;
  max-width: 1320px;
  padding: 0 60px;
  position: sticky;
  top: 32px;
  width: 95%;
  z-index: 1100;
}

.logo img {
  height: 64px;
}

.nav {
  display: flex;
  gap: 48px;
}

.nav a {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 800;
  text-decoration: none;
}

.nav a:hover {
  color: rgba(255, 173, 169, 1);
}

.nav a:focus {
  color: #fb1d5a;
}

.burger {
  background: none;
  border: none;
  cursor: pointer;
  display: none;
}

.mobile-menu {
  display: none;
}

.burger-icon {
  display: block;
}
.close-icon {
  display: none;
}
/* ===============================
   FOOTER — DESKTOP BASE
   =============================== */
.footer {
  align-items: center;
  background: #020b4b;
  box-sizing: border-box;
  display: flex;
  flex-shrink: 0;
  height: 132px;
  justify-content: center;
  left: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  position: relative;
  right: 50%;
  width: 100vw;
}

.footer-content {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  max-width: 1440px;
  padding: 0 80px;
  position: relative;
  width: 100%;
  z-index: 2;
}

.footer-left {
  align-items: center;
  display: flex;
  gap: 20px;
}

.footer-logo {
  align-items: center;
  display: flex;
}

.footer-text {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.footer-social {
  display: flex;
  gap: 40px;
}

.social-link {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  height: 40px;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
  width: 40px;
}

.social-link:hover {
  opacity: 0.8;
}

.create-together {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin: 12vh 0;
  box-sizing: border-box;
  max-width: 1440px;
  position: relative;
}

.create-content {
  max-width: 800px;
  text-align: left;
  z-index: 2;
}

.create-title {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.create-subtitle {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  margin-top: 16px;
}

.create-top-btn {
  align-items: center;
  background: rgba(27, 35, 92, 0.7);
  border-radius: 8px;
  bottom: 100px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  cursor: pointer;
  display: flex;
  flex-shrink: 0;
  height: 80px;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 100px;
  transition: opacity 0.3s ease, transform 0.3s ease;
  width: 80px;
  z-index: 1000;
}

.create-top-btn.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.bee-img {
  height: 321px;
  max-width: 387px;
}

.create-divider {
  background: linear-gradient(
    90deg,
    rgba(251, 29, 90, 0) 0%,
    #fb1d5a 50%,
    rgba(251, 29, 90, 0) 100%
  );
  height: 2px;
  margin: 0 auto 60px;
  opacity: 0.5;
  width: 100%;
}
/* New Main Content Styles */
.main-content {
  flex: 1;
  margin-left: 120px;
  margin-top: 80px;
}

.contact-header {
  color: #fff;
  font-family: Poppins;
  font-size: 72px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.contact-subheader {
  color: #fff;
  font-family: Inter;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-top: 24px;
  width: 1200px;
}

.contact-grid {
  display: grid;
  gap: 49px;
  grid-template-columns: repeat(3, 365px);
  margin-top: 40px;
}

.grid-bg {
  backdrop-filter: blur(17px);
  background: rgba(110, 118, 174, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  flex-shrink: 0;
  height: 130px;
  position: relative;
  width: 365px;
}

.grid-box {
  align-content: center;
  backdrop-filter: blur(17px);
  background: rgba(27, 35, 92, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  color: #fff;
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  font-size: 18px;
  font-weight: 500;
  gap: 12px;
  height: 130px;
  justify-content: flex-start;
  left: 10px;
  padding: 24px;
  position: absolute;
  text-align: left;
  top: 8px;
  width: 365px;
}

.grid-box > :nth-child(2) {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 800;
}

/* First two elements stay in first row */
.grid-box > :nth-child(1),
.grid-box > :nth-child(2) {
  flex-shrink: 0;
}

/* Last element takes full width on second row */
.grid-box > :nth-child(3) {
  color: white;
  flex-basis: 100%;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 500;
  margin-top: 12px;
  text-align: left; /* Changed from center to left */
  text-decoration-line: underline;
  text-decoration-skip-ink: auto;
  text-decoration-style: solid;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.contact-grid .grid-bg p {
  color: inherit; /* keeps text style consistent */
  pointer-events: none; /* optional → makes them non-clickable since they are not real links */
  text-decoration: none;
}

.contactusBee {
  bottom: 200px;
  height: 200px;
  opacity: 0.8;
  position: absolute;
  right: 100px;
  width: 200px;
  z-index: -1;
}

.create-top-btn {
  align-items: center;
  background: rgba(27, 35, 92, 0.7);
  border-radius: 8px;
  bottom: 100px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  cursor: pointer;
  display: flex;
  flex-shrink: 0;
  height: 80px;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 100px;
  transition: opacity 0.3s ease, transform 0.3s ease;
  width: 80px;
  z-index: 1000;
}

.create-top-btn.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.create-top-btn:hover {
  transform: scale(1.05);
}

/* Decorative elements */
.create-bee {
  bottom: -114%;
  position: absolute;
  right: 0;
  z-index: -1;
}

.create-bee img {
  height: auto;
  width: 100%;
}

.yellow-stain {
  bottom: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.yellow-stain img {
  height: auto;
  width: 100%;
}
