

:root {

  /**
   * colors
   */

  --ultramarine-blue_10: hsla(235, 70%, 60%, 0.1);
  --ultramarine-blue: hsl(235, 70%, 60%);
  --orange-peel_10: hsla(36, 100%, 55%, 0.1);
  --space-cadet_20: hsla(248, 32%, 23%, 0.2);
  --space-cadet_80: hsla(247, 35%, 19%, 0.8);
  --space-cadet-2: hsl(247, 35%, 19%);
  --old-lavender: hsl(251, 9%, 46%);
  --orange-peel: hsl(36, 100%, 55%);
  --tart-orange: hsl(0, 100%, 63%);
  --light-gray: hsl(0, 0%, 80%);
  --cultured-1: hsl(0, 0%, 96%);
  --cultured-2: hsl(0, 0%, 93%);
  --coral_10: hsla(14, 95%, 66%, 0.1);
  --white_10: hsla(0, 0%, 100%, 0.1);
  --black_80: hsla(0, 0%, 0%, 0.8);
  --pumpkin: hsl(26, 98%, 49%);
  --white: hsl(0, 0%, 100%);

  /**
   * typography
   */

  --ff-urbanist: 'Urbanist', sans-serif;

  --fs-1: 4rem;
  --fs-2: 3.2rem;
  --fs-3: 2.4rem;
  --fs-4: 2rem;
  --fs-5: 1.8rem;
  --fs-6: 1.4rem;

  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;
  --fw-800: 800;

  /**
   * spacing
   */

  --section-padding: 80px;

  /**
   * box shadow
   */

  --shadow-1: 0 8px 20px hsla(0, 0%, 0%, 0.06);
  --shadow-2: 0px 4px 10px hsla(0, 0%, 0%, 0.05);

  /**
   * border radius
   */

  --radius-4: 4px;
  --radius-6: 6px;

  /**
   * transition
   */

  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;
  --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
  --cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);

}





/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li { list-style: none; }

a {
  text-decoration: none;
  color: inherit;
}

a,
img,
span,
input,
button,
ion-icon { display: block; }

img { height: auto; }

input,
button {
  background: none;
  border: none;
  font: inherit;
}

input { width: 100%; }

button { cursor: pointer; }

ion-icon { pointer-events: none; }

address { font-style: normal; }

html {
  font-family: var(--ff-urbanist);
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--white);
  color: var(--old-lavender);
  font-size: 1.6rem;
  font-weight: var(--fw-500);
  line-height: 1.6;
}

:focus-visible { outline-offset: 4px; }

::-webkit-scrollbar { width: 12px; }

::-webkit-scrollbar-track { background-color: var(--cultured-1); }

::-webkit-scrollbar-thumb { background-color: hsl(0, 0%, 80%); }

::-webkit-scrollbar-thumb:hover { background-color: hsl(0, 0%, 70%); }





/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container { padding-inline: 15px; }

.abs-img { display: none; }

.section-subtitle {
  color: var(--ultramarine-blue);
  text-transform: uppercase;
  font-weight: var(--fw-800);
  letter-spacing: 2px;
  margin-block-end: 5px;
}

.h1,
.h2,
.h3 {
  color: var(--space-cadet-2);
  line-height: 1.3;
  font-weight: var(--fw-800);
}

.h1 { font-size: var(--fs-1); }

.h2 { font-size: var(--fs-2); }

.h3 {
  font-size: var(--fs-4);
  font-weight: var(--fw-700);
}

.btn {
  min-height: 60px;
  max-width: max-content;
  font-size: var(--fs-5);
  font-weight: var(--fw-700);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 30px;
  border-radius: var(--radius-6);
  transition: var(--transition-1);
}

.btn-primary {
  background-color: var(--ultramarine-blue);
  color: var(--white);
}

.btn-primary:is(:hover, :focus) { background-color: var(--space-cadet-2); }

.btn-secondary {
  background-color: var(--white);
  color: var(--ultramarine-blue);
}

.btn-secondary:is(:hover, :focus) {
  background-color: var(--pumpkin);
  color: var(--white);
}

.w-100 { width: 100%; }

.section { padding-block: var(--section-padding); }

.grid-list {
  display: grid;
  gap: 30px;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}





/*-----------------------------------*\
  #HEADER — DARK GLASS + ANIMATIONS
\*-----------------------------------*/

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding-block: 18px;
  background: transparent;
  z-index: 9999;
  transition: background .3s ease, box-shadow .3s ease;
}

.header.active {
  background: rgba(13, 17, 47, 0.75); /* Glass dark */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 6px 25px rgba(0,0,0,.35);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo {
  font-size: 2.3rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #276CF5;
  letter-spacing: 1.5px;
  transition: .2s ease;
}

.logo:hover {
  color: #3b82f6;
  text-shadow: 0 0 10px rgba(59,130,246,0.5);
}

/* Navbar Link styles */
.navbar-link {
  font-size: 1.7rem;
  color: #276CF5;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: .25s ease-in-out;
}

/* Underline Animation */
.navbar-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #3b82f6;
  border-radius: 4px;
  transition: width .3s ease;
}

.navbar-link:hover,
.navbar-link.active {
  color: #3b82f6;
}

.navbar-link:hover::after,
.navbar-link.active::after {
  width: 100%;
}

/* MOBILE MENU */
.navbar {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  height: 100%;
  background: #0d112f;
  padding: 22px;
  visibility: hidden;
  opacity: 0;
  transform: translateX(-30px);
  border-right: 1px solid rgba(255,255,255,.08);
  transition: transform .35s ease, opacity .35s ease, visibility .35s;
  z-index: 10000;
}

.navbar.active {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

.navbar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding-bottom: 12px;
}

.navbar .logo {
  font-size: 2.4rem;
  color: #3b82f6;
}

/* Mobile Close Button */
.nav-close-btn {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.12);
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  transition: .25s ease;
}

.nav-close-btn:hover {
  background: #3b82f6;
}

/* Mobile Navigation Items */
.navbar-list {
  padding-top: 10px;
}

.navbar-item {
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.navbar-link {
  display: block;
  padding: 15px;
  color: #ffffff;
}

/* OVERLAY */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: .3s ease;
  z-index: 9000;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

/* DESKTOP MODE */
@media(min-width: 992px) {

  .navbar {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    padding: 0;
  }

  .navbar-top,
  .nav-close-btn,
  .overlay {
    display: none;
  }

  .navbar-list {
    display: flex;
    align-items: center;
    gap: 32px;
  }

  .navbar-link {
    padding: 0;
  }

}



/* ============================================================
   HERO SECTION – PREMIUM MODERN STYLE
   ============================================================ */

/* Base Hero Wrapper */
.hero {
  min-height: 95vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 130px 20px 110px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f0ff 0%, #f6f9ff 40%, #eef7ff 100%);
}

/* Soft Blur Background Circles */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  filter: blur(140px);
  z-index: -1;
}

.hero::before {
  background: #d1b3ff;
  top: -100px;
  left: -120px;
}

.hero::after {
  background: #b4e2ff;
  bottom: -120px;
  right: -100px;
}

/* Typography */
.hero-title {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 800;
  color: #1b1e3c;
  margin-bottom: 18px;
}

.hero-text {
  max-width: 530px;
  margin: 0 auto;
  font-size: 17px;
  color: #555;
}


/* ============================================================
   SEARCH BAR
   ============================================================ */

.hero-search {
  margin: 28px auto 45px;
  display: flex;
  justify-content: center;
  background: #fff;
  padding: 10px;
  border-radius: 50px;
  width: 100%;
  max-width: 450px;
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.08);
}

.hero-search input {
  width: 100%;
  border: none;
  outline: none;
  padding: 14px 18px;
  font-size: 16px;
  border-radius: 50px;
}

.hero-search button {
  background: var(--ultramarine-blue);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: #fff;
  font-size: 20px;
  transition: 0.25s ease;
}

.hero-search button:hover {
  transform: scale(1.1);
}


/* ============================================================
   HERO STATS BOXES
   ============================================================ */

.hero-stats {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: nowrap;
}

.stat-box {
  background: white;
  width: 260px;
  padding: 30px 22px;
  border-radius: 22px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-6px);
}

/* Icons */
.stat-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 28px;
  color: white;
}

/* Gradient color themes */
.gradient-purple {
  background: linear-gradient(135deg, #ff69d4, #a660ff);
}

.gradient-blue {
  background: linear-gradient(135deg, #1bb8ff, #0a7aff);
}

.gradient-pink {
  background: linear-gradient(135deg, #ff6ca7, #ff336f);
}

.stat-box h3 {
  font-size: 26px;
  margin-bottom: 6px;
  color: #1a1a1a;
}

.stat-box p {
  color: #666;
  font-size: 14px;
}


/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */

/* Tablets */
@media (max-width: 992px) {
  .hero {
    padding: 110px 20px 80px;
    min-height: 80vh;
  }

  .stat-box {
    width: 220px;
    padding: 24px 18px;
  }
}

/* Mobile – keep 3 in ONE row but make smaller */
@media (max-width: 768px) {
  .hero {
    padding: 100px 15px 60px;
    min-height: 70vh;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-text {
    font-size: 14px;
  }

  .hero-search {
    max-width: 95%;
  }

  /* Keep 3 boxes in one row */
  .hero-stats {
    gap: 12px;
    flex-wrap: nowrap;
  }

  .stat-box {
    width: 31%;
    padding: 18px 10px;
    border-radius: 16px;
  }

  .stat-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .stat-box h3 {
    font-size: 17px;
  }

  .stat-box p {
    font-size: 11px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero {
    padding: 80px 12px 40px;
    min-height: 65vh;
  }

  /* still 3 in one row */
  .stat-box {
    width: 31%;
    padding: 16px 8px;
  }

  .stat-icon {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .stat-box h3 {
    font-size: 15px;
  }

  .stat-box p {
    font-size: 10px;
  }
}


/* Section Base */
.popular-tools {
    text-align: center;
    padding: 80px 20px;
}

/* Tag */
.popular-tag {
    color: #9a5bff;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Title */
.popular-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2a2a2a;
}

/* Description */
.popular-desc {
    color: #666;
    font-size: 15px;
    margin-bottom: 40px;
}


/* Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto 50px;
}
/* SEARCH DROPDOWN */
.search-results {
  width: 100%;
  background: white;
  border-radius: 12px;
  margin-top: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  display: none;
  max-height: 300px;
  overflow-y: auto;
  position: absolute;
  z-index: 50;
}

.search-result-item {
  padding: 12px 18px;
  cursor: pointer;
  border-bottom: 1px solid #f1f1f1;
  transition: 0.2s;
}

.search-result-item:hover {
  background: #f8f8ff;
}

.search-result-item span {
  font-weight: 600;
  color: var(--violet-blue-crayola);
}


/* Cards */
.tool-card {
    background: #fff;
    border-radius: 15px;
    padding: 35px 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 45px rgba(0,0,0,0.1);
}

/* Icons */
.tool-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    color: #fff;
    font-size: 28px;
}

.purple { background: #b66bff; }
.blue   { background: #3fa2ff; }
.green  { background: #28c76f; }

.tool-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.tool-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.tool-link {
    color: #8a32ff;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: 0.2s;
}

.tool-link:hover {
    text-decoration: underline;
}

/* Bottom Bar */
.popular-bottom {
    max-width: 1100px;
    margin: auto;
    padding: 25px 20px;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    border-radius: 16px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Bottom Items */
.bottom-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}

.bottom-box p {
    color: #666;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 950px) {
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .popular-bottom {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 650px) {
    .tools-grid {
        grid-template-columns: 1fr;
    }
}






/* ---------------------------
   Category + Tools (cards)
   --------------------------- */

.category{
    background: linear-gradient(135deg, #f5f0ff 0%, #f6f9ff 40%, #eef7ff 100%);

}
.category-section {
  padding: 28px 20px;
  background: transparent;
  border-radius: 12px;
  margin-bottom: 28px;
}

/* Category header (icon + title + count) */
.category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.category-head-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.category-icon {
  height: 44px;
  width: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 20px;
  box-shadow: 0 6px 18px rgba(60,60,90,0.06);
}

/* badge colors (cycled) */
.cat-badge-1 { background: linear-gradient(135deg,#6A5AF9,#4C46F5); }
.cat-badge-2 { background: linear-gradient(135deg,#1BB8FF,#0A7AFF); }
.cat-badge-3 { background: linear-gradient(135deg,#FF6CA7,#FF336F); }
.cat-badge-4 { background: linear-gradient(135deg,#28C76F,#00B37D); }
.cat-badge-5 { background: linear-gradient(135deg,#FFB86B,#FF7A59); }
.cat-badge-6 { background: linear-gradient(135deg,#8F44FF,#5E2DFF); }

.category-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--space-cadet-2);
  margin: 0;
}

.category-submeta {
  margin-top: 6px;
  font-size: 13px;
  color: var(--old-lavender);
  font-weight: 600;
}

/* Tools grid like screenshot: rounded cards */
.category-tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 12px;
}

/* clickable card */
.tool-card-link {
  display: block;
  background: #fff;
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 8px 20px rgba(20,20,50,0.04);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform .18s var(--cubic-out), box-shadow .18s var(--cubic-out);
  text-decoration: none;
  color: inherit;
  min-height: 56px;
}

/* inner layout */
.tool-card-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* circular small badge for tool (colored) — keeps same style as screenshot */
.tool-badge {
  height: 36px;
  width: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  background: linear-gradient(135deg,#f6f7ff,#ececff);
  box-shadow: 0 8px 20px rgba(20,20,50,0.06);
}

/* tool title */
.tool-title {
  font-weight: 600;
  font-size: 14px;
  color: var(--space-cadet-2);
}

/* hover/focus */
.tool-card-link:hover,
.tool-card-link:focus {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(20,20,50,0.08);
  border-color: rgba(0,0,0,0.06);
}

/* small screens: make grid 1 column */
@media (max-width: 760px) {
  .category-tools-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .category-header { flex-direction: column; align-items: flex-start; gap: 10px; }
}




/* Section Base */
.why-choose {
  text-align: center;
  padding: 100px 20px;
  position: relative;
}

/* Top Badge */
.choose-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: #f3e8ff;
  color: #7a3cff;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 600;
}

.choose-title {
  margin-top: 25px;
  font-size: 32px;
  font-weight: 700;
  color: #222;
}

.choose-title span {
  color: #6a3aff;
}

.choose-subtitle {
  max-width: 680px;
  margin: 15px auto 50px;
  font-size: 16px;
  color: #666;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

/* Feature Boxes */
.feature-box {
  background: #fff;
  border-radius: 14px;
  padding: 28px 22px;
  text-align: left;
  box-shadow: 0 10px 35px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 45px rgba(0,0,0,0.1);
}

/* Icons */
.icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 15px;
  font-size: 22px;
}

.green { background: #16c163; }
.orange { background: #ff9c33; }
.blue   { background: #1ea0ff; }
.purple { background: #d35cff; }
.violet { background: #8f44ff; }
.green2 { background: #2ecc71; }

.feature-box h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #222;
}

.feature-box p {
  font-size: 14px;
  color: #666;
}

/* Highlight Box */
.highlight-box {
  margin-top: 70px;
  padding: 45px 30px;
  background: linear-gradient(135deg, #fdf7ff, #e8f4ff);
  border-radius: 20px;
  position: relative;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

.highlight-box h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #222;
}

.highlight-box p {
  font-size: 15px;
  color: #555;
  max-width: 650px;
  margin: 0 auto 25px;
}

/* Bottom Tags */
.feature-tags {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.feature-tags span {
  padding: 8px 16px;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Decorative Icons */
.decor {
  font-size: 60px;
  color: rgba(170, 170, 170, 0.12);
  position: absolute;
}

.decor-left {
  left: 30px;
  bottom: 20px;
}

.decor-right {
  right: 30px;
  bottom: 20px;
}

/* Responsive */
@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .highlight-box {
    padding: 35px 20px;
  }
}




/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer {
  background-color: var(--space-cadet-2);
  color: var(--white);
}

.footer-top {
  display: grid;
  gap: 60px;
  padding-block: 60px 50px;
}

.footer .logo { color: var(--white); }

.footer .section-text { margin-block: 25px 35px; }

.social-list {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-link {
  background-color: var(--white_10);
  font-size: 22px;
  padding: 14px;
  border-radius: var(--radius-4);
  transition: var(--transition-1);
}

.social-link:is(:hover, :focus) { background-color: var(--ultramarine-blue); }

.footer-list-title {
  font-size: var(--fs-3);
  font-weight: var(--fw-700);
  margin-block-end: 20px;
}

.footer-link,
.footer-item {
  display: flex;
  gap: 8px;
}

.footer-link {
  align-items: center;
  padding-block: 10px;
  transition: var(--transition-1);
}

.footer-link:not(address):is(:hover, :focus) { color: var(--ultramarine-blue); }

.footer-item { align-items: baseline; }

.footer-item address { flex: 1; }

.footer-item ion-icon { --ionicon-stroke-width: 50px; }

.footer-bottom {
  text-align: center;
  padding-block: 20px;
}

.copyright-link {
  display: inline-block;
  font-weight: var(--fw-700);
  transition: var(--transition-1);
}

.copyright-link:is(:hover, :focus) { color: var(--ultramarine-blue); }





/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/

.back-top-btn {
  position: fixed;
  bottom: 20px;
  right: 30px;
  background-color: var(--orange-peel);
  color: var(--white);
  font-size: 22px;
  padding: 12px;
  border-radius: 50%;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-1);
}

.back-top-btn.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(-10px);
}





/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for larger than 575px screen
 */

@media (min-width: 575px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-2: 4rem;

  }



  /**
   * REUSED STYLE
   */

  .container {
    max-width: 540px;
    margin-inline: auto;
  }



  /**
   * HEADER
   */

  .header .container { max-width: unset; }



  /**
   * ABOUT
   */

  .about-banner { position: relative; }

  .about .abs-img-1 {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    border-radius: var(--radius-4);
  }



  /**
   * FOOTER
   */

  .footer-top { grid-template-columns: 1fr 1fr; }

  .footer-brand { grid-column: 1 / 3; }

}





/**
 * responsive for larger than 768px screen
 */

@media (min-width: 768px) {

  /**
   * REUSED STYLE
   */

  .container { max-width: 740px; }

  .grid-list { grid-template-columns: 1fr 1fr; }



  /**
   * HEADER
   */

  .header .container { padding-inline: 30px; }

  .header-actions { gap: 15px; }

  .header-action-btn:not(.login-btn) { padding: 17px; }

  .login-btn .span { display: block; }

  .login-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--ultramarine-blue);
    color: var(--white);
    min-height: 50px;
    padding-inline: 25px;
    font-weight: var(--fw-700);
    transition: var(--transition-1);
  }

  .login-btn ion-icon { --ionicon-stroke-width: 70px; }

  .login-btn:is(:hover, :focus) { background-color: var(--space-cadet-2); }



  /**
   * HERO
   */

  .hero-text { --fs-5: 2rem; }




  /**
   * FOOTER
   */

  .footer-top {
    gap: 30px;
    padding-block: 80px 70px;
  }

  .footer-brand { grid-column: auto; }

  .footer-bottom { padding-block: 30px; }

}





/**
 * responsive for larger than 992px screen
 */

@media (min-width: 992px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 5rem;

    /**
     * spacing
     */

    --section-padding: 120px;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 960px; }



  /**
   * HERO
   */

  .hero { overflow: hidden; }

  .hero .container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .hero .abs-img {
    display: block;
    position: absolute;
  }

  .hero-banner {
    position: relative;
    padding-inline-end: 50px;
    margin-block-start: 180px;
  }

  .hero .abs-img-1 {
    width: 250px;
    right: -100px;
    top: -60px;
  }

  .hero .abs-img-2 {
    top: -180px;
    right: 80px;
  }



  /**
   * CATEGORY
   */

  .category .grid-list { grid-template-columns: repeat(3, 1fr); }

  .category-card { height: 100%; }



  /**
   * FOOTER
   */

  .footer-top { grid-template-columns: 1.5fr 1fr 1fr 1fr; }

}





/**
 * responsive for larger than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 6.8rem;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 1180px; }



  /**
   * HEADER
   */

  .nav-open-btn,
  .navbar-top,
  .overlay { display: none; }

  .header { padding-block: 40px; }

  .header.active { padding-block: 15px; }

  .header.header-anim { animation: slide-in 1s ease forwards; }

  @keyframes slide-in {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(0); }
  }

  .navbar,
  .navbar.active { all: unset; }

  .navbar-list {
    display: flex;
    gap: 10px;
    padding: 0;
  }

  .navbar-item:not(:last-child) { border-block-end: none; }

  .navbar-link {
    color: var(--space-cadet-2);
    font-weight: var(--fw-600);
    padding-inline: 10px;
  }



  /**
   * HERO
   */

  .hero .abs-img-1 { width: max-content; }

  .hero .abs-img-2 { right: 120px; }




  /**
   * FOOTER
   */

  .footer-top { padding-block: 120px 80px; }

}

/* FINAL FIX: Force Header Nav Text White On All Screens */
.header .navbar-link {
  color: #ffffff !important;
}
