/*
Theme Name: Twenty Twenty-Five Child
Theme URI: https://wordpress.org
Description: Child theme of Twenty Twenty-Five
Author: Your Name
Template: twentytwentyfive
Version: 1.0
*/
/* =====================
   HEADER
===================== */
.transparent-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: transparent;
}
/* =====================
   RESPONSIVE
===================== */
@media (max-width: 1024px) {

  /* Header container */
  header .wp-block-group {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Logo center */
  .wp-block-site-logo,
  .wp-block-site-title {
    justify-content: center;
    margin-bottom: 10px;
  }
/* =====================
   NAVIGATION
===================== */

  /* Navigation center */
  .wp-block-navigation {
    justify-content: center;
  }

  /* Account paragraph center */
  .header-account {
    margin-top: 10px;
    text-align: center;
  }

  .header-account a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff; /* transparent header ke liye */
    text-decoration: none;
  }
}
/* ===============================
   REMOVE WHITE SPACE ABOVE FOOTER
================================ */

/* Last block bottom gap */
.wp-site-blocks > *:last-child {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* Remove theme block gap */
.wp-site-blocks {
  gap: 0 !important;
}

/* Footer top space reset */
footer,
.wp-block-template-part.footer {
  margin-top: 0 !important;
  padding-top: 0 !important;
}






