:root {
    --primary-color: #ff4d4d;
    --secondary-color: #333;
    --background-color: #f5f5f5;
    --text-color: #333;
    --spacing: 2rem;
    --transition: 0.3s ease;
}

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

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    padding-top: 80px; /* Für fixed header */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    padding: var(--spacing) 0;
    background: linear-gradient(135deg, #fff 0%, #f5f5f5 100%);
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.subtitle {
    font-size: 1.2rem;
    color: #666;
}

/* Spruch des Tages */
.spruch-des-tages {
    padding: var(--spacing) 0;
}

.spruch-box {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

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

.spruch-box p {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.derb-level {
    color: #666;
    margin-bottom: 1.5rem;
}

.social-share {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-share button {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    background: #f0f0f0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.social-share button:hover {
    background: #e0e0e0;
}

/* Kalender Promo */
.kalender-promo {
    background: white;
    padding: var(--spacing) 0;
    text-align: center;
}

.kalender-promo h2 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

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

.feature h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
}

/* Buttons */
.cta-button {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255,77,77,0.2);
}

/* Footer */
footer {
    background: var(--secondary-color);
    color: white;
    padding: var(--spacing) 0;
    margin-top: auto;
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding-bottom: 2rem;
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

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

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

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

.footer-bottom p {
    margin: 0;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .footer-sections {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .spruch-box {
        margin: 0 1rem;
        padding: 1.5rem;
    }
    
    .spruch-box p {
        font-size: 1.2rem;
    }
    
    .social-share {
        flex-direction: column;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.spruch-box {
    animation: fadeIn 0.5s ease-out;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 5px 0;
    transition: 0.3s ease;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        padding: 1rem 0;
        text-align: center;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
    }

    .hamburger {
        display: block;
    }

    .nav-links a {
        font-size: 1.5rem;
        margin: 1rem 0;
    }
}

/* Verbesserte Typografie */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

.spruch-box p {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    /* ... bestehende Styles ... */
}

/* Verbesserte Animationen */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.5s ease-out forwards;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.nav-links.active {
    animation: slideIn 0.3s ease-out forwards;
}

/* Neue Styles für die Gift Cards */
.gift-suggestions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

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

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

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

.subtitle {
    font-size: 1.2rem;
    color: #666;
    margin: 1rem 0 2rem;
}

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, #fff 0%, #f5f5f5 100%);
    padding: var(--spacing) 0;
}

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

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial cite {
    color: #666;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff6b6b 100%);
    padding: 3rem 2rem;
    border-radius: 10px;
    color: white;
    margin: 3rem 0;
}

.cta-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.cta-section .cta-button {
    background: white;
    color: var(--primary-color);
    margin-top: 1.5rem;
}

.cta-section .cta-button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Footer Styles */
.main-footer {
    background: var(--secondary-color);
    color: white;
    padding: var(--spacing) 0;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-nav {
    list-style: none;
    padding: 0;
}

.footer-nav li {
    margin-bottom: 0.5rem;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--primary-color);
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    margin-bottom: 0.5rem;
}

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

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section {
        padding: 1rem 0;
    }
}

.spruch-preview {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 5px;
    margin-top: 1rem;
    font-style: italic;
    font-size: 0.9rem;
    color: #666;
}

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

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

.feature h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.feature p {
    color: #666;
    margin-bottom: 1rem;
}

/* Mini-Warenkorb */
.nav-right {
    display: flex;
    align-items: center;
}

.mini-cart {
    position: relative;
    margin-left: 1rem;
}

.cart-icon {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    position: relative;
}

.cart-icon svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem;
    border-radius: 1rem;
    min-width: 1.5rem;
    text-align: center;
}

/* Warenkorb Popup */
.cart-popup {
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    padding: 1rem;
    margin-top: 0.5rem;
    z-index: 1000;
    display: none;
}

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

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.cart-item:last-child {
    border-bottom: none;
}

.item-info {
    flex-grow: 1;
    padding-right: 1rem;
}

.item-name {
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
}

.item-quantity button {
    background: #f0f0f0;
    border: none;
    border-radius: 4px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.item-quantity button:hover {
    background: #e0e0e0;
}

.item-total {
    font-weight: 500;
    color: var(--secondary-color);
    min-width: 70px;
    text-align: right;
}

.remove-item {
    background: none;
    border: none;
    color: #999;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0 0.5rem;
    margin-left: 0.5rem;
}

.remove-item:hover {
    color: var(--primary-color);
}

.cart-popup-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 2px solid #eee;
    font-weight: 600;
    color: var(--secondary-color);
}

.cart-popup-buttons {
    margin-top: 1rem;
}

.cart-popup-buttons .checkout-button {
    width: 100%;
    padding: 0.75rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.cart-popup-buttons .checkout-button:hover {
    background: darken(var(--primary-color), 10%);
}

.cart-popup-buttons .checkout-button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Rechtliche Seiten */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.legal-content h1 {
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.legal-content h2 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.legal-content h3 {
    margin: 1.5rem 0 0.5rem;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Kontaktformular */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin: 2rem 0;
}

.contact-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #dee2e6;
    border-radius: 4px;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .submit-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s;
}

.contact-form .submit-button:hover {
    background: darken(var(--primary-color), 10%);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer Kontaktformular */
.footer-contact {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

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

.footer-contact form {
    display: grid;
    gap: 1rem;
}

.footer-contact input,
.footer-contact textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    font-family: inherit;
}

.footer-contact textarea {
    min-height: 100px;
    resize: vertical;
}

.footer-contact button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-weight: 500;
}

.footer-contact button:hover {
    background: darken(var(--primary-color), 10%);
} 