:root {
  --bg-color: #000000;
  --text-color: #eeeeee;
  --link-color: #dddddd;
  --link-color-hover: #ffeedd
  --link-color-muted: rgba(222, 226, 230, 0.75);
  --link-color-muted-hover: rgba(222, 226, 230, 0.75);
  --lightbox-bg: #000000;
  --lightbox-color: #eeeeee;
}


body {
  background-color: var(--bg-color);
  background: radial-gradient(circle at center, #0f0f0f 0%, #050505 100%);
  padding: 0;
  margin: 0;
  color: var(--text-color);
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding-top: 50px; /* Adjust based on navbar height */
  overflow-y: auto;
}

h1 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.wp-block-heading {
  font-size: 2.5rem; /* or clamp() for responsive scaling */
  font-weight: 300;  /* Light weight */
  margin-bottom: 1rem;
}

.centered-content {
  max-width: 95%;
  max-height: 100%;
  margin: 0px auto 0rem auto; /* top margin pushes below navbar */
  padding: 0 0rem;
}

    .login-container {
      text-align: center;
      padding: 2rem;
      max-width: 400px;
      width: 100%;
      position: relative;
      z-index: 2;
    }
    
    .button-wrapper {
        background-color: transparent !important;
        display: flex;
        justify-content: center;
        align-items: center;
    }


    .sign-out-button {
        width: 240px;
        height: 40px;
        font-size: 14px;
        font-family: 'Roboto', 'Segoe UI', sans-serif;
        border-radius: 20px;
        padding: 0 16px;
        background-color: #4285F4; /* Google's blue */
        color: #fff;
        border: none;
        box-shadow: 0 1px 2px rgba(0,0,0,0.1);
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: background-color 0.2s ease, box-shadow 0.2s ease;
    }

    .sign-out-button:hover {
        background-color: #357ae8; /* slightly darker blue */
        box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    }


.navbar-brand {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.3rem;
}

a, a:visited {
  color: var(--link-color);
  text-decoration: none;
}

a:hover, a:active {
  color: var(--link-color-hover);
}

.text-muted a, .text-muted a:visited {
  color: var(--link-color-muted);
  text-decoration: none;
}

.text-muted a:hover, .text-muted a:active{
  color: var(--link-color-muted-hover); 
}

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

@media (hover: hover) and (pointer: fine) {
  h1 {
    font-size: 1.4rem;
  }

  .g_id_signin {
    max-width: 100%;
  }

  main .cover-image {
    transition: transform .4s;
  }

  main .cover-image:hover {
    transform: scale(1.02);
  }  
}

/** Lightbox **/
.sl-overlay {
  background: var(--lightbox-bg);
}

.sl-wrapper .sl-image .sl-caption {
  font-size: 1rem;
  opacity: 0.9 !important;
}

.sl-wrapper .sl-close,
.sl-wrapper .sl-navigation button,
.sl-wrapper .sl-counter { 
  color: var(--lightbox-color);
  opacity: 1;
  }