/* Custom CSS für Laminier-Domain Verkaufsseite */

:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #3498db;
    --light-gray: #ecf0f1;
    --dark-gray: #7f8c8d;
    --text-dark: #2c3e50;
    --text-light: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    padding: 80px 0;
    margin-bottom: 0;
}

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

.hero-section .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Domain List */
.domain-list {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.domain-list h3 {
    color: var(--text-dark) !important;
}

.domain-item {
    background: var(--text-light);
    padding: 1rem;
    margin: 0.5rem 0;
    border-radius: 5px;
    border-left: 4px solid var(--accent-color);
    font-weight: 600;
    color: var(--primary-color);
}

/* Hero Domain List */
.hero-domain-list {
    margin: 2rem 0;
}

.hero-domain-list h3 {
    color: var(--text-light);
    font-weight: 600;
}

.hero-domain-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1rem;
    margin: 0.25rem 0;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    color: var(--text-light);
    text-align: center;
    transition: all 0.3s ease;
}

.hero-domain-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Content Sections */
.content-section {
    padding: 60px 0;
}

.content-section:nth-child(even) {
    background: var(--light-gray);
}

.section-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

/* Cards */
.card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-bottom: 2rem;
}

.card:hover {
    transform: translateY(-5px);
}

.card-header {
    background: var(--primary-color);
    color: var(--text-light);
    font-weight: 600;
}

/* Images */
.content-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin: 1rem 0;
}

.image-caption {
    font-size: 0.9rem;
    color: var(--dark-gray);
    text-align: center;
    margin-top: 0.5rem;
}

/* Contact Form */
.contact-form {
    background: var(--text-light);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 5px;
    padding: 12px 15px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

.btn-primary {
    background: var(--accent-color);
    border-color: var(--accent-color);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #2980b9;
    border-color: #2980b9;
    transform: translateY(-2px);
}

/* Honeypot Field */
.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 3rem 0 2rem;
    margin-top: 4rem;
}

.footer a {
    color: var(--accent-color);
    text-decoration: none;
}

.footer a:hover {
    color: var(--text-light);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
    
    .content-section {
        padding: 40px 0;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

/* SEO-friendly styling */
.highlight {
    background: rgba(52, 152, 219, 0.1);
    padding: 2px 4px;
    border-radius: 3px;
}

.keyword {
    font-weight: 600;
    color: var(--accent-color);
}

.hero-section .keyword {
    color: var(--text-light) !important;
}
