:root {
    --primary-color: #A68A6A; /* helles, warmes Braun */
    --secondary-color: #F3E9DB; /* sehr helles, cremiges Beige */
    --accent-color: #F9F6F2; /* fast weiß, sanftes Beige */
    --text-color: #6B4E3A; /* helleres Braun für Text */
    --background-color: #FCFAF7; /* noch heller, fast weiß */
    --petrol-color: #BFAE99; /* nicht mehr verwendet, nur Fallback */
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: linear-gradient(135deg, rgba(166, 138, 106, 0.04), rgba(243, 233, 219, 0.08));
    min-height: 100vh;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: var(--background-color);
}

.hero-bg-video {
    width: 100%;
    height: auto;
    max-height: 60vh;
    object-fit: cover;
    display: block;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 2rem 3rem 2rem;
    background: rgba(255,255,255,0.88);
    border-radius: 24px;
    box-shadow: 0 2px 24px rgba(60,40,20,0.08);
    text-align: center;
}

.hero h1, .hero h2, .hero p, .hero .tagline, .hero .description {
    color: #fff;
    text-shadow: 0 4px 16px rgba(60,40,20,0.95), 0 1px 2px rgba(0,0,0,0.7);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    color: inherit;
    position: relative;
    z-index: 10;
}

.logo a, .logo a:visited, .logo a:active, .logo a:hover {
    color: #fff !important;
    text-shadow: none !important;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: color 0.2s;
    text-decoration: none !important;
}

.instagram-link {
    margin: 0 auto;
}

.instagram-link:hover {
    opacity: 0.8;
}

.instagram-icon {
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-family: 'WindSong', cursive;
    font-weight: 500;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.02em;
}

.hero-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s, color 0.3s;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    display: inline-block;
}

.cta-button.primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    font-weight: 600;
    border: none;
    padding: 1rem 2rem;
    margin-top: 1rem;
}

.cta-button.primary:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.cta-button.secondary {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.cta-button:hover {
    transform: translateY(-3px);
    background-color: var(--primary-color);
    color: #fff;
}

.benefits {
    padding: 5rem 2rem;
    background-color: var(--accent-color);
}

.benefits h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    padding: 2rem;
    background-color: #fff;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    color: var(--text-color);
}

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

.about {
    padding: 5rem 2rem;
    background-color: var(--secondary-color);
}

.about-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.about-img {
    max-width: 400px;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
    object-fit: cover;
    aspect-ratio: 3/4;
}

.about-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.about-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.about-content p {
    font-size: 1rem !important;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.about-content p:last-child {
    margin-bottom: 0;
}

.cta-section {
    padding: 5rem 2rem;
    text-align: center;
    background-color: var(--petrol-color);
    color: #fff;
}

footer {
    padding: 2rem;
    text-align: center;
    background-color: var(--primary-color);
    color: #fff;
}

.footer-links {
    margin-top: 1rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 1rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--petrol-color);
}

@media (max-width: 900px) {
    .about-flex {
        flex-direction: column;
        gap: 2rem;
    }
    
    .about-img {
        max-width: 300px;
    }
    
    .about-content {
        text-align: center;
    }
    .hero-content {
        padding: 2rem 1rem 1.5rem 1rem;
    }
    .hero-bg-video {
        min-height: 320px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .description {
        font-size: 1rem;
    }
}

.download-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.form-group {
    width: 100%;
}

.form-group input,
.form-group textarea,
.download-form input[type="email"],
.download-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="text"],
.contact-form textarea {
    background: #fff;
    color: var(--text-color);
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    font-size: 1rem;
    padding: 1rem;
    box-sizing: border-box;
    margin-bottom: 0.5rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder,
.download-form input::placeholder,
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #A68A6A;
    opacity: 0.9;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.2);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    position: relative;
    text-align: center;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
}

.close-modal:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .download-form {
        padding: 0 1rem;
    }
}

/* Angebotsseite Styles */
.page-header {
    background: linear-gradient(135deg, rgba(107, 78, 58, 0.7), rgba(191, 174, 153, 0.7)), url('kerzen.jpg') center/cover no-repeat;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

.page-header .logo {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
}

.offers-container {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.offers-container h1 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.offers-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.offer-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.offer-card.featured {
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
}

.offer-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.offer-header {
    background: var(--petrol-color);
    color: #fff;
    padding: 2rem;
    text-align: center;
}

.offer-header h2 {
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 600;
}

.offer-content {
    padding: 2rem;
}

.offer-features {
    list-style: none;
    margin: 0 0 2rem 0;
    padding: 0;
}

.offer-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.offer-features li:before {
    content: "✓";
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

.offer-card .cta-button {
    width: 100%;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.contact-section {
    background-color: var(--accent-color);
    padding: 4rem 2rem;
    text-align: center;
}

.contact-section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-form {
    max-width: 600px;
    margin: 2rem auto 0;
}

.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(107, 78, 113, 0.3);
    border-radius: 30px;
    background: white;
    font-size: 1rem;
    min-height: 150px;
    resize: vertical;
    font-family: 'Poppins', sans-serif;
}

.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

@media (max-width: 768px) {
    .offers-container {
        padding: 2rem 1rem;
    }
    
    .offer-card.featured {
        transform: none;
    }
    
    .offer-card.featured:hover {
        transform: translateY(-5px);
    }
}

/* Cookie and Privacy Popups */
.cookie-popup,
.privacy-popup {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.1);
    z-index: 1000;
}

.cookie-popup.active {
    display: block;
}

.privacy-popup {
    top: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    overflow-y: auto;
}

.privacy-popup.active {
    display: block;
}

.cookie-content,
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.privacy-content {
    text-align: left;
    padding: 2rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.privacy-details {
    margin: 2rem 0;
}

.privacy-details h4 {
    color: var(--primary-color);
    margin: 1.5rem 0 0.5rem;
}

.privacy-details ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
}

.privacy-details li {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.privacy-details li:before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

.privacy-link {
    color: var(--primary-color);
    text-decoration: none;
    margin-left: 1rem;
}

.privacy-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .cookie-popup,
    .privacy-popup {
        padding: 1rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .privacy-content {
        padding: 1rem;
    }
}

/* Legal Pages Styles */
.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.legal-section {
    margin-bottom: 2rem;
}

.legal-section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.legal-section h3 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

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

.offer-description {
    margin: 1rem 0;
    text-align: center;
}

.learn-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.learn-more:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.journey-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.journey-section {
    margin-bottom: 3rem;
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.journey-section ul {
    list-style: none;
    padding-left: 1.5rem;
}

.journey-section li {
    margin-bottom: 0.8rem;
    position: relative;
}

.journey-section li:before {
    content: "•";
    color: var(--secondary-color);
    position: absolute;
    left: -1.5rem;
}

.cta-container {
    text-align: center;
    margin-top: 3rem;
}

.cta-container .price {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Quiz Styles */
.quiz-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.quiz-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.quiz-section {
    margin-bottom: 3rem;
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quiz-options label {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 2px solid var(--background-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quiz-options label:hover {
    background-color: var(--background-color);
    border-color: var(--secondary-color);
}

.quiz-options input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-color);
}

.email-section {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background-color: var(--background-color);
    border-radius: 10px;
}

.email-section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.email-section p {
    margin-bottom: 1.5rem;
}

.quiz-form .cta-button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: block;
}

@media (max-width: 768px) {
    .quiz-container {
        padding: 1rem;
        margin: 1rem;
    }
    
    .quiz-section {
        padding: 1.5rem;
    }
    
    .quiz-section h2 {
        font-size: 1.1rem;
    }
}

/* Guide Download Page Styles */
.guide-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.guide-content {
    text-align: center;
}

.guide-intro {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.guide-section {
    margin-bottom: 4rem;
    text-align: left;
}

.guide-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.guide-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.feature h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.download-section {
    margin: 3rem 0;
}

.download-section .cta-button {
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
}

.next-steps {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.next-steps li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.next-steps li:before {
    content: "→";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .guide-container {
        padding: 1rem;
        margin: 1rem;
    }
    
    .guide-features {
        grid-template-columns: 1fr;
    }
    
    .feature {
        padding: 1.5rem;
    }
}

.instagram-feed {
    padding: 5rem 2rem;
    text-align: center;
    background-color: var(--background-color);
}

.instagram-feed h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.instagram-preview {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.instagram-preview-link {
    text-decoration: none;
    color: inherit;
    display: block;
    padding: 2rem;
}

.instagram-preview-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.instagram-icon-large {
    width: 64px;
    height: 64px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236B4E71'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.instagram-preview-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 0;
}

.instagram-preview-content p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    max-width: 400px;
}

.instagram-preview-content .cta-button {
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .instagram-feed {
        padding: 3rem 1rem;
    }
    
    .instagram-preview {
        margin: 0 1rem;
    }
    
    .instagram-preview-content p {
        font-size: 1rem;
    }
}

/* Dropdown-Menü */
.dropdown {
    position: relative;
    display: inline-block;
    margin-left: auto;
}

.dropbtn {
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 0.8rem 1.5rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    transition: background 0.3s, color 0.3s;
}

.dropbtn:hover, .dropbtn:focus {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 180px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    border-radius: 10px;
    z-index: 1;
    right: 0;
    margin-top: 0.5rem;
}

.dropdown-content a {
    color: var(--primary-color);
    padding: 1rem 1.5rem;
    text-decoration: none;
    display: block;
    font-size: 1rem;
    border-radius: 10px;
    transition: background 0.2s, color 0.2s;
}

.dropdown-content a:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

/* Fix: Dropdown bleibt offen, wenn Maus über Menü oder Button ist */
.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content,
.dropdown-content:hover,
.dropdown-content:focus {
    display: block;
}

.hero-overlay-card {
    background: rgba(233, 220, 201, 0.75); /* transparenter */
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(60,40,20,0.10);
    padding: 2.5rem 2rem 2rem 2rem;
    margin: 2rem 0 0 0;
    max-width: 700px;
    width: 100%;
    text-align: center;
    color: var(--text-color);
    backdrop-filter: blur(1px);
}

.hero-overlay-card .tagline,
.hero-overlay-card .description {
    color: var(--text-color);
    text-shadow: none;
}

.hero-overlay-card .cta-button.primary {
    margin-top: 0.2rem;
}

.hero-overlay-card .form-group input[type="text"] {
    background: rgba(60,40,20,0.22);
    color: #1a120a;
    border: 2px solid #bfae99;
    width: 100%;
    padding: 1rem;
    border-radius: 30px;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.hero-overlay-card .form-group input[type="text"]::placeholder {
    color: #6B4E3A;
    opacity: 0.7;
}

.hero-overlay-card .form-group input[type="email"] {
    background: rgba(60,40,20,0.22);
    color: #1a120a;
    border: 2px solid #bfae99;
    width: 100%;
    padding: 1rem;
    border-radius: 30px;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.hero-overlay-card .form-group input[type="email"]::placeholder {
    color: #6B4E3A;
    opacity: 0.7;
}

.welcome-section {
    padding-top: 2.5rem;
    background: rgba(255,255,255,0.95);
    padding: 5rem 2rem 3rem 2rem;
    text-align: center;
    box-shadow: 0 2px 24px rgba(60,40,20,0.06);
    border-radius: 0 0 32px 32px;
    max-width: 800px;
    margin: -3rem auto 3rem auto;
    position: relative;
    z-index: 2;
}

.welcome-content h1 {
    font-size: 3rem;
    font-family: 'WindSong', cursive;
    font-weight: 500;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
}

.welcome-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.welcome-content .tagline {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

@media (max-width: 900px) {
    .welcome-section {
        padding: 2rem 1rem 1.5rem 1rem;
        max-width: 98vw;
        margin: -2rem auto 2rem auto;
    }
    .welcome-content h1 {
        font-size: 2rem;
    }
    .welcome-content h2 {
        font-size: 1.1rem;
    }
} 

.info-box ul, .info-box li {
    text-align: left !important;
    margin-left: 0;
    padding-left: 1.2em;
} 

/* Blogkarten für Hashnode-Artikel */
.blog-section {
    background: #fff;
    padding: 3rem 0 2rem 0;
    color: var(--text-color);
}
.blog-section h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--primary-color);
}
#hashnode-blog {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.blog-post-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  transition: box-shadow 0.2s;
  color: var(--text-color);
}
.blog-post-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.10);
}
.blog-post-card img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  margin-bottom: 1em;
}
.blog-post-card h3 {
  margin-top: 0;
  margin-bottom: 0.5em;
  font-size: 1.35rem;
  font-family: 'Playfair Display', serif;
  color: var(--primary-color);
}
.blog-post-card a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}
.blog-post-card a.cta-button.secondary {
  background: #f7f5f2;
  color: var(--primary-color);
  border-radius: 6px;
  padding: 0.5em 1.2em;
  font-size: 1rem;
  margin-top: 1em;
  border: 1px solid #e0dbd3;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
}
.blog-post-card a.cta-button.secondary:hover {
  background: #e0dbd3;
  color: #fff;
}
.blog-post-card p {
  color: var(--text-color);
}
@media (max-width: 600px) {
  .blog-section {
    padding: 2rem 0 1rem 0;
  }
  .blog-post-card {
    padding: 1.2rem 0.7rem 1rem 0.7rem;
  }
  .blog-section h2 {
    font-size: 1.4rem;
  }
} 