/* Puntr Frontend Styles */

.puntr-provider-single {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.provider-header {
    text-align: center;
    margin-bottom: 40px;
}

.provider-name {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.provider-headline {
    font-size: 1.2em;
    color: #666;
    font-style: italic;
}

.provider-status.inactive {
    background: #f44336;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    display: inline-block;
    margin-top: 20px;
}

.provider-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

@media (max-width: 768px) {
    .provider-content {
        grid-template-columns: 1fr;
    }
}

.provider-featured-image {
    position: relative;
    margin-bottom: 30px;
}

.provider-featured-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.photos-verified {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #4CAF50;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9em;
}

.provider-description h2,
.provider-sidebar h3 {
    margin-bottom: 20px;
    color: #333;
}

.services-list {
    list-style: none;
    padding: 0;
}

.services-list li {
    background: #f5f5f5;
    padding: 8px 15px;
    margin-bottom: 5px;
    border-radius: 4px;
}

.provider-sidebar > div {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.details-list {
    margin: 0;
}

.details-list dt {
    font-weight: bold;
    margin-bottom: 5px;
}

.details-list dd {
    margin: 0 0 15px 0;
    color: #666;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table td {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.pricing-table td:last-child {
    text-align: right;
    font-weight: bold;
}

.min-booking {
    margin-top: 15px;
    font-size: 0.9em;
    color: #666;
}


.external-link {
    display: inline-block;
    background: #2196F3;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    text-align: center;
    width: 100%;
}

.external-link:hover {
    background: #1976D2;
}

/* Archive page styles */
.puntr-providers-archive {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.provider-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s;
}

.provider-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.provider-card-image {
    height: 200px;
    overflow: hidden;
}

.provider-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.provider-card-content {
    padding: 20px;
}

.provider-card-title {
    font-size: 1.3em;
    margin-bottom: 10px;
}

.provider-card-meta {
    color: #666;
    font-size: 0.9em;
}