@import url("https://fonts.googleapis.com/css2?family=Bree+Serif&family=Caveat:wght@400;700&family=Lobster&family=Monoton&family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display+SC:ital,wght@0,400;0,700;1,700&family=Playfair+Display:ital,wght@0,400;0,700;1,700&family=Roboto:ital,wght@0,400;0,700;1,400;1,700&family=Source+Sans+Pro:ital,wght@0,400;0,700;1,700&family=Work+Sans:ital,wght@0,400;0,700;1,700&display=swap");

/* Base Navigation Links */
.nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
}

.nav-link span {
  display: inline-block;
  transition: transform 0.3s;
}

.nav-link:hover {
  color: #70af69;
}

.nav-link:hover span {
  transform: translateY(-2px);
}

/* Mobile Links */
.mobile-link {
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 1.125rem;
  font-weight: 300;
  padding: 1rem 0;
  width: 100%;
  text-align: center;
  transition: color 0.3s;
  display: block;
}

.mobile-link:hover {
  color: #d4af37;
}

/* Utilities */
.hamburger-line {
  display: block;
  height: 2px;
  background: white;
  transform-origin: center;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

@import url("https://fonts.googleapis.com/css2?family=Bree+Serif&family=Caveat:wght@400;700&family=Lobster&family=Monoton&family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display+SC:ital,wght@0,400;0,700;1,700&family=Playfair+Display:ital,wght@0,400;0,700;1,700&family=Roboto:ital,wght@0,400;0,700;1,400;1,700&family=Source+Sans+Pro:ital,wght@0,400;0,700;1,700&family=Work+Sans:ital,wght@0,400;0,700;1,700&display=swap");

/* purchase-styles -start */

/* --- LOGO --- */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
}

/* Updated to support both SVG and IMG logos */
.logo svg,
.logo img {
  height: 3.7rem;
  /* Fix height to fit navbar */
  width: auto;
  /* Maintain aspect ratio */
  transition: transform 0.5s var(--ease-tech);
}

.logo:hover svg,
.logo:hover img {
  transform: scale(1.02);
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo-title {
  color: white;
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  line-height: 1;
}

.logo-subtitle {
  color: #737373;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 0.25rem;
  transition: color 0.3s;
}

.logo:hover .logo-subtitle {
  color: var(--color-gold);
}

.nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  transition: all 0.3s ease-out;
  padding: 0.5rem 0;
}

.nav-link span {
  display: inline-block;
  transition: transform 0.3s;
}

/* Hover Interactions */
.nav-link:hover {
  color: #70af69;
}

.nav-link:hover span {
  transform: translateY(-2px);
  text-shadow: 0 0 5px rgba(212, 175, 55, 0.8);
}

/* Focus Interaction */
.nav-link:focus-visible {
  outline: 1px solid var(--color-gold-dim);
  outline-offset: 4px;
}

/* Special "Purchase" Item */
.nav-link.special {
  color: white;
  font-weight: 500;
}

.nav-link.special:hover span {
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

.nav-link.special::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(212, 175, 55, 0.5);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
  opacity: 0;
  transition: opacity 0.5s;
}

.nav-link.special:hover::after {
  opacity: 1;
}

/* --- MOBILE MENU TOGGLE (Checkbox Hack) --- */

/* --- MOBILE NAVIGATION DROPDOWN --- */
.mobile-nav {
  position: absolute;
  top: 100%;
  /* Directly below header */
  left: 0;
  width: 100%;
  background-color: #000000;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.8);

  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;

  /* Hidden State */
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;

  transition: all 0.5s var(--ease-tech);
  z-index: 10;
}

.mobile-nav a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 1.125rem;
  font-weight: 300;
  padding: 1rem 0;
  width: 100%;
  text-align: center;
  transition: color 0.3s;
  opacity: 0;
  transform: translateY(-10px);
  transition:
    opacity 0.3s,
    transform 0.3s,
    color 0.3s;
}

.mobile-nav a:hover {
  color: var(--color-gold);
  letter-spacing: 0.3em;
}

/* --- MEDIA QUERIES --- */
@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
  }

  .mobile-nav {
    display: none;
  }
}

/* purchase-styles -end */

/*
      Scoped footer + translator styles.
      All class names are namespaced with "tc-" to avoid collisions.
      Do NOT set body background or global resets to avoid affecting other sections.
    */

:root {
  --tc-bg: black;
  --tc-muted: #94a3b8;
  --tc-text: #e6eef8;
  --tc-white: #ffffff;
  --tc-accent: #60a5fa;
  --tc-container-max: 1200px;
}

/* Scope everything under wrapper so other site CSS remains untouched */
.tc-footer-wrapper {
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial;
  color: var(--tc-text);
}

/* Footer layout */
.tc-footer {
  background: var(--tc-bg);
  color: var(--tc-text);
  padding: 48px 16px;
}

.tc-container {
  max-width: var(--tc-container-max);
  margin: 0 auto;
  padding: 0 16px;
}

/* Grid */
.tc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 720px) {
  .tc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .tc-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Company info */
.tc-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tc-brand__img {
  width: 120px;
  height: 70px;
  border-radius: 8px;
}

.tc-brand__title {
  font-size: 1.125rem;
  color: var(--tc-white);
  margin: 0;
  font-weight: 700;
}

.tc-muted {
  color: white;
  font-size: 0.9375rem;
}

/* Quick links */
.tc-section-title {
  color: var(--tc-white);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1rem;
  text-decoration: underline;
}

.tc-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tc-links-list a {
  display: block;
  color: white;
  font-size: 0.9375rem;
  text-decoration: none;
  transition:
    color 0.22s ease,
    transform 0.18s ease;
  padding: 2px 0;
}

.tc-links-list a:hover {
  color: #70af69;
  transform: translateX(3px);
}

/* lower area */
.tc-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(148, 163, 184, 0.08);
}

.tc-bottom-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 720px) {
  .tc-bottom-row {
    flex-direction: row;
    align-items: center;
  }
}

.tc-socials {
  display: flex;
  gap: 16px;
  align-items: center;
}

.tc-socials a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition:
    transform 0.18s ease,
    color 0.18s ease;
  will-change: transform;
}

.tc-socials a:hover {
  color: var(--tc-white);
  transform: scale(1.08);
}

.tc-socials svg {
  width: 18px;
  height: 18px;
  display: block;
}

.tc-copyright {
  color: #70af69;
  font-size: 0.875rem;
  text-align: center;
}

@media (min-width: 720px) {
  .tc-copyright {
    text-align: right;
  }
}

.tc-legal-links {
  display: flex;
  gap: 14px;
  margin-top: 8px;
  justify-content: center;
}

@media (min-width: 720px) {
  .tc-legal-links {
    justify-content: flex-end;
  }
}

.tc-legal-links a {
  color: white;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.18s ease;
}

.tc-legal-links a:hover {
  color: var(--tc-white);
}

.tc-space-y-4 > * + * {
  margin-top: 16px;
}

/* Translator UI (placed at end of page) - scoped */
.tc-translate {
  margin-top: 20px;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.tc-translate__label {
  color: var(--tc-muted);
  font-size: 0.92rem;
}

.tc-translate__select {
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--tc-text);
  border-radius: 8px;
  font-size: 0.95rem;
  cursor: pointer;
}

.tc-translate__reset {
  padding: 8px 10px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--tc-muted);
  border-radius: 8px;
  cursor: pointer;
  transition:
    background 0.18s,
    color 0.18s;
}

.tc-translate__reset:hover {
  background: rgba(255, 255, 255, 0.03);
  color: var(--tc-text);
}

/* Hide the Google Translate UI (we will use hidden combo driven programmatically) - VERY scoped selector */
/* NOTE: we hide only Google's banner/balloon for the site; not touching global elements outside wrapper */
.tc-footer-wrapper .goog-te-banner-frame.skiptranslate,
.tc-footer-wrapper .goog-te-balloon-frame {
  display: none !important;
}

.tc-footer-wrapper .goog-te-combo {
  height: 1px;
  width: 1px;
  opacity: 0;
  position: fixed;
  left: -9999px;
  pointer-events: none;
}

/* Tiny helper -> visually hidden (accessible) */
.tc-visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: -1px;
}

@media (max-width: 576px) {
  .dath {
    display: flex;
    justify-content: space-around;
  }

  .about-foot {
    padding: 5px;
  }

  .services-foot {
    padding: 5px;
  }

  .support-foot {
    padding: 5px;
  }
}


.dath {
    display: flex;
    gap: 100px;
}

@media (min-width: 1000px) {
  .spacer-foot {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }

  .dath {
    display: flex;
    justify-content: space-around;
  }

  .about-foot {
    padding: 10px;
  }

  .services-foot {
    padding: 10px;
  }

  .support-foot {
    padding: 10px;
  }
}

/* Hamburger Menu */

#mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

#mobile-menu-btn .hamburger-line:nth-child(1) {
  width: 32px;
}

#mobile-menu-btn .hamburger-line:nth-child(2) {
  width: 20px;
}

#mobile-menu-btn .hamburger-line:nth-child(3) {
  width: 12px;
}

#mobile-menu-btn .hamburger-line {
  height: 2px;
  background: white;
  display: block;
}

@media (min-width: 768px) {
  #mobile-menu-btn {
    display: none;
  }
}