/*
Theme Name: Property Locator
Theme URI:
Author:
Description: A lightweight theme for displaying real estate property maps on large screens.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: property-locator
*/

/* Reset and base styles */
html, body {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* Header styles */
.site-header {
    height: 32px;
    background-color: #2c3e50;
    color: white;
    display: flex;
    align-items: center;
    padding: 0 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.site-title {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
}

/* Main content styles */
.site-content {
    height: calc(100vh - 64px); /* Subtract header and footer heights */
    /*margin-top: 32px;*/
}

.page {
    height: 100%;
}

.entry-content {
    height: 100%;
    margin: 0;
    padding: 0;
}

/* Make sure the Gutenberg blocks take full height */
.wp-block {
    height: 100%;
}

/* Footer styles */
.site-footer {
    height: 32px;
    background-color: #2c3e50;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    font-size: 12px;
}



/* Center and modernize the password form */
.post-password-form {
  max-width: 400px;
  margin: 80px auto 0 auto;
  padding: 32px 24px 24px 24px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.08);
  text-align: center;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
}

.post-password-form label {
  display: block;
  font-size: 1.1em;
  margin-bottom: 18px;
  color: #222;
  font-weight: 500;
}

.post-password-form input[type="password"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1em;
  margin-bottom: 18px;
  background: #f9fafb;
  transition: border-color 0.2s;
}

.post-password-form input[type="password"]:focus {
  border-color: #0073aa;
  outline: none;
  background: #fff;
}

.post-password-form input[type="submit"] {
  width: 100%;
  padding: 12px 0;
  background: #0073aa;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.post-password-form input[type="submit"]:hover,
.post-password-form input[type="submit"]:focus {
  background: #005177;
}

.post-password-form p {
  margin: 0 0 18px 0;
  color: #444;
}
