/* CityLodgings Shortcodes CSS */

/* Stats Box */
.lodgings-stats-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.lodgings-stats-box h3 {
    margin: 0 0 25px 0;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Shortcode Lodging List */
.citylodgings-shortcode-list {
    margin: 30px 0;
}

.citylodgings-shortcode-list.layout-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.citylodgings-shortcode-list.layout-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.shortcode-lodging-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e8eaed;
}

.shortcode-lodging-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.card-image {
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.shortcode-lodging-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 20px;
}

.card-content h4 {
    margin: 0 0 15px 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.card-content h4 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.card-content h4 a:hover {
    color: #0073aa;
}

.lodging-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.9rem;
    flex-wrap: wrap;
    gap: 8px;
}

.lodging-meta .type {
    background: #e8f0fe;
    color: #1558d6;
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.lodging-meta .price {
    font-weight: 700;
    color: #333;
}

.lodging-meta .rating {
    color: #0073aa;
    font-weight: 600;
}

/* Amenity badges in shortcode cards */
.card-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 12px 0;
}

.amenity-badge {
    display: inline-block;
    background: #f0f8ff;
    color: #1558d6;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid #b3d9ff;
}

.amenity-more {
    display: inline-block;
    color: #666;
    font-size: 0.75rem;
    font-style: italic;
    padding: 4px 8px;
}

.book-btn {
    display: inline-block;
    background: linear-gradient(135deg, #0073aa 0%, #005a87 100%);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    margin-top: 12px;
    display: block;
    text-align: center;
}

.book-btn:hover {
    background: linear-gradient(135deg, #005a87 0%, #004668 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 115, 170, 0.3);
}

/* SEO Content Sections */
.seo-intro-content {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    border-left: 4px solid #0073aa;
}

.seo-intro-content p {
    margin: 0 0 15px 0;
    font-size: 1.1rem;
    line-height: 1.7;
}

.seo-intro-content p:last-child {
    margin-bottom: 0;
}

.seo-faq-content {
    margin: 40px 0;
}

.seo-faq-content h3 {
    color: #333;
    margin-bottom: 25px;
    font-size: 1.5rem;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 10px;
}

.faq-item {
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-item h4 {
    color: #0073aa;
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-item p {
    margin: 0;
    line-height: 1.6;
    color: #555;
}

/* Related Searches */
.related-searches-container {
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f0fe 100%);
    border-radius: 12px;
    border: 1px solid #e8eaed;
}

.related-searches-container h3 {
    margin: 0 0 20px 0;
    color: #333;
    text-align: center;
    font-size: 1.4rem;
}

.related-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.related-search-link {
    display: block;
    padding: 12px 18px;
    background: white;
    color: #0073aa;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #e8eaed;
    text-align: center;
}

.related-search-link:hover {
    background: #0073aa;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 115, 170, 0.2);
}

/* Amenity Benefits */
.amenity-benefits-section {
    margin: 40px 0;
}

.amenity-benefits-section h3 {
    color: #333;
    margin-bottom: 25px;
    font-size: 1.5rem;
    text-align: center;
}

.amenity-benefit-item {
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #00a32a;
}

.amenity-benefit-item h4 {
    color: #00a32a;
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.amenity-benefit-item p {
    margin: 0;
    line-height: 1.6;
    color: #555;
}

/* Local Attractions */
.local-attractions-section {
    margin: 40px 0;
    padding: 25px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.local-attractions-section h3 {
    margin: 0 0 20px 0;
    color: #333;
    font-size: 1.3rem;
}

.attractions-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.attractions-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.attractions-list li:before {
    content: "•";
    color: #0073aa;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.attractions-list li:last-child {
    border-bottom: none;
}

/* No Results */
.no-lodgings-found {
    text-align: center;
    padding: 60px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    color: #666;
    font-size: 1.1rem;
    border: 2px dashed #e8eaed;
}

/* Responsive Design */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .citylodgings-shortcode-list.layout-grid {
        grid-template-columns: 1fr;
    }
    
    .lodging-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .related-links-grid {
        grid-template-columns: 1fr;
    }
    
    .lodgings-stats-box {
        padding: 20px;
    }
    
    .seo-intro-content,
    .related-searches-container,
    .local-attractions-section {
        padding: 20px;
    }
    
    .card-amenities {
        margin: 10px 0;
    }
    
    .amenity-badge {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .card-content {
        padding: 15px;
    }
    
    .lodgings-stats-box h3 {
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .card-amenities {
        gap: 4px;
    }
    
    .amenity-badge {
        font-size: 0.65rem;
        padding: 2px 6px;
    }
}