/* SEO and Accessibility Enhancements */

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    z-index: 10000;
    border-radius: 4px;
    font-weight: bold;
}

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

/* Breadcrumbs styling */
.breadcrumbs {
    background: #f8f9fa;
    padding: 10px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumbs ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
}

.breadcrumbs li:not(:last-child)::after {
    content: '›';
    margin: 0 8px;
    color: #666;
}

.breadcrumbs a {
    color: #C4A484;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: #9B8B78;
    text-decoration: underline;
}

.breadcrumbs .current {
    color: #666;
    font-weight: 500;
}

/* Enhanced heading structure for SEO */
.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-header h3 {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    line-height: 1.3;
    margin-bottom: 0.8rem;
}

/* Structured content for better SEO */
.content-section {
    margin-bottom: 2rem;
}

.content-section h3 {
    color: #9B8B78;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.content-section h4 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

/* FAQ styling for structured data */
.faq-section {
    margin-top: 3rem;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    background: #f8f9fa;
    padding: 1rem;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: none;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #C4A484;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 1rem;
    background: white;
    display: none;
    line-height: 1.6;
    color: #555;
}

.faq-answer.active {
    display: block;
}

/* Enhanced contact information for local SEO */
.contact-info-enhanced {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

/* Google Maps link button */
.map-link {
    text-align: center;
    margin-top: 1rem;
}

.map-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #C4A484;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(196, 164, 132, 0.3);
}

.map-button:hover {
    background: #9B8B78;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 164, 132, 0.4);
    color: white;
    text-decoration: none;
}

.map-button i {
    font-size: 0.9rem;
}

.contact-info-enhanced h3 {
    color: #9B8B78;
    margin-bottom: 1.5rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.contact-detail i {
    width: 20px;
    color: #C4A484;
    margin-right: 1rem;
}

.contact-detail strong {
    color: #333;
    margin-right: 0.5rem;
}

/* Schema markup helpers */
.hidden-schema {
    display: none;
}

/* Print styles for SEO */
@media print {
    .skip-link,
    .hamburger,
    .social-nav,
    .cta-button,
    .gallery-overlay,
    .lightbox {
        display: none !important;
    }
    
    .breadcrumbs {
        background: none;
        border: none;
    }
    
    .contact-info-enhanced {
        background: none;
        border: 1px solid #ccc;
    }
}

/* Mobile enhancements */
@media (max-width: 768px) {
    .breadcrumbs {
        padding: 8px 0;
        font-size: 0.8rem;
    }
    
    .breadcrumbs ol {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .breadcrumbs li:not(:last-child)::after {
        display: none;
    }
    
    .contact-detail {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .contact-detail i {
        margin-bottom: 0.5rem;
    }
}