/* Vegas Auto Customz - SEO Styles */

/* Meta tags for SEO are added in the HTML head */

/* Structured headings for SEO */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
}

/* Ensure proper heading hierarchy */
.section-title h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.section-title p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
}

/* Optimize images for SEO */
img {
    max-width: 100%;
    height: auto;
}

img[alt] {
    font-size: 0.8rem;
    color: #666;
}

/* Optimize links for SEO */
a {
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    text-decoration: underline;
}

/* Breadcrumbs for SEO */
.breadcrumbs {
    padding: 10px 0;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.breadcrumbs ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.breadcrumbs li {
    display: inline-block;
    margin-right: 5px;
}

.breadcrumbs li:after {
    content: '/';
    margin-left: 5px;
    color: #999;
}

.breadcrumbs li:last-child:after {
    display: none;
}

.breadcrumbs a {
    color: var(--secondary-color);
}

/* Local business info for SEO */
.business-info {
    margin-bottom: 30px;
}

.business-info h3 {
    margin-bottom: 15px;
}

.business-info-item {
    display: flex;
    margin-bottom: 10px;
}

.business-info-icon {
    margin-right: 10px;
    color: var(--secondary-color);
}

/* Google Map for local SEO */
.google-map {
    height: 400px;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

/* Optimize for mobile SEO */
@media (max-width: 768px) {
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .breadcrumbs {
        font-size: 0.8rem;
    }
}

/* Optimize for print SEO */
@media print {
    .header, .footer, .booking, .reviews {
        display: none;
    }
    
    .container {
        width: 100%;
        max-width: 100%;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
    }
    
    a {
        text-decoration: none;
        color: #000;
    }
    
    .contact-info {
        margin-top: 20px;
    }
}
