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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header */
header {
    text-align: center;
    padding: 0.8rem 1rem;
    background-color: rgba(255, 255, 255, 0.95);
    position: sticky;
    top: 0;
    z-index: 998;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

h1 {
    font-size: 0.85rem;
    line-height: 1.1;
    color: #999;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Grid Layout */
.grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.grid-item:hover img {
    transform: scale(1.05);
}

/* Einzelne Bilder */
.single-images {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.single-image {
    width: 100%;
    position: relative;
}

.single-image a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.single-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.single-image:hover img {
    transform: scale(1.02);
}

.affiliate-hint {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.single-image:hover .affiliate-hint {
    opacity: 1;
}

/* Über mich Sektion */
.about-me {
    max-width: 800px;
    margin: 3rem auto;
    padding: 2rem;
    text-align: center;
}

.about-image {
    max-width: 250px;
    margin: 0 auto 2rem;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.about-me h2 {
    margin-bottom: 1.5rem;
    color: #333;
}

.about-content {
    line-height: 1.8;
}

.about-content p {
    margin-bottom: 1rem;
}

.contact-link {
    margin-top: 2rem;
}

.email-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.email-button:hover {
    background-color: #555;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

/* Footer */
footer {
    background-color: #f8f8f8;
    padding: 2rem;
    text-align: center;
    margin-top: 3rem;
}

footer nav {
    margin-bottom: 1rem;
}

footer nav a {
    color: #333;
    text-decoration: none;
    margin: 0 1rem;
}

footer nav a:hover {
    text-decoration: underline;
}

.affiliate-notice {
    display: block;
    color: #999;
    font-size: 0.75rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.copyright {
    color: #333;
    font-size: 1rem;
    border-top: 1px solid #eee;
    padding-top: 1rem;
    margin-top: 1rem;
}

/* Responsive Design */
/* Tablet */
@media (max-width: 1024px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
        padding: 1.5rem;
    }
}

/* Mobil */
@media (max-width: 640px) {
    .grid-container {
        grid-template-columns: 1fr;
        max-width: 100%;
        padding: 1rem;
    }

    .grid-item {
        margin-bottom: 1rem;
    }

    /* Einzelne Bilder für Mobil */
    .single-images {
        padding: 1rem;
    }

    .single-image {
        margin-bottom: 1rem;
    }

    /* Header für Mobil */
    header {
        padding: 0.5rem;
    }

    h1 {
        font-size: 0.75rem;
    }

    .about-image {
        max-width: 200px;
        margin-bottom: 1.5rem;
    }

    .about-me {
        padding: 1rem;
    }

    .shop-now-button {
        bottom: 20px;
        right: 20px;
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .cookie-banner {
        top: 40px;
    }
}

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

/* Shop Now Button */
.shop-now-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #FF69B4;  /* Hot Pink */
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(255, 105, 180, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.shop-now-button.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.shop-now-button:hover {
    background-color: #FF1493;  /* Deep Pink */
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 105, 180, 0.4);
}

.shop-now-button .affiliate-hint {
    font-size: 0.8em;
    opacity: 1;
    position: relative;
    background: none;
    padding: 0;
    margin-left: 2px;
}

/* Styles für Impressum und Datenschutz */
.content-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
    line-height: 1.6;
}

.content-container h1 {
    color: #333;
    margin-bottom: 2rem;
    font-size: 2.2em;
}

.content-container h2 {
    color: #444;
    margin: 2rem 0 1rem;
    font-size: 1.8em;
}

.content-container h3 {
    color: #555;
    margin: 1.5rem 0 0.8rem;
    font-size: 1.4em;
}

.legal-section {
    margin-bottom: 2.5rem;
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

.legal-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
    color: #666;
}

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

.privacy-intro {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.legal-section a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: #0056b3;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .content-container {
        padding: 0 15px;
    }
    
    .content-container h1 {
        font-size: 1.8em;
    }
    
    .content-container h2 {
        font-size: 1.5em;
    }
    
    .content-container h3 {
        font-size: 1.2em;
    }
    
    .legal-section {
        padding: 1rem;
    }
}

.cookie-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 99999;
    display: none;
    border-bottom: 1px solid #eee;
}

.cookie-banner p {
    margin: 0 0 15px 0;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

.cookie-banner .buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.cookie-banner button {
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-banner button.accept {
    background-color: #8a2be2;
    color: white;
}

.cookie-banner button.accept:hover {
    background-color: #7a1dd2;
}

.cookie-banner button.decline {
    background-color: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
}

.cookie-banner button.decline:hover {
    background-color: #e8e8e8;
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 15px;
    }
    
    .cookie-banner p {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .cookie-banner button {
        padding: 6px 15px;
        font-size: 13px;
    }
}

.cookie-settings {
    color: #666;
    font-size: 0.9rem;
    text-decoration: none;
}

.cookie-settings:hover {
    text-decoration: underline;
    color: #8A2BE2;
} 