/* verdo-move Astrologie - Dortmund */
/* Editorial Story Archetype */

:root {
    --primary: #2c1654;
    --secondary: #6b4c9a;
    --accent: #d4af37;
    --text: #1a1a2e;
    --text-light: #5c5c7a;
    --bg: #faf9fc;
    --bg-alt: #f0edf5;
    --white: #ffffff;
    --border: #e0dce8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--bg);
}

a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

img {
    max-width: 100%;
    height: auto;
}

/* Navigation - Minimal Hidden Style */
.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0.9rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.5px;
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    margin: 5px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.4rem 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary);
    color: var(--white) !important;
    padding: 0.6rem 1.3rem !important;
    border-radius: 25px;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--secondary);
}

/* Editorial Content Container */
.content-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.content-wide {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Hero - Editorial Style */
.hero-editorial {
    padding: 10rem 0 5rem;
    background: linear-gradient(135deg, var(--primary) 0%, #1a0f30 100%);
    position: relative;
    overflow: hidden;
}

.hero-editorial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="30" r="1" fill="rgba(212,175,55,0.3)"/><circle cx="80" cy="20" r="0.8" fill="rgba(212,175,55,0.4)"/><circle cx="50" cy="70" r="1.2" fill="rgba(212,175,55,0.2)"/><circle cx="10" cy="80" r="0.6" fill="rgba(212,175,55,0.5)"/><circle cx="90" cy="60" r="0.9" fill="rgba(212,175,55,0.3)"/></svg>');
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.hero-tag {
    display: inline-block;
    background: rgba(212,175,55,0.2);
    color: var(--accent);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(212,175,55,0.3);
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    line-height: 1.25;
}

.hero-subtitle {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 580px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.hero-cta {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212,175,55,0.3);
    color: var(--primary);
}

/* Editorial Intro Section */
.editorial-intro {
    padding: 5rem 0;
    background: var(--white);
}

.editorial-intro .lead {
    font-size: 1.35rem;
    color: var(--text);
    line-height: 1.9;
    margin-bottom: 2rem;
}

.editorial-intro p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.inline-image {
    margin: 3rem -2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(44,22,84,0.1);
}

.inline-image img {
    width: 100%;
    display: block;
}

.image-caption {
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
    padding: 1rem;
    background: var(--bg-alt);
}

/* Quote Block */
.quote-block {
    background: var(--bg-alt);
    padding: 3rem 4rem;
    margin: 3rem 0;
    border-left: 4px solid var(--accent);
    border-radius: 0 12px 12px 0;
}

.quote-block p {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--primary);
    margin: 0;
    line-height: 1.7;
}

.quote-author {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: normal;
}

/* Services Grid - Card Style within Editorial */
.services-section {
    padding: 5rem 0;
    background: var(--bg);
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.8rem;
    justify-content: center;
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.2rem;
    flex: 1 1 320px;
    max-width: 360px;
    box-shadow: 0 4px 20px rgba(44,22,84,0.06);
    border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(44,22,84,0.12);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.3rem;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

.service-card h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 0.7rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    flex-grow: 1;
    margin-bottom: 1.2rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1rem;
}

.service-price span {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 400;
}

.service-card .btn-outline {
    display: inline-block;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s;
}

.service-card .btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* Story Section */
.story-section {
    padding: 5rem 0;
    background: var(--white);
}

.story-section h2 {
    font-size: 1.9rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.story-section p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.story-section .highlight {
    background: linear-gradient(transparent 60%, rgba(212,175,55,0.3) 60%);
}

/* CTA Inline */
.cta-inline {
    background: var(--primary);
    color: var(--white);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    margin: 3rem 0;
}

.cta-inline h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.cta-inline p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.cta-inline .btn-gold {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    padding: 0.9rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.3s;
}

.cta-inline .btn-gold:hover {
    transform: scale(1.05);
    color: var(--primary);
}

/* Testimonials */
.testimonials-section {
    padding: 5rem 0;
    background: var(--bg-alt);
}

.testimonial-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(44,22,84,0.05);
}

.testimonial-content {
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
}

.author-info h4 {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Form Section */
.form-section {
    padding: 5rem 0;
    background: var(--white);
}

.form-container {
    background: var(--bg);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--border);
}

.form-container h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    text-align: center;
}

.form-container .form-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(107,76,154,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.btn-submit:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, #1a0f30 100%);
    color: var(--white);
}

.benefits-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.benefits-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.benefit-item {
    flex: 1 1 280px;
    max-width: 320px;
    text-align: center;
    padding: 1.5rem;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: rgba(212,175,55,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    border: 2px solid var(--accent);
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--accent);
}

.benefit-item h3 {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
}

.benefit-item p {
    opacity: 0.85;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Lunar Calendar Section */
.lunar-section {
    padding: 5rem 0;
    background: var(--bg);
}

.lunar-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.lunar-info {
    flex: 1 1 400px;
}

.lunar-info h2 {
    font-size: 1.9rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.lunar-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.lunar-visual {
    flex: 1 1 300px;
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(44,22,84,0.08);
}

.moon-phase {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 50%, var(--accent) 50%);
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 30px rgba(212,175,55,0.3);
}

.lunar-visual h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.lunar-visual p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: var(--white);
}

.about-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.about-text {
    flex: 1 1 400px;
}

.about-text h2 {
    font-size: 1.9rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.about-image {
    flex: 1 1 300px;
    position: relative;
}

.about-image-box {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 16px;
    padding: 3rem;
    color: var(--white);
    text-align: center;
}

.about-image-box svg {
    width: 80px;
    height: 80px;
    fill: var(--accent);
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: var(--primary);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1 1 200px;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: var(--accent);
}

.footer-col p {
    opacity: 0.8;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul a {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--accent);
    color: var(--primary);
    padding: 1rem 1.8rem;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 5px 25px rgba(212,175,55,0.4);
    z-index: 999;
    transition: transform 0.3s;
    display: none;
}

.sticky-cta:hover {
    transform: scale(1.05);
    color: var(--primary);
}

.sticky-cta.visible {
    display: block;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1.5rem;
    box-shadow: 0 -5px 30px rgba(0,0,0,0.1);
    z-index: 1001;
    display: none;
}

.cookie-banner.visible {
    display: block;
}

.cookie-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    font-size: 0.95rem;
    color: var(--text);
}

.cookie-text a {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.cookie-accept {
    background: var(--primary);
    color: var(--white);
}

.cookie-accept:hover {
    background: var(--secondary);
}

.cookie-reject {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
}

.cookie-reject:hover {
    background: var(--bg-alt);
}

/* Thanks Page */
.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, #1a0f30 100%);
    padding: 2rem;
}

.thanks-card {
    background: var(--white);
    padding: 4rem;
    border-radius: 20px;
    text-align: center;
    max-width: 550px;
}

.thanks-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--accent), #e8c547);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-icon svg {
    width: 45px;
    height: 45px;
    fill: var(--primary);
}

.thanks-card h1 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.thanks-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.thanks-card .btn-home {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 0.9rem 2rem;
    border-radius: 25px;
    font-weight: 500;
}

.thanks-card .btn-home:hover {
    background: var(--secondary);
}

/* Page Header */
.page-header {
    padding: 9rem 0 4rem;
    background: linear-gradient(135deg, var(--primary) 0%, #1a0f30 100%);
    text-align: center;
    color: var(--white);
}

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

.page-header p {
    opacity: 0.85;
    font-size: 1.1rem;
}

/* Contact Page */
.contact-section {
    padding: 5rem 0;
    background: var(--white);
}

.contact-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1 1 300px;
}

.contact-info h2 {
    font-size: 1.7rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: var(--bg-alt);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--primary);
}

.contact-item h4 {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.contact-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-map {
    flex: 1 1 400px;
    background: var(--bg-alt);
    border-radius: 16px;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    color: var(--text-light);
}

.map-placeholder svg {
    width: 60px;
    height: 60px;
    fill: var(--secondary);
    margin-bottom: 1rem;
}

/* Legal Pages */
.legal-section {
    padding: 5rem 0;
    background: var(--white);
}

.legal-section h2 {
    font-size: 1.5rem;
    color: var(--primary);
    margin: 2rem 0 1rem;
}

.legal-section h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin: 1.5rem 0 0.8rem;
}

.legal-section p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.legal-section ul {
    color: var(--text-light);
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
}

/* Services Page */
.services-page-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-full {
    background: var(--bg);
    border-radius: 16px;
    padding: 2.5rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.service-full:nth-child(even) {
    background: var(--white);
    border: 1px solid var(--border);
}

.service-full-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-full-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--white);
}

.service-full-content {
    flex: 1 1 300px;
}

.service-full-content h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.service-full-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-full-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        display: none;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: flex;
    }

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

    .hero-editorial {
        padding: 8rem 0 4rem;
    }

    .quote-block {
        padding: 2rem;
    }

    .inline-image {
        margin: 2rem 0;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }

    .thanks-card {
        padding: 2.5rem 1.5rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .sticky-cta {
        bottom: 80px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }

    .hero-content h1 {
        font-size: 1.7rem;
    }

    .section-header h2 {
        font-size: 1.7rem;
    }

    .service-card {
        padding: 1.8rem;
    }
}
