/* ==================================== BabesAndBitches - Main Stylesheet Purple/Violet Theme ==================================== */ /* COLOR SCHEME - Purple/Violet */ :root { --primary: #764ba2; --primary-light: #8b5fcf; --primary-dark: #5a3a7d; --secondary: #667eea; --accent: #a855f7; --text-dark: #1a1a1a; --text-medium: #555; --text-light: #888; --bg-white: #ffffff; --bg-light: #f8f9fa; --bg-card: #fafbfc; --border-light: #e8e8e8; --shadow-sm: 0 2px 8px rgba(118, 75, 162, 0.08); --shadow-md: 0 4px 16px rgba(118, 75, 162, 0.12); --shadow-lg: 0 8px 24px rgba(118, 75, 162, 0.15); --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%); } /* BASE STYLES */ body { background: var(--bg-light); color: var(--text-dark); font-family: 'Segoe UI', Arial, sans-serif; margin: 0; padding: 0; } .container { max-width: 1200px; margin: 0 auto; padding: 0 15px; } /* THREE COLUMN LAYOUT */ .three-cols { display: grid; grid-template-columns: 240px 1fr 240px; gap: 30px; align-items: start; } .three-cols-body { min-width: 0; } .three-cols-aside { position: sticky; top: 20px; } /* SIDEBAR WIDGETS */ .inner-aside { background: var(--bg-white); border-radius: 12px; box-shadow: var(--shadow-sm); padding: 18px; margin-bottom: 24px; border: 1px solid var(--border-light); transition: all 0.3s ease; } .inner-aside:hover { box-shadow: var(--shadow-md); } .inner-aside .heading .title { font-size: 16px; font-weight: 700; color: var(--text-dark); margin: 0 0 14px; padding-bottom: 10px; border-bottom: 2px solid var(--primary); position: relative; } .inner-aside .heading .title::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 50px; height: 2px; background: var(--accent); } .inner-aside .heading .title a { color: inherit; text-decoration: none; transition: color 0.3s; } .inner-aside .heading .title a:hover { color: var(--primary); } /* SIDEBAR LIST ITEMS */ .aside-list { list-style: none; padding: 0; margin: 0; } .aside-list .item { margin: 0 0 6px; } .aside-list .item:last-child { margin-bottom: 0; } .aside-list .item a { display: block; padding: 10px 12px; border-radius: 8px; color: var(--text-medium); text-decoration: none; font-size: 13px; line-height: 1.5; border-left: 3px solid transparent; transition: all 0.3s ease; } .aside-list .item a:hover { background: var(--bg-card); color: var(--primary); border-left-color: var(--primary); padding-left: 16px; } /* SIDEBAR TAGS */ .aside-list.tags { display: flex; flex-wrap: wrap; gap: 6px; } .aside-list.tags li { margin: 0 !important; } .aside-list.tags li a { display: inline-block !important; padding: 6px 12px !important; background: var(--bg-card); border-radius: 16px; font-size: 12px; color: var(--text-medium) !important; border: 1px solid var(--border-light); font-weight: 500; } .aside-list.tags li a:hover { background: var(--gradient-primary) !important; color: white !important; border-color: var(--primary); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(118, 75, 162, 0.3); } /* SIDEBAR SMALL POST ITEMS */ .item-post.small { background: var(--bg-white); border-radius: 10px; overflow: hidden; margin-bottom: 14px; box-shadow: var(--shadow-sm); transition: all 0.3s ease; display: block; text-decoration: none; } .item-post.small:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); } .item-post.small .wrap_image { display: block; position: relative; overflow: hidden; } .item-post.small .wrap_image img { width: 100%; height: auto; display: block; transition: transform 0.4s ease; } .item-post.small:hover .wrap_image img { transform: scale(1.08); } .item-post.small .wrap_desc { padding: 12px 14px; } .item-post.small h3 { font-size: 13px !important; margin: 0 0 8px !important; line-height: 1.4; font-weight: 600; color: var(--text-dark); } .item-post.small .rate-block { font-size: 11px; color: var(--text-light); } .item-post.small .rate-block .all-value { font-weight: 700; color: var(--primary); } /* COMPACT GALLERY LIST */ .compact-gallery-list { display: flex; flex-direction: column; gap: 8px; } .compact-item { display: flex; align-items: center; gap: 10px; padding: 10px; background: var(--bg-card); border-radius: 8px; transition: all 0.3s ease; border-left: 3px solid transparent; } .compact-item:hover { background: white; border-left-color: var(--primary); box-shadow: var(--shadow-sm); } .rank-number { font-size: 16px; font-weight: 700; color: var(--primary); min-width: 30px; text-align: center; } .compact-link { display: flex; flex-direction: column; gap: 4px; text-decoration: none; flex: 1; } .compact-title { font-size: 12px; font-weight: 600; color: var(--text-dark); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; } .compact-rating { font-size: 11px; color: var(--text-light); font-weight: 600; } .compact-item:hover .compact-title { color: var(--primary); } /* GALLERY GRID */ .gallery-grid { display: grid !important; grid-template-columns: repeat(2, 1fr) !important; gap: 45px !important; margin: 35px 0 !important; width: 100% !important; max-width: 100% !important; } /* ITEM POST - Main gallery cards */ .item-post { background: var(--bg-white); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-sm); transition: all 0.3s ease; max-width: 350px !important; margin: 0 auto !important; width: 100% !important; position: relative; border: 1px solid var(--border-light); } .item-post:hover { box-shadow: var(--shadow-md); } /* IMAGE WRAPPER */ .wrap_image { position: relative; overflow: hidden; background: var(--bg-card); } .wrap_image a { display: block; cursor: pointer; } .wrap_image img { width: 100%; height: auto; max-height: 525px; object-fit: cover; display: block; transition: opacity 0.3s ease; } .wrap_image a:hover img { opacity: 0.95; } /* IMAGE COUNT BADGE */ .image-count-badge { position: absolute; bottom: 12px; right: 12px; background: rgba(0, 0, 0, 0.75); color: white; padding: 6px 12px; border-radius: 16px; font-size: 12px; font-weight: 600; z-index: 5; backdrop-filter: blur(8px); pointer-events: none; } /* POST DESCRIPTION AREA */ .wrap_desc { padding: 20px 22px 22px; } /* POST TITLE */ .info h2 { margin: 0 0 14px; font-size: 1.15rem; font-weight: 600; line-height: 1.4; } .info h2 a { color: var(--text-dark); text-decoration: none; transition: color 0.3s ease; } .info h2 a:hover { color: var(--primary); } /* STAT INFO */ .stat { display: flex; flex-direction: column; gap: 10px; font-size: 0.88rem; color: var(--text-light); margin-bottom: 0; } .stat .item { display: flex; align-items: flex-start; gap: 10px; padding: 4px 0; } .stat .item .icon { font-style: normal; font-weight: normal; font-size: 16px; min-width: 20px; text-align: center; opacity: 0.8; flex-shrink: 0; margin-top: 2px; } .stat .value { color: var(--text-medium); font-weight: 500; line-height: 1.5; } .stat a.value { color: var(--primary); text-decoration: none; font-weight: 600; transition: all 0.2s ease; } .stat a.value:hover { color: var(--primary-light); text-decoration: underline; } .stat .item.description-item { padding-top: 8px; border-top: 1px solid var(--border-light); margin-top: 4px; } .stat .item.description-item .value { line-height: 1.6; color: var(--text-medium); } .more-link { color: var(--primary) !important; font-weight: 700 !important; text-decoration: none !important; transition: all 0.3s ease !important; display: inline !important; margin-left: 4px !important; } .more-link:hover { color: var(--accent) !important; text-decoration: underline !important; } .elips { overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; } /* HEADING SECTION */ .heading { background: var(--bg-white); padding: 25px; border-radius: 12px; margin-bottom: 25px; box-shadow: var(--shadow-sm); border: 1px solid var(--border-light); } .heading .title { margin: 0 0 10px; font-size: 1.75rem; font-weight: 700; color: var(--text-dark); } /* SEO TEXT SECTION */ .seo-content { background: linear-gradient(135deg, #fff 0%, #fafbfc 100%); padding: 25px 30px; border-radius: 10px; margin-bottom: 25px; border-left: 4px solid var(--primary); line-height: 1.8; color: var(--text-medium); box-shadow: var(--shadow-sm); } .seo-content h2 { font-size: 1.5rem; font-weight: 700; color: var(--text-dark); margin: 0 0 15px 0; } .seo-content p { margin: 0 0 15px 0; } .seo-content p:last-child { margin-bottom: 0; } .seo-content strong { color: var(--primary); font-weight: 600; } /* DESCRIPTION BOX */ .description { background: linear-gradient(135deg, #fff 0%, #fafbfc 100%); padding: 18px 22px; border-radius: 10px; margin-bottom: 20px; border-left: 4px solid var(--primary); line-height: 1.7; color: var(--text-medium); box-shadow: var(--shadow-sm); } /* PAGINATION */ .pagination { display: flex; justify-content: center; gap: 8px; margin: 45px 0 35px; flex-wrap: wrap; } .pagination .item a, .pagination .item span { display: inline-flex; align-items: center; justify-content: center; min-width: 42px; height: 42px; padding: 0 14px; background: var(--bg-white); border: 2px solid var(--border-light); border-radius: 8px; color: var(--text-dark); text-decoration: none; font-weight: 600; transition: all 0.3s ease; } .pagination .item a:hover { background: var(--gradient-primary); color: white; border-color: var(--primary); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(118, 75, 162, 0.3); } .pagination .active a { background: var(--gradient-primary); color: white; border-color: var(--primary); } /* SPOT SECTION */ .spot { background: var(--gradient-primary); padding: 40px; border-radius: 12px; color: white; margin-top: 40px; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; } .spot::before { content: ''; position: absolute; top: -50%; right: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%); pointer-events: none; } .spot p { font-size: 1.05rem; line-height: 1.8; margin-bottom: 15px; position: relative; z-index: 1; } .spot p:last-child { margin-bottom: 0; } .spot strong { font-weight: 700; } .spot h2 { font-size: 1.8rem; font-weight: 700; margin: 0 0 20px 0; position: relative; z-index: 1; } /* RESPONSIVE */ @media (max-width: 1024px) { .three-cols { grid-template-columns: 1fr; } .aside-left { display: none; } } @media (max-width: 992px) { .gallery-grid { grid-template-columns: 1fr !important; gap: 35px !important; } .item-post { max-width: 100% !important; } } @media (max-width: 768px) { .aside-right { display: none; } }