checkvorteil/style.css
2025-06-16 15:57:37 +02:00

433 lines
7.2 KiB
CSS

/*
Theme Name: CheckVorteil
Description: Modernes Dark Theme für Online Business Tools & Services
Author: CheckVorteil Team
Version: 1.0
Text Domain: checkvorteil
*/
/* Reset & Base Styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: system-ui, -apple-system, sans-serif;
background-color: #030712;
color: #ffffff;
line-height: 1.6;
}
/* Gradient Text Utility */
.gradient-text {
background: linear-gradient(to right, #c084fc, #60a5fa, #22d3ee);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
color: transparent;
}
/* Container */
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 1rem;
}
/* Navigation */
.navbar {
position: sticky;
top: 0;
z-index: 1000;
background: rgba(3, 7, 18, 0.95);
backdrop-filter: blur(10px);
border-bottom: 1px solid #1f2937;
padding: 1rem 0;
}
.nav-content {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
display: flex;
align-items: center;
text-decoration: none;
}
.logo .custom-logo,
.logo .default-logo {
max-height: 40px;
width: auto;
transition: opacity 0.2s ease;
}
.logo .custom-logo:hover,
.logo .default-logo:hover {
opacity: 0.8;
}
.logo .text-logo {
font-size: 1.5rem;
font-weight: bold;
background: linear-gradient(to right, #c084fc, #60a5fa, #22d3ee);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
color: transparent;
}
.nav-menu {
display: flex;
list-style: none;
gap: 2rem;
}
.nav-menu a {
color: #d1d5db;
text-decoration: none;
transition: color 0.2s;
}
.nav-menu a:hover {
color: #ffffff;
}
.mobile-toggle {
display: none;
background: none;
border: none;
color: #d1d5db;
font-size: 1.5rem;
cursor: pointer;
}
/* Hero Section */
.hero {
padding: 5rem 0 8rem;
text-align: center;
}
.hero h1 {
font-size: clamp(2.5rem, 8vw, 4.5rem);
font-weight: bold;
margin-bottom: 1.5rem;
}
.hero p {
font-size: 1.25rem;
color: #d1d5db;
margin-bottom: 2rem;
max-width: 48rem;
margin-left: auto;
margin-right: auto;
}
.cta-buttons {
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
}
.btn {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 1rem 2rem;
border-radius: 0.5rem;
text-decoration: none;
font-weight: 600;
transition: all 0.2s;
}
.btn-primary {
background-color: #9333ea;
color: white;
}
.btn-primary:hover {
background-color: #7c3aed;
}
.btn-secondary {
background-color: #111827;
color: white;
border: 1px solid #374151;
}
.btn-secondary:hover {
background-color: #1f2937;
}
/* Sections */
.section {
padding: 5rem 0;
}
.section-alt {
background-color: rgba(17, 24, 39, 0.3);
}
.section-header {
text-align: center;
margin-bottom: 3rem;
}
.section-title {
font-size: 2.5rem;
font-weight: bold;
margin-bottom: 1rem;
}
.section-subtitle {
font-size: 1.25rem;
color: #d1d5db;
}
/* Grid Layouts */
.grid {
display: grid;
gap: 1.5rem;
}
.grid-2 {
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.grid-3 {
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
/* Cards */
.card {
background: rgba(17, 24, 39, 0.5);
backdrop-filter: blur(10px);
border: 1px solid #1f2937;
border-radius: 1rem;
padding: 1.5rem;
transition: all 0.3s;
}
.card:hover {
border-color: rgba(147, 51, 234, 0.5);
transform: translateY(-2px);
}
.card h3 {
font-size: 1.25rem;
font-weight: 600;
margin-bottom: 0.75rem;
}
.card p {
color: #9ca3af;
margin-bottom: 1rem;
}
.card-link {
color: #c084fc;
font-weight: 500;
text-decoration: none;
display: inline-flex;
align-items: center;
gap: 0.5rem;
}
.card-link:hover {
color: #a855f7;
}
/* Blog Card Styles */
.blog-card {
background: rgba(17, 24, 39, 0.7);
backdrop-filter: blur(10px);
border: 1px solid #1f2937;
border-radius: 1rem;
overflow: hidden;
transition: all 0.3s ease;
height: 100%;
display: flex;
flex-direction: column;
}
.blog-card:hover {
border-color: rgba(147, 51, 234, 0.5);
transform: translateY(-4px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
}
.blog-card-image {
position: relative;
overflow: hidden;
}
.blog-card-image a {
display: block;
transition: transform 0.3s ease;
}
.blog-card:hover .blog-card-image a {
transform: scale(1.05);
}
.blog-card-content {
padding: 1.5rem;
flex: 1;
display: flex;
flex-direction: column;
}
.blog-card-content .btn {
margin-top: auto;
}
/* Pagination Styles */
.page-numbers {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.5rem 1rem;
background: rgba(17, 24, 39, 0.5);
border: 1px solid #374151;
border-radius: 0.5rem;
color: #d1d5db;
text-decoration: none;
transition: all 0.2s;
}
.page-numbers:hover,
.page-numbers.current {
background: #9333ea;
color: white;
border-color: #9333ea;
}
.pagination {
display: flex;
justify-content: center;
gap: 0.5rem;
flex-wrap: wrap;
}
/* Mobile Styles */
@media (max-width: 768px) {
.mobile-toggle {
display: block;
}
.nav-menu {
display: none;
position: absolute;
top: 100%;
left: 0;
right: 0;
background: #030712;
flex-direction: column;
padding: 1rem;
border-top: 1px solid #1f2937;
}
.nav-menu.active {
display: flex;
}
.cta-buttons {
flex-direction: column;
align-items: center;
}
.grid-2,
.grid-3 {
grid-template-columns: 1fr;
}
}
/* Content Styles */
.content {
max-width: 800px;
margin: 0 auto;
padding: 2rem 0;
}
.content h1, .content h2, .content h3 {
margin-bottom: 1rem;
color: #ffffff;
}
.content p {
margin-bottom: 1rem;
color: #d1d5db;
}
.content ul, .content ol {
margin-bottom: 1rem;
padding-left: 2rem;
color: #d1d5db;
}
.content a {
color: #c084fc;
text-decoration: none;
}
.content a:hover {
text-decoration: underline;
}
/* Breadcrumbs */
.breadcrumbs {
margin-bottom: 2rem;
color: #9ca3af;
font-size: 0.875rem;
}
.breadcrumbs a {
color: #d1d5db;
text-decoration: none;
}
.breadcrumbs a:hover {
color: #ffffff;
}
/* Back Button */
.back-btn {
display: inline-flex;
align-items: center;
gap: 0.5rem;
color: #c084fc;
text-decoration: none;
margin-bottom: 2rem;
font-weight: 500;
}
.back-btn:hover {
color: #a855f7;
}
/* Footer */
.footer {
background: #111827;
padding: 3rem 0;
text-align: center;
color: #9ca3af;
border-top: 1px solid #1f2937;
}
/* Admin Customizer Styles */
.customize-control-custom_logo .customize-control-title {
font-weight: 600;
margin-bottom: 0.5rem;
}
.customize-control-custom_logo .customize-control-description {
color: #666;
font-style: italic;
margin-bottom: 1rem;
}