/* BASIC RESET & VARIABLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #faf8f5;
    --text-color: #332f2d;
    --accent-color: #8c7a6b;
    --accent-hover: #6e5e52;
    --card-bg: #ffffff;
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-family);
    line-height: 1.6;
}

/* HERO SECTION */
.hero-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.hero-image, .hero-content {
    flex: 1;
    min-width: 300px;
}

.hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.hero-content p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* AUDIO BUTTON */
.audio-btn {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    border-radius: 25px;
    cursor: pointer;
    margin-top: 1rem;
    transition: background 0.3s ease;
}

.audio-btn:hover {
    background-color: var(--accent-hover);
}

/* MAIN CONTENT UNTERTEILUNG */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* AFFILIATE GRID */
.shop-section {
    margin: 4rem 0;
}

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

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

.shop-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
}

.shop-card img {
    width: 100%;
    height: 260px; /* Etwas mehr vertikaler Raum für die Loft-Details */
    /* Alternativ: aspect-ratio: 4 / 3; */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.shop-card h3 {
    margin-bottom: 0.5rem;
}

.shop-card p {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
    flex-grow: 1; /* Hält die Buttons auf gleicher Höhe */
}

.shop-btn {
    display: inline-block;
    text-align: center;
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    padding: 0.6rem 1rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.shop-btn:hover {
    background-color: var(--accent-color);
    color: white;
}

/* SQUAD SECTION */
.squad-section {
    background-color: #f2ede7;
    padding: 3rem;
    border-radius: 12px;
    margin: 4rem 0;
}

.squad-container {
    display: flex;
    flex-wrap: wrap-reverse;
    gap: 3rem;
    align-items: center;
}

.squad-content, .squad-image {
    flex: 1;
    min-width: 300px;
}

.squad-image img {
    width: 100%;
    border-radius: 12px;
}

.squad-content h2 {
    margin-bottom: 1.5rem;
}

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

.squad-links {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.squad-btn {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease-in-out;
}

.squad-btn:hover {
    color: var(--accent-color);
	transform: translateX(4px); /* Schiebt den Link beim Hovern elegant minimal nach rechts */
}

/* FOOTER */
footer {
    text-align: center;
    padding: 3rem 2rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    font-size: 0.9rem;
    opacity: 0.7;
}

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

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
}
/* ==========================================================================
   MODALS (Impressum & Datenschutz Pop-up)
   ========================================================================== */
.modal {
    display: none; /* WICHTIG: Startet unsichtbar */
    position: fixed;
    z-index: 2000; /* Höher als alles andere auf der Seite */
    left: 0; 
    top: 0; 
    width: 100%; 
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #ffffff;
    color: #111111;
    margin: 8% auto;
    padding: 40px;
    border-radius: 8px;
    width: 85%;
    max-width: 700px;
    max-height: 75vh;
    overflow-y: auto;
    text-align: left;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.close-modal {
    position: absolute;
    right: 25px; 
    top: 20px;
    font-size: 32px;
    font-weight: 300;
    cursor: pointer;
    color: #777777;
    transition: color 0.2s;
}

.close-modal:hover { 
    color: #000000; 
}

.modal h3 { 
    margin-bottom: 25px; 
    border-bottom: 1px solid #eee; 
    padding-bottom: 10px; 
    font-size: 1.6rem; 
    color: #111111; 
}

.modal h4 { 
    margin: 25px 0 8px 0; 
    font-size: 1rem; 
    text-transform: uppercase; 
    color: #333; 
    letter-spacing: 1px; 
}

.modal p { 
    color: #444; 
    margin-bottom: 15px; 
    font-size: 0.95rem; 
    line-height: 1.6; 
}

.modal a { 
    color: #111111; 
    text-decoration: underline; 
}

.legal-links {
    margin-top: 10px;
    font-size: 0.85rem;
}

.legal-links a { 
    margin: 0 10px; 
    cursor: pointer; 
    color: var(--text-color);
    text-decoration: none; 
    opacity: 0.7;
    transition: opacity 0.2s; 
}

.legal-links a:hover { 
    opacity: 1; 
}

/* ==========================================================================
   UNTERSEITEN LAYOUT (Workspace, Comfort, Decor)
   ========================================================================== */

/* Überschriften-Bereich der Unterseite */
.subpage-header {
    text-align: center;
    margin-bottom: 3rem;
}

.subpage-header h1 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.subpage-header p {
    font-size: 1.1rem;
    opacity: 0.7;
}

/* Zurück-Button */
.back-nav {
    margin-bottom: 2rem;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    color: var(--text-color);
    opacity: 0.7;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.back-btn:hover {
    opacity: 1;
    color: var(--accent-color);
}

.back-btn::before {
    content: "←";
    margin-right: 8px;
}

/* Produkt-Liste untereinander */
.product-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}

.product-item {
    background-color: var(--card-bg);
    border: 1px solid rgba(0, 0, 0, 0.05); /* Weicher, dezenter Rand passend zum Footer */
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    display: flex;
    gap: 2.5rem;
    align-items: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.04);
}

.product-item img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0; /* Verhindert, dass das Bild gestaucht wird */
}

.product-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-details h3 {
    font-size: 1.4rem;
    color: var(--text-color);
    margin: 0;
}

.product-details p {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

/* Mobile Optimierung für Smartphones */
@media (max-width: 768px) {
    .product-item {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .product-item img {
        width: 100%;
        max-width: 250px;
        height: 250px;
    }

    .product-details {
        align-items: center;
    }
}
/* ==========================================================================
   FANVUE HIGHLIGHT BANNER
   ========================================================================== */
.fanvue-section {
    background-color: var(--card-bg);
    border: 2px solid var(--accent-color); /* Der Kasten, der ins Auge fällt */
    padding: 3rem;
    border-radius: 12px;
    margin: 4rem 0;
    box-shadow: 0 10px 30px rgba(140, 122, 107, 0.06); /* Ganz zarter Schatten in Akzentfarbe */
}

.fanvue-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.fanvue-content, .fanvue-image {
    flex: 1;
    min-width: 300px;
}

.fanvue-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 8px;
}

.fanvue-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.fanvue-content p {
    margin-bottom: 2rem;
    font-size: 1.05rem;
    opacity: 0.9;
}

/* Spezial-Button: Vollflächig gefärbt für mehr Klicks */
.fanvue-highlight-btn {
    background-color: var(--accent-color) !important;
    color: white !important;
    padding: 0.8rem 2rem;
}

.fanvue-highlight-btn:hover {
    background-color: var(--accent-hover) !important;
    border-color: var(--accent-hover) !important;
}

/* Mobile Optimierung */
@media (max-width: 768px) {
    .fanvue-container {
        flex-direction: column-reverse; /* Bild wandert auf dem Handy sauber nach oben */
        text-align: center;
        gap: 2rem;
    }
    
    .fanvue-section {
        padding: 2rem 1.5rem;
    }

    .fanvue-image img {
        height: 240px;
    }
}

/* ==========================================================================
   SOCIAL MEDIA LINKS
   ========================================================================== */

/* Hero-Bereich Styling */
.hero-socials {
    margin-top: 1.5rem;
    display: flex;
    gap: 1.5rem;
}

.hero-socials .social-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    opacity: 0.7;
    transition: all 0.2s ease-in-out;
    position: relative;
}

.hero-socials .social-link:hover {
    opacity: 1;
    color: var(--accent-color);
}

/* Kleiner, eleganter Unterstrich-Effekt beim Hovern */
.hero-socials .social-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.2s ease;
}

.hero-socials .social-link:hover::after {
    width: 100%;
}

/* Footer-Bereich Styling */
.footer-socials {
    margin: 1rem 0;
    font-size: 0.95rem;
}

.footer-socials a {
    color: var(--text-color);
    text-decoration: none;
    margin: 0 8px;
    opacity: 0.7;
    transition: opacity 0.2s, color 0.2s;
}

.footer-socials a:hover {
    opacity: 1;
    color: var(--accent-color);
}

/* ==========================================================================
   PUMPENWERK 3 FEATURE SECTION
   ========================================================================== */
.project-section {
    background-color: #1a1918; /* Dunkler Industrie-Look als Kontrast */
    color: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    margin: 4rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.project-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.project-content, .project-image {
    flex: 1;
    min-width: 300px;
}

.project-image img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.project-badge {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.project-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.project-content p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    opacity: 0.85;
}

.status-text {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem;
    border-left: 3px solid var(--accent-color);
    border-radius: 0 4px 4px 0;
    font-size: 0.95rem !important;
}

/* Button-Anpassung für den dunklen Hintergrund */
.project-highlight-btn {
    border-color: #ffffff !important;
    color: #ffffff !important;
    margin-top: 1.5rem;
}

.project-highlight-btn:hover {
    background-color: #ffffff !important;
    color: #1a1918 !important;
}

/* Mobile Anpassung */
@media (max-width: 768px) {
    .project-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    .status-text {
        text-align: left;
    }
}