/* assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600&display=swap');

:root {
    --primary-color: #000000;
    --secondary-color: #f2f2f2;
    --text-color: #333333;
    --bg-color: #ffffff;
    --card-radius: 16px;
    --btn-radius: 12px;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    -webkit-font-smoothing: antialiased;
    padding-bottom: 80px;
    /* Space for bottom nav */
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    color: var(--primary-color);
}

/* Cards */
.card {
    border: none;
    background-color: var(--secondary-color);
    border-radius: var(--card-radius);
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    transition: transform 0.2s;
}

.card:active {
    transform: scale(0.98);
}

.card-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border: none;
    border-radius: var(--btn-radius);
    padding: 14px 20px;
    font-weight: 500;
    width: 100%;
    margin-top: 10px;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
    background-color: #333 !important;
    box-shadow: none;
}

/* Forms */
.form-control {
    background-color: var(--secondary-color);
    border: 1px solid transparent;
    border-radius: var(--btn-radius);
    padding: 14px;
    font-size: 16px;
    /* Prevent zoom on mobile */
}

.form-control:focus {
    background-color: #fff;
    border-color: #000;
    box-shadow: none;
}

/* Login Screen */
.login-container {
    padding: 40px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 40px;
    text-align: center;
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid #eee;
    padding: 10px 0;
    display: flex;
    justify-content: space-around;
    z-index: 1000;
    padding-bottom: env(safe-area-inset-bottom);
}

.nav-item {
    text-decoration: none;
    color: #999;
    text-align: center;
    font-size: 12px;
}

.nav-item.active {
    color: var(--primary-color);
}

.nav-item i {
    font-size: 24px;
    display: block;
    margin-bottom: 4px;
}

/* Image Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 15px;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--btn-radius);
    background-color: #eee;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Utilities */
.text-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 5px;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
}