:root {
  /**
   * colors
   */

  --selective-yellow: hsl(42, 94%, 55%);
  --eerie-white: #f5f5f5;
  --eerie-black: hsl(180, 3%, 7%);
  --quick-silver: hsl(0, 0%, 65%);
  --radical-red: hsl(351, 83%, 61%);
  --light-gray: hsl(0, 0%, 80%);
  --isabelline: #0065f8;
  --gray-x-11: hsl(0, 0%, 73%);
  --platinum: hsl(0, 0%, 90%);
  --gray-web: hsl(0, 0%, 50%);
  --black_80: hsla(0, 0%, 0%, 0.8);
  --white_50: hsla(0, 0%, 100%, 0.5);
  --black_50: hsla(0, 0%, 0%, 0.5);
  --black_30: hsla(0, 0%, 0%, 0.3);
  --white: hsl(0, 0%, 100%);

  /**
   * gradient color
   */

  --gradient: linear-gradient(-90deg, #5e5df0, #ffffff);

  /**
   * typography
   */

  --ff-league_spartan: "League Spartan", sans-serif;
  --ff-poppins: "Poppins", sans-serif;

  --fs-1: 4.2rem;
  --fs-2: 3.2rem;
  --fs-3: 2.3rem;
  --fs-4: 1.8rem;
  --fs-5: 1.5rem;
  --fs-6: 1.4rem;
  --fs-7: 1.3rem;

  --fw-500: 500;
  --fw-600: 600;

  /**
   * spacing
   */

  --section-padding: 75px;

  /**
   * shadow
   */

  --shadow-1: 0 6px 15px 0 hsla(0, 0%, 0%, 0.05);
  --shadow-2: 0 10px 30px hsla(0, 0%, 0%, 0.06);
  --shadow-3: 0 10px 50px 0 hsla(220, 53%, 22%, 0.1);

  /**
   * radius
   */

  --radius-pill: 500px;
  --radius-circle: 50%;
  --radius-3: 3px;
  --radius-5: 5px;
  --radius-btn: 999px;
  --radius-10: 10px;

  /**
   * 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,
img,
span,
data,
input,
button,
ion-icon {
  display: block;
}

a {
  text-decoration: none;
}

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-poppins);
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--white);
  color: var(--eerie-black);
  font-size: 1.6rem;
  line-height: 1.75;
}

:focus-visible {
  outline-offset: 4px;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: hsl(0, 0%, 98%);
}

::-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;
}

.section {
  padding-block: 50px;
}

.shape {
  position: absolute;
  display: none;
}

.has-bg-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.h1,
.h2,
.h3 {
  line-height: 1;
}

.h1,
.h2 {
  font-weight: var(--fw-600);
}

.h1,
.hero-text {
  color: var(--white) !important;
}

.h1 {
  font-size: var(--fs-1);
}

.h1-span {
  color: var(--radical-red) !important;
}

.h2 {
  font-size: var(--fs-2);
}

.h3 {
  font-size: var(--fs-3);
  font-weight: var(--fw-500);
}

.btn {
  background: #5e5df0;
  color: var(--white);
  font-family: var(--ff-league_spartan);
  font-size: var(--fs-4);

  display: flex;
  align-items: center;
  gap: 7px;
  max-width: max-content;
  padding: 10px 20px;
  border-radius: var(--radius-btn);
  overflow: hidden;
  border: none;
  outline: none;
  /* Smooth animation */
  transition: all 0.25s ease;

  box-shadow: #5e5df0 0 10px 20px -10px;
  cursor: pointer;
  font-weight: 700;
  line-height: 24px;
}

/* Hover effect → lift up */
.btn:hover,
.btn:focus {
  transform: translateY(-5px); /* moves up */
  box-shadow: #5e5df0 0 15px 25px -10px; /* bigger shadow */
  background: #4c4bd8; /* slightly darker */
}

/* Active (when clicked) → press down */
.btn:active {
  transform: translateY(0px) scale(0.98); /* press down */
  box-shadow: #5e5df0 0 8px 16px -8px;
}

.section-title {
  --color: var(--radical-red);
  text-align: center;
}

.section-title .span {
  display: inline-block;
  color: var(--isabelline);
}

.has-before,
.has-after {
  position: relative;
  z-index: 1;
}

.has-before::before,
.has-after::after {
  position: absolute;
  content: "";
}

.img-holder {
  aspect-ratio: var(--width) / var(--height);
  background-color: var(--light-gray);
  overflow: hidden;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-subtitle {
  font-size: var(--fs-5);
  text-transform: uppercase;
  font-weight: var(--fw-500);
  letter-spacing: 1px;
  text-align: center;
  margin-block-end: 15px;
}

.section-text {
  font-size: var(--fs-5);
  text-align: center;
  margin-block: 15px;
}

.grid-list {
  display: grid;
  gap: 30px;
}

.category-card,
.stats-card {
  background-color: hsla(var(--color), 0.1);
}

:is(.course, .blog) .section-title {
  margin-block-end: 40px;
}

/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header .btn {
  display: none;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  padding-block: 12px;
  box-shadow: var(--shadow-1);
  z-index: 4;
}

.header.active {
  position: fixed;
}

.header .container,
.header-actions,
.navbar .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.header-action-btn,
.nav-close-btn {
  position: relative;
  color: var(--isabelline);
  font-size: 24px;
  transition: var(--transition-1);
}

.header-action-btn:is(:hover, :focus) {
  color: var(--kappel);
}

.header-action-btn .btn-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: var(--kappel);
  color: var(--white);
  font-family: var(--ff-league_spartan);
  font-size: var(--fs-6);
  min-width: 20px;
  height: 20px;
  border-radius: var(--radius-circle);
}

.browse-games-1 {
  background: #5e5df0 !important;
  border: 3px solid var(--white);
  color: var(--white) !important ;
  box-shadow: #ffffff 0 10px 15px -10px !important; /* bigger shadow */
  transition: var(--transition-2);
}

/* Hover effect → lift up */
.browse-games-1:hover,
.browse-games-1:focus {
  transform: translateY(-5px); /* moves up */
  box-shadow: #fff 0 15px 25px -10px; /* bigger shadow */
  background: #4c4bd8; /* slightly darker */
}

/* Active (when clicked) → press down */
.browse-games-1:active {
  transform: translateY(0px) scale(0.98); /* press down */
  box-shadow: #5e5df0 0 8px 16px -8px;
}

.browse-games-2 {
  background: var(--white) !important;
  color: #5e5df0 !important ;
  box-shadow: #ffffff 0 10px 15px -10px !important; /* bigger shadow */
  transition: var(--transition-2);
}

/* Hover effect → lift up */
.browse-games-2:hover,
.browse-games-2:focus {
  transform: translateY(-5px); /* moves up */
  box-shadow: #fff 0 15px 25px -10px; /* bigger shadow */
  background: #4c4bd8; /* slightly darker */
}

/* Active (when clicked) → press down */
.browse-games-2:active {
  transform: translateY(0px) scale(0.98); /* press down */
  box-shadow: #5e5df0 0 8px 16px -8px;
}

.logo-img {
  width: 220px; /* increase this until it looks right */
  height: auto; /* keeps it proportional */
}

.navbar {
  position: fixed;
  top: 0;
  left: -320px;
  background-color: var(--white);
  width: 100%;
  max-width: 320px;
  height: 100%;
  z-index: 2;
  transition: 0.25s var(--cubic-in);
  color: var(--eerie-black-2);
}

.navbar.active {
  transform: translateX(320px);
  transition: 0.5s var(--cubic-out);
}

.navbar .wrapper {
  padding: 15px 20px;
  border-block-end: 1px solid var(--platinum);
}

.nav-close-btn {
  background-color: var(--white);
  box-shadow: var(--shadow-2);
  padding: 8px;
  border-radius: var(--radius-circle);
}

.nav-close-btn:is(:hover, :focus) {
  background-color: var(--kappel);
  color: var(--white);
}

.navbar-list {
  padding: 15px 20px;
}

.navbar-item:not(:last-child) {
  border-block-end: 1px solid var(--platinum);
}

.navbar-link {
  color: var(--eerie-black-2);
  padding-block: 8px;
  font-weight: var(--fw-500);
  transition: var(--transition-1);
}

.navbar-link:is(:hover, :focus) {
  color: var(--isabelline);
}

.overlay {
  position: fixed;
  inset: 0;
  background-color: var(--black_80);
  pointer-events: none;
  opacity: 0;
  z-index: 1;
  transition: var(--transition-1);
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}

/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

.hero {
  padding-block-start: calc(var(--section-padding) + 80px);
}

.hero .container {
  display: grid;
  gap: 40px;
}

.hero-text {
  color: var(--eerie-black-1);
  font-size: var(--fs-4);
  text-align: center;
  margin-block: 18px 20px;
}

.hero .btn {
  margin-inline: auto;
}

.hero-banner {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: flex-start;
  gap: 30px;
}

.hero-banner .img-holder.one {
  border-top-right-radius: 70px;
  border-bottom-left-radius: 110px;
}

.hero-banner .img-holder.two {
  border-top-left-radius: 50px;
  border-bottom-right-radius: 90px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2.5rem;
}

/* Mobile Optimization */
@media (max-width: 600px) {
  .hero-cta {
    flex-direction: column;
    gap: 1rem;
  }

  .browse-games-1,
  .browse-games-2 {
    width: 100%;
    max-width: 300px;
    letter-spacing: 0.5px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
  }
}

/*-----------------------------------*\
  #CATEGORY
\*-----------------------------------*/
.category {
  padding-block: 10px;
}

.category .section-subtitle {
  color: var(--radical-red);
}

.category .section-title {
  --color: var(--kappel);
}

/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/

.about {
  padding-block-start: 40px;
}

.about {
  padding-block-start: 0;
  overflow: hidden;
}

.about .container {
  display: grid;
  gap: 30px;
}

.about-banner {
  position: relative;
  z-index: 1;
}

.about-banner .img-holder {
  border-radius: var(--radius-10);
}

.about :is(.section-subtitle, .section-title, .section-text) {
  text-align: left;
}

.about-item {
  margin-block: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.about-item ion-icon {
  color: var(--selective-yellow);
  font-size: 20px;
  --ionicon-stroke-width: 50px;
}

.about-item .span {
  color: var(--eerie-black-1);
  font-family: var(--ff-league_spartan);
}

/*-----------------------------------*\
  #STATS
\*-----------------------------------*/

.stats {
  padding-block: 50px;
}
.stats-card {
  text-align: center;
  padding: 25px;
  border-radius: var(--radius-10);
}

.stats-card :is(.card-title, .card-text) {
  font-family: var(--ff-league_spartan);
}

.stats-card .card-title {
  color: hsl(var(--color));
  font-size: var(--fs-2);
  line-height: 1.1;
}

.stats-card .card-text {
  color: var(--eerie-black-1);
  text-transform: uppercase;
}

/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer {
  background-repeat: no-repeat;
  background-color: var(--eerie-black-2);
  color: var(--gray-x-11);
  font-size: var(--fs-5);
}

.footer-top {
  display: grid;
  gap: 30px;
}

.footer-bottom {
  border-block-start: 1px solid var(--eerie-black-1);
  padding-block: 30px;
}

/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/

.back-top-btn {
  position: fixed;
  bottom: 40px;
  right: 30px;
  background-color: var(--isabelline);
  color: var(--white);
  font-size: 20px;
  padding: 15px;
  border-radius: var(--radius-circle);
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-1);
}

.back-top-btn.active {
  transform: translateY(10px);
  opacity: 1;
  pointer-events: all;
}

/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for large than 575px screen
 */

@media (min-width: 575px) {
  /**
   * REUSED STYLE
   */

  .container {
    max-width: 520px;
    width: 100%;
    margin-inline: auto;
  }

  .grid-list {
    grid-template-columns: 1fr 1fr;
  }

  :is(.course, .blog) .grid-list {
    grid-template-columns: 1fr;
  }

  /**
   * HEADER
   */

  .header .container {
    max-width: unset;
  }

  .header-actions {
    gap: 30px;
  }

  /**
   * HERO
   */

  .hero-banner {
    grid-template-columns: 1fr 0.9fr;
  }

  /**
   * STATS
   */

  .stats-card {
    padding: 40px 30px;
  }

  /**
   * FOOTER
   */

  .footer-brand:last-child {
    grid-column: 1 / 3;
  }
}

/**
 * responsive for large than 768px screen
 */

@media (min-width: 768px) {
  /**
   * CUSTOM PROPERTY
   */

  :root {
    /**
     * typography
     */

    --fs-1: 4.6rem;
    --fs-2: 3.8rem;
  }

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 720px;
  }

  .btn {
    padding: 15px 30px;
  }

  :is(.course, .blog) .grid-list {
    grid-template-columns: 1fr 1fr;
  }

  /**
   * HEADER
   */

  .header .container {
    padding-inline: 30px;
  }

  .header .btn {
    display: flex;
    padding: 10px 30px;
    margin-inline: 20px;
  }

  /**
   * HERO
   */

  .hero {
    padding-block-start: calc(var(--section-padding) + 90px);
  }

  .hero .container {
    gap: 50px;
  }

  .hero-text {
    margin-block-end: 30px;
  }

  .hero-banner {
    position: relative;
    z-index: 1;
  }

  .hero-banner .img-holder {
    max-width: max-content;
  }

  .hero-banner .img-holder.one {
    justify-self: flex-end;
  }

  .hero-banner .img-holder.two {
    margin-block-start: 100px;
  }

  .hero-shape-1 {
    display: block;
    position: absolute;
    bottom: -40px;
    left: -10px;
  }

  /**
   * ABOUT
   */

  .about {
    padding-block-start: 50px;
  }

  .about-banner {
    padding: 60px;
    padding-inline-end: 0;
  }

  .about-banner .img-holder {
    max-width: max-content;
    margin-inline: auto;
  }

  /**
   * FOOTER
   */

  .footer-brand:last-child {
    grid-column: auto;
  }
}

/**
 * responsive for large than 992px screen
 */

@media (min-width: 992px) {
  /**
   * CUSTOM PROPERTY
   */

  :root {
    /**
     * typography
     */

    --fs-1: 5.5rem;
    --fs-2: 4.5rem;
  }

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 960px;
  }

  .grid-list {
    grid-template-columns: repeat(4, 1fr);
  }

  :is(.course, .blog) .grid-list {
    grid-template-columns: repeat(3, 1fr);
  }

  /**
   * HERO
   */

  .hero .container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .hero .section-title,
  .hero-text {
    text-align: left;
  }

  .hero .btn {
    margin-inline: 0;
  }

  /**
   * ABOUT
   */

  .about .container {
    grid-template-columns: 1fr 0.6fr;
    align-items: center;
    gap: 60px;
  }
}

/**
 * responsive for large than 1200px screen
 */

@media (min-width: 1200px) {
  /**
   * CUSTOM PROPERTY
   */

  :root {
    /**
     * typography
     */

    --fs-1: 6.5rem;

    /**
     * spacing
     */

    --section-padding: 120px;
  }

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 1185px;
  }

  .shape {
    display: block;
  }

  .about-content {
    position: relative;
  }

  /**
   * HEADER
   */

  .header-action-btn:last-child,
  .navbar .wrapper,
  .overlay {
    display: none;
  }

  .header.active {
    transform: translateY(-100%);
    animation: slideIn 0.5s ease forwards;
  }

  @keyframes slideIn {
    0% {
      transform: translateY(-100%);
    }
    100% {
      transform: translateY(0);
    }
  }

  .navbar,
  .navbar.active {
    all: unset;
  }

  .navbar-list {
    display: flex;
    gap: 50px;
    padding: 0;
  }

  .navbar-item:not(:last-child) {
    border-block-end: none;
  }

  .navbar-link {
    color: var(--eerie-black-1);
    padding-block: 20px;
  }

  .header .btn {
    margin-inline-end: 0;
  }

  /**
   * HERO
   */

  .hero {
    padding-block-start: calc(var(--section-padding) + 120px);
  }

  .hero .container {
    gap: 80px;
  }

  .hero-shape-2 {
    top: -80px;
    z-index: -1;
  }

  /**
   * ABOUT
   */

  .about .container {
    gap: 110px;
  }

  .about-banner .img-holder {
    margin-inline: 0;
  }

  .about-shape-3 {
    top: -20px;
    left: -100px;
    z-index: -1;
  }

  .about-content {
    z-index: 1;
  }

  .about-shape-4 {
    top: 30px;
    right: -60px;
    z-index: -1;
  }
}

/* =========================================================
   CHILD BRAIN DEVELOPMENT ACADEMY — RESPONSIVE FOOTER CSS
   (Clean, balanced, readable across all screen sizes)
   ========================================================= */

.footer {
  background: linear-gradient(180deg, #0b0e17 0%, #10141f 100%);
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  padding: 120px 0 90px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("./images/footer-bg.png") center/cover no-repeat;
  opacity: 0.15;
  z-index: 0;
}

.footer-top {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 70px;
}

/* ===== BRAND SECTION ===== */
.footer-brand img {
  width: 270px;
  margin-bottom: 35px;
}

.footer-brand .tagline {
  color: #d6d6d6;
  font-size: 1.6rem;
  line-height: 2.2;
  margin-bottom: 35px;
}

.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 1.5rem;
}

.footer-contact li {
  margin: 15px 0;
}

.footer-contact a {
  color: var(--isabelline, #f9f9f9);
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #ffffff;
}

/* ===== SPONSORS SECTION ===== */
.footer-sponsors {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-sponsors .footer-title {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.sponsor-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.sponsor-link img {
  width: 140px;
  height: auto;
  border-radius: 10px;
  opacity: 0.95;
  transition: all 0.3s ease;
}

.sponsor-link img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* ===== QUICK LINKS ===== */
.footer-menu h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
}

.footer-menu ul {
  list-style: none;
  padding: 0;
}

.footer-menu li {
  margin: 18px 0;
}

.footer-menu a {
  color: #d6d6d6;
  font-size: 1.45rem;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-menu a:hover {
  color: var(--isabelline, #ffffff);
}

/* ===== SOCIAL LINKS ===== */
.footer-socials h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
}

.footer-socials ul {
  display: flex;
  gap: 30px;
  list-style: none;
  padding: 0;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  font-size: 2.6rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  color: var(--isabelline, #fff);
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-6px);
  box-shadow: 0 6px 18px var(--isabelline);
}

/* ===== BOTTOM COPYRIGHT ===== */
.footer-bottom {
  margin-top: 100px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  font-size: 1.4rem;
  color: #bcbcbc;
  letter-spacing: 0.5px;
}

/* =========================================================
   RESPONSIVE DESIGN (All devices from large screens → phones)
   ========================================================= */

/* --- Tablets (<=1024px) --- */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
  }

  .footer-brand {
    grid-column: span 2;
    text-align: center;
  }

  .footer-brand img {
    width: 230px;
    margin: 0 auto 25px;
  }

  .footer-sponsors {
    grid-column: span 2;
  }

  .footer-menu,
  .footer-socials {
    text-align: center;
  }

  .footer-socials ul {
    justify-content: center;
  }
}

/* --- Large phones & small tablets (<=768px) --- */
@media (max-width: 768px) {
  .footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 90px 0 70px;
    text-align: center;
  }

  .footer-grid {
    display: flex;
    flex-direction: column;
    padding: 0 40px;
  }

  .footer-brand img {
    width: 210px;
  }

  .footer-brand .tagline {
    font-size: 1.45rem;
  }

  .footer-contact li {
    font-size: 1.3rem;
  }

  .footer-menu h3,
  .footer-socials h3,
  .footer-sponsors .footer-title {
    font-size: 1.8rem;
  }

  .footer-menu a,
  .footer-contact a {
    font-size: 1.3rem;
  }

  .sponsor-link img {
    width: 110px;
  }

  .footer-socials ul {
    justify-content: center;
    gap: 25px;
  }

  .footer-socials a {
    width: 55px;
    height: 55px;
    font-size: 2rem;
  }

  .footer-bottom {
    margin-top: 60px;
  }
}

/* --- Small phones (<=480px) --- */
@media (max-width: 480px) {
  .footer {
    padding: 75px 0 60px;
  }

  .footer-grid {
    gap: 40px;
    padding: 0 25px;
  }

  .footer-brand img {
    width: 180px;
  }

  .footer-brand .tagline {
    font-size: 1.3rem;
  }

  .footer-contact li,
  .footer-menu a {
    font-size: 1.2rem;
  }

  .sponsor-link img {
    width: 90px;
  }

  .footer-socials a {
    width: 50px;
    height: 50px;
    font-size: 1.8rem;
  }

  .footer-bottom p {
    font-size: 1.1rem;
  }
}

/* --- Extra-small phones (<=360px) --- */
@media (max-width: 360px) {
  .footer {
    padding: 60px 0;
  }

  .footer-grid {
    gap: 30px;
    padding: 0 15px;
  }

  .footer-brand img {
    width: 160px;
  }

  .footer-brand .tagline {
    font-size: 1.2rem;
  }

  .footer-contact li {
    font-size: 1.1rem;
  }

  .footer-menu a {
    font-size: 1.1rem;
  }

  .footer-socials a {
    width: 42px;
    height: 42px;
    font-size: 1.5rem;
  }

  .footer-bottom p {
    font-size: 1rem;
  }
}
