/* Foxboro North Stonehaven HOA - Parking FAQ Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.8;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    background-attachment: fixed;
    padding: 20px;
}

/* Parking lot pattern overlay */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 80px,
            rgba(0, 0, 0, 0.02) 80px,
            rgba(0, 0, 0, 0.02) 100px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 80px,
            rgba(0, 0, 0, 0.02) 80px,
            rgba(0, 0, 0, 0.02) 100px
        );
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.98);
    padding: 40px 50px;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

h1 {
    color: #2c3e50;
    font-size: 2.2em;
    margin-bottom: 25px;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 4px solid #3498db;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #2980b9;
    font-size: 1.8em;
    margin-top: 35px;
    margin-bottom: 15px;
    padding-left: 15px;
    border-left: 5px solid #34495e;
}

p {
    margin-bottom: 15px;
    font-size: 1.05em;
}

.important {
    background: linear-gradient(135deg, #ffd89b 0%, #f9a825 100%);
    padding: 20px 25px;
    border-left: 6px solid #f57c00;
    border-radius: 8px;
    font-weight: 600;
    margin: 25px 0;
    box-shadow: 0 4px 15px rgba(245, 124, 0, 0.2);
    color: #5d4037;
}

.pimage {
    text-align: center;
    margin: 25px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.05);
}

.pimage img {
    width: 300px;
    height: 300px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.fullwidth {
    max-width: 100%;
    height: auto;
}

a {
    color: #2980b9;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

a:hover {
    color: #1a5490;
    border-bottom: 2px solid #1a5490;
}

ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

li {
    margin-bottom: 12px;
    padding-left: 5px;
}

li::marker {
    color: #2980b9;
    font-weight: bold;
}

strong {
    color: #4a5568;
    background: linear-gradient(120deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 2px 6px;
    border-radius: 3px;
}

.footer {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 3px solid #e2e8f0;
    text-align: center;
    color: #718096;
    font-size: 0.95em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.fair-housing img {
    max-width: 50px;
    height: auto;
    vertical-align: middle;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 25px 20px;
        margin: 10px;
    }
    
    h1 {
        font-size: 1.8em;
    }
    
    h2 {
        font-size: 1.4em;
    }
    
    body {
        padding: 10px;
    }
}

/* Subtle animation for container on load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
    animation: fadeInUp 0.6s ease-out;
}
.longtermparking {
    color: #0066cc !important;
    text-decoration: none !important;
}
    .longtermparking:hover {
        color: #0066cc !important;
        text-decoration: none !important;
    }
    .longtermparking:active {
        color: #0066cc !important;
        text-decoration: none !important;
    }