/* BlowjobShow.live - Custom CSS */
/* Theme: Purple/Violet playful */

:root {
    --primary: #7b1fa2;
    --primary-dark: #4a148c;
    --primary-light: #ba68c8;
    --accent: #e040fb;
    --dark: #1a1a2e;
    --light: #f3e5f5;
    --text: #333;
}

body {
    font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
    color: var(--text);
    line-height: 1.7;
}

/* Navigation */
.ui.menu.main-nav {
    background: var(--dark);
    border: none;
    border-radius: 0;
    margin: 0;
}

.ui.menu.main-nav .item {
    color: #fff !important;
}

.ui.menu.main-nav .item:hover {
    background: rgba(255,255,255,0.1) !important;
}

.ui.menu.main-nav .active.item {
    background: var(--primary) !important;
}

.site-logo {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
}

.site-logo span {
    color: var(--accent);
}

/* Hero */
.hero-banner {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
    padding: 5rem 0;
    color: #fff;
}

.hero-banner h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-banner .lead {
    font-size: 1.2rem;
    color: var(--primary-light);
    margin-bottom: 2rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #6a1b9a 100%);
    padding: 3rem 0;
    color: #fff;
}

.page-header h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    color: var(--primary-light);
    font-size: 1.1rem;
}

/* Breadcrumb */
.ui.breadcrumb {
    margin-bottom: 1rem;
}

.ui.breadcrumb a {
    color: rgba(255,255,255,0.7) !important;
}

.ui.breadcrumb .active {
    color: #fff !important;
}

/* Buttons */
.ui.button.primary-btn {
    background: var(--primary);
    color: #fff;
}

.ui.button.primary-btn:hover {
    background: var(--primary-dark);
}

.ui.button.accent-btn {
    background: var(--accent);
    color: #fff;
}

.ui.button.accent-btn:hover {
    background: #d500f9;
}

/* Cards */
.ui.card, .ui.cards > .card {
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.ui.card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transform: translateY(-3px);
    transition: all 0.3s ease;
}

.ui.card .header {
    color: var(--primary-dark) !important;
}

.ui.card .image img {
    height: 200px;
    object-fit: cover;
}

/* Segments */
.ui.segment.purple-segment {
    border-top: 3px solid var(--primary);
}

.ui.segment.feature-box {
    background: var(--light);
    border: none;
}

/* Lists */
.ui.list .item .icon {
    color: var(--primary) !important;
}

/* Sections */
.content-section {
    padding: 4rem 0;
}

.content-section h2 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.content-section h3 {
    color: var(--primary);
    margin-top: 2rem;
}

.alt-bg {
    background: var(--light);
}

/* Footer */
.site-footer {
    background: var(--dark);
    color: #fff;
    padding: 3rem 0 1rem;
}

.site-footer h4 {
    color: var(--primary-light);
    margin-bottom: 1rem;
}

.site-footer a {
    color: rgba(255,255,255,0.8);
}

.site-footer a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
    color: rgba(255,255,255,0.6);
}

/* Mobile */
@media only screen and (max-width: 767px) {
    .hero-banner {
        padding: 3rem 0;
        text-align: center;
    }

    .hero-banner h1 {
        font-size: 2rem;
    }

    .ui.button {
        margin-bottom: 10px !important;
    }
}

/* Images */
.rounded-img {
    border-radius: 8px;
}

/* Message box */
.ui.message.purple {
    background: var(--light);
    border-left: 4px solid var(--primary);
}

/* Divider */
.ui.divider.purple {
    border-top-color: var(--primary) !important;
}
