/* themes/urban/style.css */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: #2a2a2a;
    color: #e0e0e0;
    font-family: 'Roboto', sans-serif;
    padding: 0;
    min-height: 100vh;
}

.urban-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.urban-header {
    margin-bottom: 50px;
}

.urban-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4.5rem;
    letter-spacing: 5px;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.urban-line {
    height: 4px;
    width: 100px;
    background: #ff6b35;
}

.urban-nav {
    display: flex;
    gap: 0;
    margin-bottom: 40px;
    border: 2px solid #444;
}

.urban-btn {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    flex: 1;
    background: #1a1a1a;
    color: #999;
    border: none;
    border-right: 1px solid #444;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 2px;
}

.urban-btn:last-child {
    border-right: none;
}

.urban-btn:hover,
.urban-btn.active {
    background: #ff6b35;
    color: #ffffff;
}

.urban-section {
    margin-bottom: 60px;
}

.urban-cat {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: #ff6b35;
    letter-spacing: 3px;
    margin-bottom: 30px;
    padding-left: 20px;
    border-left: 5px solid #ff6b35;
}

.urban-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.urban-card {
    background: #1a1a1a;
    border: 1px solid #333;
    transition: all 0.3s;
}

.urban-card:hover {
    border-color: #ff6b35;
    transform: translateY(-3px);
}

.urban-img {
    width: 100%;
    height: 200px;
    background: #0a0a0a;
    overflow: hidden;
}

.urban-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
}

.urban-info {
    padding: 25px;
}

.urban-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    color: #ffffff;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.urban-desc {
    font-size: 0.9rem;
    font-weight: 300;
    color: #999;
    line-height: 1.6;
    margin-bottom: 15px;
}

.urban-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: #ff6b35;
    letter-spacing: 2px;
}

@media (max-width: 600px) {
    .urban-logo {
        font-size: 3rem;
    }

    .urban-grid {
        grid-template-columns: 1fr;
    }

    .urban-nav {
        flex-direction: column;
    }

    .urban-btn {
        border-right: none;
        border-bottom: 1px solid #444;
    }
}