
/* Critical CSS for above-the-fold content */
:root {
    --primary-color: #1a3c6e;
    --secondary-color: #bf9e5b;
    --text-color: #333333;
    --light-bg: #f8f9fa;
    --gradient-secondary: linear-gradient(135deg, #bf9e5b, #d4b570);
}

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
    border-radius: 0 0 4px 4px;
}

.skip-link:focus {
    top: 0;
}

.hero-section {
    background: linear-gradient(rgba(26, 60, 110, 0.9), rgba(26, 60, 110, 0.9)), url('/img/Apartment-security-.png');
    background-size: cover;
    background-position: center;
    padding: 150px 0;
    color: white;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.hero-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.response-guarantee {
    margin-top: 30px;
    font-size: 1.1rem;
    font-weight: 600;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
}
/* Critical CSS for La Quinta Security Page */
body { 
    margin: 0; 
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; 
    line-height: 1.6;
}

.hero-downtown { 
    height: 100vh; 
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('/img/palm-springs-hero.webp') center/cover; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    color: white; 
}

.hero-content h1 { 
    font-size: 3rem; 
    margin-bottom: 1rem; 
    font-weight: 700;
}

.hero-content h2 { 
    font-size: 1.5rem; 
    margin-bottom: 2rem; 
    font-weight: 300; 
}

.btn-primary { 
    background: #d32f2f; 
    border: none; 
    padding: 1rem 2rem; 
    font-size: 1.1rem; 
    border-radius: 5px; 
    text-decoration: none; 
    color: white; 
    display: inline-block; 
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background: #b71c1c;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
}

.skip-link:focus {
    top: 6px;
}

/* Breadcrumb styling */
.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #6c757d;
}

/* Table of contents styling */
.table-of-contents {
    max-width: 600px;
    margin: 0 auto;
}

.table-of-contents ul {
    text-align: left;
}

.table-of-contents a {
    color: #007bff;
    transition: color 0.3s ease;
}

.table-of-contents a:hover {
    color: #0056b3;
}

/* Security guide section text visibility fixes */
.dtla_header_section {
    color: white !important;
}

.dtla_header_section h2,
.dtla_header_section h3,
.dtla_header_section p {
    color: white !important;
}

.table-of-contents.bg-white {
    background-color: white !important;
}

.table-of-contents.bg-white h4 {
    color: #333 !important;
}

.table-of-contents.bg-white a {
    color: #007bff !important;
}

.table-of-contents.bg-white a:hover {
    color: #0056b3 !important;
}
