/* Hashtag Scholars site styles */
/* Base reset and globals */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
  
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "SF Pro Text", "Segoe UI", sans-serif;
  background-color: #dacfc2;
  color: #f5f5f5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Serif Display", serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: block;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

.main {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}


/* Navbar */
.navbar {
  border-bottom: none;
  padding: 0.9rem 3vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: sticky;
  top: 0;
  z-index: 10;
  background: #dacfc2;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.navbar__logo {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  object-fit: contain;
  border: 1px solid #ffffff33;
  background: #111;
}

.navbar__title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #000000;
  font-family: "Noto Serif Display", serif;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.nav__link {
  position: relative;
  color: #000000;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  transition: transform 160ms ease-out, text-shadow 160ms ease-out;
}

.nav__link::after,
.nav__link--primary::after {
  display: none;
}

.nav__link:hover,
.nav__link--primary:hover {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
  transform: translateY(-1px);
  text-shadow: none;
}

.nav__link--active {
  color: #000000;
}

/* Welcome overlay */
#welcome-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 15, 0.45);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn 1s ease forwards;
}

/* Content */
.welcome-content {
  text-align: center;
  animation: floatIn 1s ease forwards;
}

/* Text */
.welcome-content h1 {
  font-size: 2rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #cfcfcf;
  margin-bottom: 0.3rem;
}

.welcome-content h2 {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  background: linear-gradient(90deg, #ffcc70, #ff8177);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.welcome-content p {
  font-size: 1.15rem;
  color: #dddddd;
  margin-bottom: 2.6rem;
}

/* Button */
#enter-site {
  background: transparent;
  border: 1.5px solid #ffcc70;
  padding: 0.95rem 2.8rem;
  border-radius: 50px;
  color: #ffcc70;
  font-size: 1rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.35s ease;
}

#enter-site:hover {
  background: #ffcc70;
  color: #111;
  box-shadow: 0 0 30px rgba(255, 204, 112, 0.45);
}

/* Exit animation */
#welcome-overlay.hide {
  animation: fadeOut 0.7s ease forwards;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mega Dropdown */

/* Mega menu */
.mega-dropdown {
  position: relative;
  overflow: visible;
}
/* Hover bridge to prevent flicker */
.mega-dropdown::after,
.dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 40px; /* bridges the gap */
}

/* Panel */
.mega-menu {
  position: absolute;
  top: calc(100% + 20px);
  left: -300px;
  transform: translateX(-50%);

  display: grid;
  grid-template-columns:
    minmax(250px, 1fr)
    24px
    minmax(260px, 1fr)
    64px
    minmax(220px, 1fr)
    16px
    minmax(200px, 1fr);

  width: min(1090px, 92vw);
  padding: 2.5rem 3rem;

  background: #fff;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;

  z-index: 1000;
}


.mega-positions {
  grid-column: 1;
}

.mega-services {
  grid-column: 3;
}

.mega-learning {
  grid-column: 5;
}

.mega-help {
  grid-column: 7;
}


.nav__item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}


/* Columns */
.mega-column h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #111;
  font-weight: 600;
}

/* Links */
.mega-link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #222;
  font-size: 0.95rem;
  margin-bottom: 0.7rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.mega-link i {
  font-size: 1.1rem;
  color: #000;
}

.mega-link:hover {
  transform: translateX(4px);
  color: #ff8177;
}





/* Section layout */
.section {
  padding: 3.5rem 6vw;
  max-width: 1120px;
  position: relative;
  transition: transform 220ms ease-out, box-shadow 220ms ease-out;
  scroll-margin-top: 100px;
}


.section p {
  max-width: 580px;
  line-height: 1.7;
  color: #000000;
  font-size: 0.96rem;
  font-family: "Poppins", sans-serif;
}

.section:target {
  transform: none;
  box-shadow: none;
}

.section--about {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: stretch;
  padding: 0;
  max-width: none;
}

.section--products,
.section--services {
  padding: 0;
  width: 100%;
  max-width: none;
}

.products__heading {
  font-size: 2.6rem;
  font-family: "Noto Serif Display", serif;
  font-weight: 600;

  /* EXACT hero-like behavior */
  color: #000000;
  background: none;
  box-shadow: none;

  text-transform: none;
  letter-spacing: normal;
  line-height: 1.1;

  margin-bottom: 1.2rem;
  text-align: center;
}


.section-title {
  text-align: center;
  font-family: "Noto Serif Display", serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #000000;
}

.section-title--lined {
  display: block;
  text-align: center;
}

.section-title--lined::before,
.section-title--lined::after {
  content: none;
  display: none;
}

.section-title--lined .line-text {
  background-color: #000000;
  color: #ffffff;
  padding: 0.3rem 1rem;
  display: inline-block;
  border-radius: 4px;
  white-space: nowrap;
}



/* Cards grid */
.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0.6rem 2vw 2rem;
}

.product__card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  transition: transform 260ms ease, box-shadow 260ms ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product__image {
  transition: transform 600ms ease;
}

.product__card:hover .product__image {
  transform: scale(1.05);
}


.product__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.product__image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.product__card:nth-child(2) .product__image,
.product__card:nth-child(3) .product__image {
  object-position: center 25%;
}

.product__content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product__title {
  font-size: 1.6rem;
  font-family: "Noto Serif Display", serif;
  color: #000000;
  margin-bottom: 0.6rem;
  text-transform: none;
  letter-spacing: 0.02em;
}

.product__description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333333;
  margin-bottom: 1rem;
  flex-grow: 1;
  font-family: "Poppins", sans-serif;
}

.product__link {
  color: #000000;
  font-weight: 600;
  margin-top: auto;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 150ms ease-out;
  font-family: "Poppins", sans-serif;
}

.product__link:hover {
  gap: 0.6rem;
}


/* About section */
.about__inner {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  gap: 3rem;
  width: 100%;
  padding: 3.5rem 0 1.5rem 0;
}

.about__text {
  flex: 1 1 65%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: none;
  margin-left: 0;
  padding-left: 6vw;
}

.section--about .about__heading {
  font-size: 72px;
  letter-spacing: 0.10em;
  color: #000000;
  margin-top: 0;
  text-transform: none;
}

.about__kicker {
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 0.6rem;
  font-family: "Poppins", sans-serif;
}

.about__lead {
  font-size: 1.8rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1.4rem;
  font-family: "Poppins", sans-serif;
}

.about__text p + p {
  margin-top: 0.8rem;
}

.about__text p {
  font-size: 1.2rem;
  line-height: 1.6;
  font-family: "Poppins", sans-serif;
  color: #000000;
}

.about__media {
  flex: 0 0 45%;
  display: flex;
  justify-content: flex-end;
  align-self: center;
  overflow: hidden;
  margin-right: 0;
  max-height: 700px;
}

.about__image {
  width: auto;
  max-width: 100%;
  height: 100%;
  border-radius: 0;
  border: none;
  box-shadow: none;
  object-fit: cover;
  object-position: right center;
}


/* Position pages (MS/PhD/Postdoc) */
.phd-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.phd-hero__image {
  display: none;
}

.phd-page {
  position: relative;
  min-height: 100vh;
  padding-top: 0;
  background-image: url("images/phd-pos-newi.jpg.png");
  background-size: contain;
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-color: #dacfc2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.resume-hero {
  background-image: url("images/res.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cover-hero {
  background-image: url("images/cov.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.sop-hero {
  background-image: url("images/sopi.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ms-page {
  background-image: url("images/ms-opp-newi.jpg");
}

.resume-page {
  background-image: url("images/resume.jpeg");
}

.sop-page {
  background-image: url("images/sop.jpeg");
}

.content-page {
  background-image: url("images/clw.jpeg");
}

@media (max-width: 768px) {
  .phd-page {
    background-attachment: scroll;
    background-size: contain;
    background-position: center center;
  }
}


.phd-page__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  flex-grow: 1;
}

.phd-page__lower {
  background: #dacfc2;
  backdrop-filter: blur(10px);
  padding: 3rem 6vw;
  display: flex;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  box-sizing: border-box;
  margin-top: auto;
}

.phd-page__circle-icon {
  width: 140px;
  height: 140px;
  min-width: 140px;
  max-width: 140px;
  border: 10px solid #ffffff;
  border-radius: 50%;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 20px;
  box-sizing: border-box;
  flex-shrink: 0;
}

.phd-page__logo {
  width: 150px;
  height: 150px;
  object-fit: contain;

  position: relative;
  

  background: #ffffff;
  border-radius: 50%;
  padding: 16px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  z-index: 5;
}


.phd-page__circle-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.phd-page__description {
  font-size: 1.4rem;
  line-height: 1.7;
  color: #000000;
  font-family: "Poppins", sans-serif;
  flex: 1;
  margin: 0;
  padding: 0;
  max-width: 3000px;
}

@media (max-width: 1024px) {
  .phd-page__lower {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .phd-page {
    padding-bottom: 420px;
  }
}

.phd-opportunities {
  background: #f1efef;
  padding: 3rem 6vw;
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.phd-card {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 2rem;
  align-items: center;
  background: #ffffff;
  border-radius: 18px;
  padding: 1.8rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.phd-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.14);
}

.phd-card__logo img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.phd-card__title {
  font-family: "Noto Serif Display", serif;
  font-size: 1.4rem;
  color: #0b6f7a;
  margin-bottom: 0.4rem;
}

.phd-card__org {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 1.2rem;
}

.phd-card__meta {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.4rem;
}

.phd-card__meta strong {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #666;
  display: block;
}

.phd-card__meta span {
  font-size: 0.85rem;
  color: #000;
}

.phd-card__action {
  display: flex;
  align-items: center;
}

.phd-card__btn {
  background: #000000;
  color: #ffffff;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.phd-card__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px #848181;
}

/* Responsive */
@media (max-width: 1024px) {
  .phd-card {
    grid-template-columns: 100px 1fr;
  }

  .phd-card__action {
    grid-column: span 2;
    justify-content: flex-end;
  }

  .phd-card__meta {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Social links */
.social-connect {
  background: #dacfc2;
  padding: 2.5rem 6vw 1.5rem;
  text-align: center;
}

.social-connect__text {
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 1rem;
  font-family: "Poppins", sans-serif;
}

.social-connect__icons {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
}

.social-connect__icons a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: transform 150ms ease, background 150ms ease;
  color: #000000;
  text-decoration: none; /* Ensure no underlines */
  border: none; /* Ensure no borders */
}

.social-connect__icons a:hover {
  transform: translateY(-2px);
  background: rgba(0, 0, 0, 0.08);
}

.social-connect__icon-disabled {
  cursor: default;
  pointer-events: none;
  opacity: 1;
}

.social-connect__icon-disabled:hover {
  transform: none;
  background: transparent;
}

.social-connect__icon-disabled svg {
  opacity: 1;
  filter: none;
}

.social-connect__icons img,
.social-connect__icons svg {
  width: 24px;
  height: 24px;
  filter: brightness(0);
  opacity: 0.85;
  transition: opacity 150ms ease;
}

.social-connect__icons svg {
  filter: none;
  opacity: 0.85;
}

.social-connect__icons a:hover img,
.social-connect__icons a:hover svg {
  opacity: 1;
}

.social-connect__icon-disabled svg {
  opacity: 1;
  filter: none;
  color: #000000;
}
 
.contact__location .social-connect {
  background: transparent;
  padding: 1.5rem 0 0 0;
  text-align: left;
  width: 100%;
}

.contact__location .social-connect__text {
  text-align: left;
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
  padding-left: 0;
  white-space: normal;
  display: block; 
  max-width: 100%;
}

.contact__location .social-connect__icons {
  justify-content: flex-start;
  padding-left: 0;
}

.contact__location .social-connect__icons svg {
  width: 32px;
  height: 32px;
}

.contact__location .social-connect + .social-connect {
  margin-top: 2rem;
  padding-top: 1rem;
}

/* Coming Soon Section */
.coming-soon-section {
  background: #f1efef;
  padding: 4rem 6vw;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  width: 100%;
}

.coming-soon__container {
  max-width: 720px;
  width: 100%;
  text-align: center;
}

.coming-soon__content {
  background: #ffffff;
  border-radius: 24px;
  padding: 3.5rem 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out;
}

.coming-soon__content::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(218, 207, 194, 0.1),
    transparent
  );
  animation: shimmer 3s infinite;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.coming-soon__title {
  font-family: "Noto Serif Display", serif;
  font-size: 3.6rem;
  color: #000000;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  animation: pulse 2s ease-in-out infinite;
  letter-spacing: 0.05em;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

.coming-soon__text {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333333;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.coming-soon__dots {
  display: flex;
  justify-content: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.coming-soon__dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #000000;
  animation: bounce 1.4s ease-in-out infinite;
}

.coming-soon__dots .dot:nth-child(1) {
  animation-delay: 0s;
}

.coming-soon__dots .dot:nth-child(2) {
  animation-delay: 0.2s;
}

.coming-soon__dots .dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounce {
  0%, 80%, 100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  40% {
    transform: scale(1.2);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .coming-soon-section {
    padding: 2rem 4vw;
    min-height: auto;
  }

  .coming-soon__content {
    padding: 2rem 1.5rem;
  }

  .coming-soon__title {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }

  .coming-soon__text {
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
  }
}


.section--hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
  max-width: none;
  overflow: hidden;
  background-image: url("images/photo-1557818288-320deebced6c.avif");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  margin-top: -72px;
}

.section--hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  background: rgba(255, 255, 255, 0.15);
  padding: 2.5rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #000000;
}

.hero__content h1 {
  font-size: clamp(2.4rem, 0.93vw, 3rem);
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.hero__text {
  margin: 0.75rem 0 1.8rem;
  font-family: "Poppins", sans-serif;
  color: #f5f5f5;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  border: 1px solid #ffffff33;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #bbbbbb;
  margin-bottom: 1.1rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 150ms ease-out, color 150ms ease-out,
    border-color 150ms ease-out, transform 120ms ease-out;
}

.btn--filled {
  background: #ffffff;
  color: #000000;
}

.btn--filled:hover {
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff33;
}

.btn--ghost:hover {
  border-color: #ffffff;
}

.footer {
  margin-top: auto;
  padding: 1.25rem 6vw 1.75rem;
  border-top: 1px solid #1f1f1f;
  font-size: 0.75rem;
  color: #000000;
}

@media (max-width: 1024px) {
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    justify-content: space-between;
    padding-inline: 4vw;
  }

  .navbar__nav {
    gap: 1rem;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .section {
    padding-inline: 5vw;
  }

  .products__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product__image {
    height: 300px;
  }
}

@media (max-width: 520px) {
  .navbar {
    padding-inline: 3vw;
  }

  .navbar__nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .section {
    padding-inline: 4vw;
  }
}

/* Contact Section Styles */

/* Contact section */
.section--contact {
  display: block;
  padding-bottom: 5rem;
  padding-top: 0;
  padding-right: 2vw;
  padding-left: 2vw; 
  max-width: 100%; 
}

.contact__container {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem; 
}

.contact__wrapper {
  flex: 0 0 55%; 
  max-width: 750px; 
  display: flex;
  flex-direction: column;
  align-items: center; 
  margin-left: 0; 
}

.contact__location {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  margin-top: 2.8rem;
  padding-right: 0;
}

.location__heading {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
  color: #000000;
  padding-left: 0.5rem;
}

.contact__header {
  background-color: #000000;
  padding: 0.6rem 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact__title {
  color: #ffffff;
  margin: 0;
  font-size: 2rem;
  letter-spacing: 0.05em;
  font-family: "Noto Serif Display", serif;
}

.contact__form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background-color: #ffffff;
  border: 2px solid #000000;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.location__content {
  width: 100%;
  height: 300px;

  padding-bottom: 40px;

  box-sizing: border-box;

  background-color: #ffffff;
  border: 2px solid #000000;
  border-radius: 12px;
  overflow: hidden;

  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}


.location__content iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 12px;
  display: block;
  
}


/* Mobile Responsive for Contact */
@media (max-width: 900px) {
  .contact__container {
    flex-direction: column;
    gap: 3rem;
  }
  .contact__wrapper, .contact__location {
    width: 100%;
  }
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form__label {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #000000;
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 0.6rem 1rem; 
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: #000000;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: #000000;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.form__textarea {
  resize: vertical;
  min-height: 100px; 
}

.contact__btn {
  background-color: #000000;
  color: #ffffff;
  border: none;
  padding: 0.8rem 0;
  width: 100%;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  margin-top: 1rem;
  transition: transform 0.2s, opacity 0.2s;
}

.contact__btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

@media (max-width: 768px) {
  .section--contact {
    justify-content: center;
  }
  
  .contact__container {
    max-width: 100%;
  }
}

/* Dropdown Menu */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown__menu {
  
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #ffffff;
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  z-index: 100;
  border-radius: 8px;
  overflow: hidden;
  padding: 0.5rem 0;
  margin-top: 0.5rem;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.nav__item:hover .dropdown__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px;
}



.dropdown__link {
  color: #000000;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  text-transform: none;
  letter-spacing: normal;
  transition: background-color 150ms ease;
}

.dropdown__link:hover {
  background-color: #f1f1f1;
}

/* Inline social row under contact location */
.contact__location .social-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  white-space: nowrap;
  margin-top: 1.5rem;
}

.contact__location .social-inline__group {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.contact__location .social-inline__dash {
  display: inline-block;
  color: #000000;
  font-weight: 600;
}

.contact__location .social-inline .social-connect__text {
  margin: 0;
}

.contact__location .social-inline .social-connect__icons {
  display: inline-flex;
  gap: 1rem;
}

.contact__location .social-inline .social-inline__group:last-child .social-connect__icons {
  margin-left: -10px;
}


/* Visitor counter pill */
.visitor-btn {
  position: fixed;
  bottom: 20px;
  right: 30px;
  background: #000000;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 50px;
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.visitor-btn:hover {
  background: #000000;
  transform: scale(1.05);
}

/* Coming Soon Modal Styles */

/* Coming soon modal */
.coming-soon-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.coming-soon-modal.active {
  opacity: 1;
  visibility: visible;
}

.coming-soon-content {
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  border: 2px solid #e9ecef;
  animation: modalPopIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  max-width: 500px;
  width: 90%;
}

@keyframes modalPopIn {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.coming-soon-animation {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coming-soon-icon {
  font-size: 3rem;
  color: #007bff;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.coming-soon-title {
  font-family: "Noto Serif Display", serif;
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.coming-soon-text {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  color: #495057;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.coming-soon-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 2.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  background: #000000;
  border-radius: 50%;
  animation: bounce 1.5s ease-in-out infinite;
}

.dot:nth-child(1) { animation-delay: 0s; }
.dot:nth-child(2) { animation-delay: 0.2s; }
.dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes bounce {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.5; }
  40% { transform: translateY(-10px); opacity: 1; }
}

.coming-soon-close {
  background: #000000;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.coming-soon-close:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  background: #333333;
}

.coming-soon-close svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.coming-soon-close:hover svg {
  transform: rotate(180deg);
}

/* Responsive Design */
@media (max-width: 768px) {
  .coming-soon-content {
    padding: 2rem 1.5rem;
    width: 95%;
  }
  
  .coming-soon-title {
    font-size: 2rem;
  }
  
  .rocket-body {
    width: 30px;
    height: 45px;
  }
  
  .window {
    width: 12px;
    height: 12px;
  }
}
