
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Lato:wght@300;400&display=swap');

:root { --ivory: #FFFFF0; --champagne: #F7E7CE; --warm-beige: #F5F5DC; --soft-brown: #8B4513; --dark-text: #2C2C2C; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background-color: var(--ivory); color: var(--dark-text); font-family: 'Lato', sans-serif; overflow-x: hidden; }
h1, h2, h3, .brand { font-family: 'Playfair Display', serif; font-weight: 400; }

/* Preloader */
#preloader { position: fixed; inset: 0; background: var(--ivory); z-index: 9999; display: flex; flex-direction: column; align-items: center; justify-content: center; transition: opacity 0.8s ease-out; }
.loader-circle { width: 50px; height: 50px; border: 2px solid var(--champagne); border-top: 2px solid var(--soft-brown); border-radius: 50%; animation: spin 1.5s linear infinite; }
.loader-text { margin-top: 20px; font-family: 'Playfair Display', serif; font-style: italic; color: var(--soft-brown); font-size: 1.2rem; }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* STANDARD HEADER (per user request) */
.disclosure-bar { background: #111; color: #fff; text-align: center; padding: 8px 15px; font-size: 0.65rem; letter-spacing: 1px; text-transform: uppercase; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; }
.header-main { background: #fff; border-bottom: 1px solid #eee; position: sticky; top: 0; z-index: 1000; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; }
.header-container { max-width: 1400px; margin: 0 auto; padding: 20px 40px; display: flex; justify-content: space-between; align-items: center; }
.brand-logo, .footer-brand { font-family: 'Times New Roman', serif; font-style: italic; font-size: 1.8rem; text-decoration: none; color: #111; letter-spacing: 2px; text-transform: uppercase; }
.header-nav { display: flex; align-items: center; gap: 30px; }
.header-nav a { text-decoration: none; color: #333; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px;}
.btn-preis { background: #111; color: #fff !important; padding: 10px 25px; font-size: 0.85rem; font-weight: bold; transition: background 0.3s; }
.btn-preis:hover { background: #333; }
.hamburger { display: none; font-size: 24px; cursor: pointer; color: #111; }

/* Hero */
.hero { padding: 5vw 8vw; text-align: center; }
.hero-title { font-size: 6vw; line-height: 1.1; margin-bottom: 20px; color: var(--soft-brown); }
.hero-subtitle { font-size: 1.2rem; max-width: 600px; margin: 0 auto 40px; font-style: italic; color: #555; }
.hero-image { width: 100%; height: 70vh; object-fit: cover; margin-bottom: 60px; filter: sepia(10%); }
.btn-primary { display: inline-block; background: var(--soft-brown); color: var(--ivory); padding: 15px 40px; font-family: 'Lato', sans-serif; text-transform: uppercase; text-decoration: none; letter-spacing: 2px; border: 1px solid var(--soft-brown); transition: all 0.5s ease; }
.btn-primary:hover { background: var(--ivory); color: var(--soft-brown); }

/* Editorial Section */
.editorial-section { padding: 5vw 15vw; background: var(--champagne); text-align: center; }
.editorial-section h2 { font-size: 3rem; margin-bottom: 20px; color: var(--soft-brown); }
.editorial-text { font-size: 1.1rem; line-height: 1.8; margin-bottom: 40px; }
.feature-list { display: flex; justify-content: center; gap: 40px; text-align: left; margin-top: 30px; }
.feature-list div { max-width: 250px; }
.feature-list h3 { margin-bottom: 10px; font-size: 1.2rem; }

/* Layout Grid */
.editorial-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 5vw; padding: 5vw 8vw; }
.gallery { display: grid; gap: 40px; }
.gallery img { width: 100%; height: auto; object-fit: cover; }
.gallery-caption { font-size: 0.9rem; font-style: italic; color: #777; margin-top: 10px; }
.sticky-order { position: sticky; top: 120px; height: max-content; background: var(--champagne); padding: 40px; text-align: center; }
.sticky-order h2 { font-size: 2.2rem; margin-bottom: 15px; }
.price { font-size: 1.8rem; margin-bottom: 25px; font-family: 'Lato', sans-serif; font-weight: 300; }
.editorial-line { width: 50px; height: 1px; background: var(--soft-brown); margin: 20px auto; }

/* Review Content */
.magazine-article { padding: 5vw 15vw; max-width: 1000px; margin: 0 auto; }
.drop-cap::first-letter { font-family: 'Playfair Display', serif; font-size: 5rem; float: left; margin: 10px 15px 0 0; line-height: 0.8; color: var(--soft-brown); }
.magazine-article p { font-size: 1.1rem; line-height: 1.8; margin-bottom: 30px; }
.quote-block { text-align: center; font-size: 2rem; font-style: italic; color: var(--soft-brown); margin: 60px 0; padding: 0 40px; }

/* Contact */
.contact-container { padding: 5vw 8vw; max-width: 800px; margin: auto; text-align: center; }
.form-input { width: 100%; padding: 15px; margin-bottom: 20px; border: none; border-bottom: 1px solid #ccc; background: transparent; font-family: 'Lato', sans-serif; font-size: 1rem; }
.form-input:focus { outline: none; border-bottom-color: var(--soft-brown); }

/* STANDARD FOOTER (per user request) */
.footer-main { background: #111; color: #999; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; padding: 80px 40px 20px; }
.footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
.footer-brand { color: #fff; display: inline-block; margin-bottom: 30px; }
.footer-contact-info p { margin-bottom: 5px; font-size: 0.8rem; color: #ccc; }
.footer-col-2 h4, .footer-col-3 h4 { color: #666; font-size: 0.7rem; letter-spacing: 2px; margin-bottom: 25px; text-transform: uppercase; font-weight: normal; }
.footer-col-2 a, .footer-col-3 a { display: block; color: #ccc; text-decoration: none; font-size: 0.8rem; margin-bottom: 15px; transition: color 0.3s; }
.footer-col-2 a:hover, .footer-col-3 a:hover { color: #fff; }
.footer-bottom { max-width: 1200px; margin: 0 auto; border-top: 1px solid #333; padding-top: 20px; display: flex; justify-content: space-between; font-size: 0.7rem; color: #666; }

/* Cookie Popup */
.cookie-popup { position: fixed; bottom: 40px; right: 40px; width: 350px; background: rgba(255, 255, 240, 0.98); padding: 30px; box-shadow: 0 10px 40px rgba(0,0,0,0.1); border: 1px solid var(--champagne); opacity: 0; visibility: hidden; transition: all 0.6s ease; z-index: 10000; }
.cookie-popup.show { opacity: 1; visibility: visible; }
.cookie-popup p { font-size: 0.9rem; margin-bottom: 20px; line-height: 1.5; }
.cookie-actions { display: flex; gap: 10px; }
.cookie-btn { padding: 10px; border: 1px solid var(--soft-brown); cursor: pointer; flex: 1; background: transparent; }
.cookie-btn.accept { background: var(--soft-brown); color: var(--ivory); }

/* Legal Pages */
.legal-content { padding: 5vw 15vw; min-height: 60vh; }
.legal-content h1 { margin-bottom: 10px; }
.legal-text-block h2 { margin-top: 40px; margin-bottom: 20px; font-size: 1.5rem; color: var(--soft-brown); }
.legal-text-block h3 { margin-top: 30px; margin-bottom: 15px; font-size: 1.2rem; }
.legal-text-block p { margin-bottom: 20px; font-size: 1.1rem; line-height: 1.6; }

/* Mobile */
@media (max-width: 768px) {
    .header-nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: #fff; padding: 20px; border-bottom: 1px solid #eee; }
    .header-nav.active { display: flex; }
    .hamburger { display: block; }
    .editorial-grid { grid-template-columns: 1fr; }
    .feature-list { flex-direction: column; align-items: center; }
    .magazine-article, .legal-content, .editorial-section { padding: 5vw 8vw; }
    .footer-container { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    .cookie-popup { right: 20px; left: 20px; width: auto; bottom: 20px; }
}
    