/* adultcamprofiles.com - Custom Stylesheet */

:root {
    --primary-dark: #1a1a1a;
    --accent-red: #d9534f;
    --success-green: #28a745;
    --light-grey: #f8f9fa;
    --text-main: #333333;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-main);
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, .navbar-brand {
    letter-spacing: -0.5px;
}

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: 1px;
}

/* Card Styling */
.card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-radius: 8px;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.card-img-top {
    height: 220px;
    object-fit: cover;
    filter: brightness(0.95);
    transition: filter 0.3s;
}

.card:hover .card-img-top {
    filter: brightness(1);
}

/* Buttons */
.btn-danger {
    background-color: var(--accent-red);
    border: none;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.btn-danger:hover {
    background-color: #c9302c;
}

/* Layout Elements */
.bg-black {
    background-color: #000;
}

.breadcrumb {
    border-radius: 10px;
}

.jumbotron {
    padding: 4rem 2rem;
}

/* Utility */
.shadow-sm {
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important;
}

/* Responsive Overrides */
@media (max-width: 768px) {
    .card-img-top {
        height: 180px;
    }
    h1 {
        font-size: 1.75rem;
    }
}
.hover-shadow:hover {
    transform: translateY(-3px);
    transition: all 0.2s ease-in-out;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.1)!important;
}
.live-status-badge {
    position: absolute;
    top: 5px;
    left: 5px;
    background: rgba(40, 167, 69, 0.9);
    color: white;
    border-radius: 3px;
    font-weight: bold;
    z-index: 5;
}
.tiny { font-size: 0.75rem; }