/* Shared Components CSS */

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #fff;
}

/* Site Header Styles */
.site-header {
    position: static;
    z-index: auto;
    background: transparent;
    border: none;
    box-shadow: none;
}

.header-container {
    background: transparent;
    padding: 0;
    margin: 0;
    display: inline-block;
}

.site-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-primary);
    text-decoration: none;
    transition: color 0.2s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.site-title:hover {
    color: var(--accent-dark);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.site-title:focus {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Header when inside search container */
.search-container .site-header {
    flex-shrink: 0;
}

.search-container .site-title {
    white-space: nowrap;
}
