/* Style the password form container */
.post-password-form {
    background-color: #333333; /* dark grey background */
    padding: 20px;
    border-radius: 10px;
    max-width: 400px;
    margin: 40px auto;
    text-align: center;
    color: #ffffff;
    font-family: Arial, sans-serif;
}

/* Style the input box */
.post-password-form input[type="password"] {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    width: 80%;
    margin-bottom: 10px;
}

/* Style the submit button */
.post-password-form input[type="submit"] {
    padding: 10px 20px;
    border-radius: 5px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    cursor: pointer;
}

.post-password-form input[type="submit"]:hover {
    background-color: #005177;
}
.wp-block-gallery {
  width: 100vw !important; /* full viewport width */
  margin-left: calc(-50vw + 50%); /* center the gallery */
  max-width: 100vw;
}
/* Remove default page padding/margin */
body, .site, .entry-content, .wp-block-group {
  margin: 0 !important;
  padding: 0 !important;
}

/* Make AWB truly full-screen */
.awb-block, .wp-block-awb, .awb-section {
  width: 100vw !important;
  height: 100vh !important; /* full viewport height */
  margin: 0 !important;
}
/* Dark grey page background */
body {
  background: #1e1e1e !important; /* or try #2b2b2b for a softer grey */
  margin: 0 !important;
}

/* Main content area: white background on content only */
.site-main, .entry-content {
  background: #fff !important;
  min-height: 100vh !important;
  margin: 0 auto !important;
  padding: 0 2vw !important; /* small side padding */
  box-sizing: border-box;
  overflow-x: hidden;
}

/* Header & footer cleanup */
.site-header, .site-footer {
  margin: 0 !important;
  padding: 0 !important;
  background: #1e1e1e !important; /* match the dark background */
  color: #fff !important; /* optional - for white text */
}

/* Keep gallery inside bounds */
.wp-block-gallery, .gallery {
  max-width: 100% !important;
  overflow: hidden;
}
/* 1. Make everything full-bleed and remove any page background */
html, body {
  margin: 0 !important;
  padding: 0 !important;
  background: #000 !important; /* or #111/#1a1a1a — won’t show if content fills screen */
  overflow-x: hidden; /* stops any horizontal scroll */
}

/* 2. Ensure main containers stretch full width */
.site-main,
.entry-content,
.content-area,
.page-content,
.wp-site-blocks {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box;
}

/* 3. Contain galleries and media so they never overshoot */
.wp-block-gallery,
.gallery,
.wp-block-image img {
  width: 100% !important;
  max-width: 100% !important;
  height: auto;
/* Hide the header on the Live Listening page only */
.page-id-123 .site-header {
  display: none !important;
}
	.site-header {
  display: none !important;
}
/* Hide the header/menu for Live Listening page only */
.page-id-4077 .site-header,
.page-id-4077 .wp-block-navigation,
.page-id-4077 header {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden;
}
/* Hide headers, menus, and page titles on all password-protected pages */
body.password-protected .site-header,
body.password-protected .wp-block-navigation,
body.password-protected header,
body.password-protected .entry-header,
body.password-protected .page-title,
body.password-protected h1.entry-title {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden;
}

/* Remove any top spacing so the form sits high on the screen */
body.password-protected .site-main,
body.password-protected .wp-site-blocks {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Center and tidy the password form */
body.password-protected form.post-password-form {
  max-width: 400px;
  margin: 20vh auto !important;
  text-align: center;
}

body.password-protected input[type="password"] {
  width: 100%;
  padding: 0.8em;
  border: 1px solid #ccc;
  border-radius: 4px;
}

body.password-protected input[type="submit"] {
  background: #333;
  color: #fff;
  border: none;
  padding: 0.8em 1.2em;
  border-radius: 4px;
  cursor: pointer;
}

body.password-protected input[type="submit"]:hover {
  background: #000;
}
.page-id-123.password-protected .site-header,
.page-id-123.password-protected header,
.page-id-123.password-protected .wp-block-navigation,
.page-id-123.password-protected .entry-header {
  display: none !important;
  visibility: hidden !important;
}
/* --- Hide all unwanted menus, headers, titles etc. --- */
body.password-protected .site-header,
body.password-protected .wp-block-navigation,
body.password-protected header,
body.password-protected .entry-header,
body.password-protected .page-title,
body.password-protected h1.entry-title,
body.password-protected .site-footer {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden;
}

/* --- Make background dark and remove page padding --- */
body.password-protected {
  background: #000 !important; /* deep black background */
  color: #fff !important;      /* white text */
  margin: 0 !important;
  padding: 0 !important;
  min-height: 100vh !important;
  overflow-x: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Style the password form cleanly and centered --- */
body.password-protected form.post-password-form {
  background: #111; /* slightly lighter than background for contrast */
  border: 1px solid #222;
  padding: 3rem 2rem;
  border-radius: 12px;
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.05);
  text-align: center;
  width: 100%;
  max-width: 400px;
}

/* --- Label and text style --- */
body.password-protected form.post-password-form p {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* --- Password input box --- */
body.password-protected input[type="password"] {
  width: 100%;
  padding: 0.8rem;
  border-radius: 6px;
  border: 1px solid #333;
  background: #000;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1rem;
  text-align: center;
}

/* --- Submit button --- */
body.password-protected input[type="submit"] {
  background: #fff;
  color: #000;
  border: none;
  padding: 0.8rem 1.5rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

body.password-protected input[type="submit"]:hover {
  background: #ddd;
  color: #000;
}
/* --- FORCE CLEAN PASSWORD PAGE --- */

/* Remove all headers, navigation, and theme wrappers */
body.password-protected header,
body.password-protected .site-header,
body.password-protected nav,
body.password-protected .wp-block-navigation,
body.password-protected .wp-block-group,
body.password-protected .wp-site-blocks > *:not(.post-password-form),
body.password-protected .wp-site-blocks > header,
body.password-protected .wp-site-blocks > nav,
body.password-protected .wp-site-blocks > .has-global-padding,
body.password-protected .wp-block-template-part,
body.password-protected .entry-header,
body.password-protected .page-header,
body.password-protected .page-title {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Remove any remaining spacing around the form */
body.password-protected .wp-site-blocks {
  padding: 0 !important;
  margin: 0 !important;
}

/* --- Make background dark and center the form --- */
body.password-protected {
  background: #000 !important;
  color: #fff !important;
  margin: 0 !important;
  padding: 0 !important;
  min-height: 100vh;
  overflow-x: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Password form styling --- */
body.password-protected form.post-password-form {
  background: #111;
  border: 1px solid #222;
  padding: 3rem 2rem;
  border-radius: 12px;
  text-align: center;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 0 50px rgba(255,255,255,0.1);
}

body.password-protected form.post-password-form p {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 1rem;
}

body.password-protected input[type="password"] {
  width: 100%;
  padding: 0.8rem;
  border-radius: 6px;
  border: 1px solid #333;
  background: #000;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1rem;
  text-align: center;
}

body.password-protected input[type="submit"] {
  background: #fff;
  color: #000;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

body.password-protected input[type="submit"]:hover {
  background: #ddd;
}
/* Make the introduction page text fill the full screen */
.page-id-225 .entry-content,
.page-id-225 .wp-block-group,
.page-id-225 .wp-site-blocks {
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}
.page .entry-title {
    display: none !important;
}
.intro-para {
  padding-left: 24px;
  padding-right: 24px;
  /* optional tweaks: */
  padding-top: 16px;
  padding-bottom: 16px;
}
.wp-site-container /* or your theme’s wrapper selector */ {
  padding-left: 20px;
  padding-right: 20px;
}

@media (min-width: 768px) {
  .wp-site-container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
