/* PlaceSmart Logo Styles - Temporary CSS Logo */
.logo-text {
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    display: inline-block;
    text-decoration: none;
}

.logo-text .place {
    color: #007bff;
    font-size: 1.2em;
}

.logo-text .smart {
    color: #28a745;
    font-size: 1.2em;
}

.logo-text .by {
    color: #6c757d;
    font-size: 0.8em;
    font-weight: normal;
    display: block;
    margin-top: -5px;
}

/* Logo icon placeholder */
.logo-icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border-radius: 4px;
    margin-right: 8px;
    position: relative;
    vertical-align: middle;
}

.logo-icon::before {
    content: "PS";
    color: white;
    font-size: 12px;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo-text .place,
    .logo-text .smart {
        font-size: 1em;
    }
    
    .logo-text .by {
        font-size: 0.7em;
    }
}
