/*!*************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/styles/header.css ***!
  \*************************************************************************/
:root {
  /* ===== Global Header Settings ===== */
  --font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;

  /* ===== Header Layout ===== */
  --topbar-h: 0px;                     /* Top bar height */
  --header-h: 120px;                   /* Desktop header height */
  --header-padding-x: 4rem;            /* Desktop horizontal padding */
  --nav-padding-x: 280px;              /* Desktop nav horizontal padding */

  /* ===== Mobile Header ===== */
  --mobile-header-h: 80px;             /* Mobile header height */
  --mobile-padding-x: 1.2rem;          /* Mobile horizontal padding */
  --mobile-nav-gap: 1rem;              /* Gap between mobile nav items */
  --mobile-logo-size: 50px;            /* Height of mobile logo */
  --mobile-burger-size: 2rem;          /* Burger icon font size */

  /* ===== Colors ===== */
  --header-bg: linear-gradient(90deg, #0A1A3C 0%, #111827 100%);
  --header-border: transparent;        /* Can be #eee for line */
  --link-color: #ffffff;
  --link-hover: #12f9f3;

  /* ===== Contact Bar ===== */
  --contact-font-size: 1.4rem;
  --phone-icon-size: 30px;

  /* ===== Social Icons ===== */
  --social-icon-size: 28px;
  --social-gap: 12px;

  /* ===== Navigation ===== */
  --nav-gap: 2.3rem;
  --nav-font-size: 1rem;

  /* ===== Responsive ===== */
  --mobile-breakpoint: 768px;
}

* {
  font-family: var(--font-family);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul { list-style: none; }

/* ================== DESKTOP HEADER ================== */
.desktop-header {
  background: var(--header-bg);
  border-bottom: 1px solid var(--header-border);
  height: var(--header-h);
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: var(--topbar-h) var(--header-padding-x) 0 var(--header-padding-x);
}

/* Disable sticky on desktop */
@media (min-width: 769px) {
  .desktop-header {
    position: relative;
    top: auto;
  }
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 var(--nav-padding-x);
  width: 100%;
}

.logo img {
  height: calc(var(--header-h) - 40px);
  display: block;
}

.nav-links {
  display: flex;
  gap: var(--nav-gap);
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  align-self: end;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  font-size: var(--nav-font-size);
  color: var(--link-color);
  position: relative;
  transition: color 0.3s ease;
}@media (max-width: var(--footer-break-md)) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: var(--footer-break-sm)) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-meta { flex-direction: column; align-items: flex-start; gap: 6px; }
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: var(--link-hover);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--link-hover);
}

.nav-links a:hover::after {
  width: 100%;
}

/* ================== MOBILE HEADER ================== */
.mobile-header {
  display: none;
  flex-direction: column;
  background: var(--header-bg);
  border-bottom: 1px solid var(--header-border);
  padding: var(--mobile-padding-x);
  z-index: 1000;
}

.mobile-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--mobile-header-h);
}

.mobile-logo {
  height: var(--mobile-logo-size);
  display: block;
}

.mobile-burger {
  font-size: var(--mobile-burger-size);
  background: none;
  border: none;
  color: var(--link-color);
  cursor: pointer;
}

.mobile-nav {
  margin-top: 0.5rem;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--mobile-nav-gap);
}

.mobile-nav a {
  display: block;
  padding: 0.5rem 0;
  color: var(--link-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.mobile-nav a:hover {
  color: var(--link-hover);
}

.mobile-nav {
  display: none;
}

.mobile-nav.open {
  display: block;
}


/* ================== RESPONSIVE TOGGLE ================== */

/* Mobile view */
@media (max-width: 768px) {
  .desktop-header { display: none !important; }
  .mobile-header { display: flex !important; }
}

/* Desktop view */
@media (min-width: 769px) {
  .desktop-header { display: flex !important; }
  .mobile-header { display: none !important; }
}


/*!*************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/styles/footer.css ***!
  \*************************************************************************/
:root {
  /* ===== Footer Colors ===== */
  --footer-bg-start: #111111;   /* flat dark neutral background */
  --footer-bg-end: #111111;     /* same for no gradient */
  --footer-fg: #e5e7eb;         /* main text */
  --footer-muted: #9ca3af;      /* muted text */
  --footer-accent: #DD20C6;     /* brand accent */
  --footer-border: rgba(255, 255, 255, .08);

  /* ===== Footer Layout ===== */
  --footer-padding: 48px 20px 16px;
  --footer-gap: 28px;
  --footer-max-width: 1200px;

  /* ===== Headings ===== */
  --footer-heading-size: 1rem;
  --footer-heading-spacing: .08em;
  --footer-heading-color: #ffffff;

  /* ===== Lists ===== */
  --footer-list-spacing: .35rem;

  /* ===== Address & Text ===== */
  --footer-address-color: var(--footer-muted);
  --footer-line-height: 1.6;

  /* ===== Bottom Bar ===== */
  --footer-bottom-padding-top: 16px;
  --footer-bottom-gap: 16px;
  --footer-brand-weight: 600;
  --footer-brand-spacing: .04em;

  /* ===== Privacy Link ===== */
  --privacy-padding: 8px 12px;
  --privacy-radius: 10px;

  /* ===== Meta ===== */
  --footer-meta-gap: 12px;
  --footer-meta-font-size: .72rem;

  /* ===== Responsive Breakpoints ===== */
  --footer-break-md: 900px;
  --footer-break-sm: 600px;
}

/* ============ footer styling =========== */

.site-footer {
  background: var(--footer-bg-start);
  color: var(--footer-fg);
  padding: var(--footer-padding);
  border-top: 1px solid var(--footer-border);
}

.footer-inner {
  max-width: var(--footer-max-width);
  margin: 0 auto 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--footer-gap);
}

.footer-block h4 {
  font-size: var(--footer-heading-size);
  letter-spacing: var(--footer-heading-spacing);
  text-transform: uppercase;
  color: var(--footer-heading-color);
  margin: 0 0 .6rem;
  font-weight: 600; /* slightly softened */
}

.footer-list { list-style: none; margin: 0; padding: 0; }
.footer-list li+li { margin-top: var(--footer-list-spacing); }
.footer-list a { 
  color: var(--footer-fg); 
  text-decoration: none; 
  transition: color .2s ease, opacity .2s ease; 
}
.footer-list a:hover { color: var(--footer-accent); }

.footer-address { 
  font-style: normal; 
  color: var(--footer-address-color); 
  line-height: var(--footer-line-height); 
}
.footer-block p { 
  color: var(--footer-muted); 
  margin: 0; 
}

.footer-bottom {
  max-width: var(--footer-max-width);
  margin: 0 auto;
  padding-top: var(--footer-bottom-padding-top);
  border-top: 1px solid var(--footer-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--footer-bottom-gap);
}

.footer-brand {
  font-weight: var(--footer-brand-weight);
  letter-spacing: var(--footer-brand-spacing);
  color: var(--footer-fg);
  opacity: .9;
}

.privacy-link {
  color: var(--footer-fg);
  text-decoration: none;
  padding: var(--privacy-padding);
  border: 1px solid var(--footer-border);
  border-radius: var(--privacy-radius);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.privacy-link:hover {
  background: rgba(255, 255, 255, .06);
  color: var(--footer-accent);
  border-color: rgba(221, 32, 198, .35);
}

.footer-meta {
  max-width: var(--footer-max-width);
  margin: 10px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--footer-meta-gap);
  color: var(--footer-muted);
}
.footer-meta small { 
  font-size: var(--footer-meta-font-size); 
  opacity: .85; 
}
.footer-meta .credit a {
  color: var(--footer-muted);
  text-decoration: none;
  border-bottom: 1px dotted rgba(255, 255, 255, .2);
}
.footer-meta .credit a:hover {
  color: var(--footer-accent);
  border-bottom-color: transparent;
}

@media (max-width: var(--footer-break-md)) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: var(--footer-break-sm)) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-meta { flex-direction: column; align-items: flex-start; gap: 6px; }
}

