/*
Theme Name: Gilded Key Blank Theme
Theme URI: https://gildedkeypm.com
Description: A minimal blank theme for Gilded Key Property Management with no styling interference
Author: Gilded Key
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gildedkey
*/

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

body {
    font-family: 'Times New Roman', serif;
    margin: 0;
    padding: 0;
}

/* Navigation styling */
.site-header {
    background-color: #1d2b45;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.site-logo img {
    height: 60px;
    max-width: 300px;
}

.site-navigation ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.site-navigation a {
    color: #e1bb69;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
    font-weight: 500;
}

.site-navigation a:hover {
    color: #ffffff;
}

/* Content area - no restrictions */
.site-content {
    margin: 0;
    padding: 0;
    max-width: 100%;
    width: 100%;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .site-header {
        flex-direction: column;
        gap: 1rem;
    }

    .site-logo img {
        height: 50px;
    }

    .site-navigation ul {
        gap: 1rem;
        justify-content: center;
    }

    .site-navigation a {
        font-size: 1rem;
    }
}
