/* ============================================================
   Property Management – Clean Professional Theme
   ============================================================ */

:root {
    --bg: #f4f6f8;
    --panel: rgba(255,255,255,0.95);
    --panel-soft: rgba(255,255,255,0.88);
    --line: rgba(0,0,0,0.08);

   --footer: #333333;

    --text: #1f2933;
    --muted: #6b7280;

    --brand: #2f5d8a;
    --brand-soft: rgba(47,93,138,0.12);

    --input-bg: #ffffff;
    --input-border: #cbd5e1;
    --input-border-focus: var(--brand);

    --ok: #16a34a;
    --danger: #dc2626;
}

* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
                 "Segoe UI", Roboto, Arial, sans-serif;
    background:
        linear-gradient(rgba(244,246,248,0.92), rgba(244,246,248,0.92)),
        url("/images/background.jpg") no-repeat center center fixed;
    background-size: cover;
    color: var(--text);
    display: flex;
    flex-direction: column;
}

/* Layout */

.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* Header */

.site-header {
    background: var(--panel);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(6px);
}

.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}
/* LOGO AND BRANDING */

.brand {
    font-weight: 700;
    text-decoration: none;
    color: var(--text);
    display: flex;
    align-items: center;
    font-size: 1.4rem;	
}
.brand-logo {
    height: 72px;
    width: auto;
}

@media (max-width: 760px) {
    .brand-logo {
        height: 56px;
    }
}

.tagline {
    color: var(--muted);
    font-size: 0.9rem;
}

/* Navigation */

.site-nav {
    background: var(--panel);
    border-bottom: 1px solid var(--line);
}

.nav-row {
    display: flex;
    gap: 0.5rem;
    padding: 0.6rem 0;
}

.nav-row a {
    text-decoration: none;
    font-weight: 600;
    color: var(--text);
    padding: 0.45rem 0.75rem;
    border-radius: 6px;
}

.nav-row a:hover {
    background: var(--brand-soft);
    color: var(--brand);
}

.spacer {
    flex: 1;
}

/* Main */

.site-main {
    flex: 1 0 auto;
    padding: 2.5rem 0 3.5rem;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.4rem;
    margin-top: 2rem;
    padding-left: 0.75rem;
    border-left: 4px solid var(--brand);
}

p {
    color: var(--muted);
}

/* Cards */

.card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

/* Grid */

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

/* Tables */

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--panel);
    border: 1px solid var(--line);
}

th, td {
    padding: 0.65rem 0.75rem;
    border-bottom: 1px solid var(--line);
}

th {
    color: var(--muted);
    font-weight: 600;
}

/* Forms */

label {
    display: block;
    margin: 0.75rem 0 0.3rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--muted);
}

input,
textarea,
select {
    width: 100%;
    padding: 0.65rem 0.75rem;
    border-radius: 6px;
    border: 1px solid var(--input-border);
    background: var(--input-bg);
    color: var(--text);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--input-border-focus);
}

/* Buttons */

button {
    background: var(--brand);
    color: #ffffff;
    border: none;
    padding: 0.6rem 1.1rem;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
}

button:hover {
    background: #1e4a70;
}

/* Notices */

.notice {
    background: var(--panel);
    border-left: 4px solid var(--line);
    padding: 0.75rem 1rem;
    margin: 1rem 0;
    border-radius: 6px;
}

.notice.ok {
    border-color: var(--ok);
}

.notice.error {
    border-color: var(--danger);
}


/* ============================================================
   Services Section
   ============================================================ */

.services {
    margin-top: 1.5rem;
}

.services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services li {
    background: var(--panel-soft);
    border: 1px solid var(--line);
    margin: 0.5rem 0;
    padding: 0.85rem 1rem;
    border-radius: 8px;
    color: var(--text);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* ============================================================
   Contact Section
   ============================================================ */

.contact {
    margin-top: 2rem;
    font-size: 1.05rem;
    color: var(--muted);
}

/* ============================================================
   Button (Legacy .button class)
   ============================================================ */

.button {
    display: inline-block;
    margin-top: 1.25rem;
    padding: 0.65rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: #ffffff;
    background-color: var(--brand);
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.button:focus {
    background-color: #1e4a70;
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

		
		
/* Footer */

.site-footer {
    background: var(--footer);
    border-top: 1px solid var(--line);
    padding: .5rem 0;
	color: #cccccc;
}

.footer-row {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    white-space: nowrap;
}

.muted {
    color: var(--muted);
}

/* Responsive */

@media (max-width: 760px) {
    .header-row,
    .footer-row {
        flex-direction: column;
        align-items: flex-start;
    }
}
