/* ============================================
   SEO AGENTUR GÖSLING - PREMIUM DESIGN
   Luxuriöses Creme/Gold Theme
============================================ */

/* ===== CSS VARIABLES ===== */
:root {
    --cream: #F5F0E8;
    --dark: #0E0D0A;
    --gold: #B8975A;
    --gold-light: #D4B87A;
    --muted: #7A7568;
    --border: rgba(184,151,90,0.25);
    --white: #FFFFFF;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--cream);
    color: var(--dark);
    font-family: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 300;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

em { 
    font-style: italic; 
    color: var(--gold);
}

/* ===== CUSTOM CURSOR ===== */
.cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}

.cursor-ring {
    position: fixed;
    width: 32px;
    height: 32px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0.6;
}

@media (max-width: 768px) {
    .cursor, .cursor-ring { display: none; }
}

/* ===== HEADER & NAVIGATION ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.5s ease;
}

header.scrolled {
    background: rgba(245,240,232,0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--border);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 60px;
    transition: padding 0.5s ease;
}

header.scrolled nav {
    padding: 18px 60px;
}

.logo, .logo a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo span {
    color: var(--gold);
}

.nav-main {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-main a {
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--dark);
    text-decoration: none;
    position: relative;
    padding-bottom: 3px;
    transition: color 0.3s ease;
}

.nav-main a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s ease;
}

.nav-main a:hover {
    color: var(--gold);
}

.nav-main a:hover::after {
    width: 100%;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--cream);
    min-width: 220px;
    padding: 1rem 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(14,13,10,0.08);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    font-size: 0.7rem;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: rgba(184,151,90,0.08);
}

.nav-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* CTA Button in Nav */
.nav-cta .btn {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--border);
    padding: 10px 24px;
    transition: all 0.35s ease;
    text-decoration: none;
}

.nav-cta .btn:hover {
    background: var(--gold);
    color: var(--cream);
}

.nav-cta .btn::after {
    display: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
    padding: 0.5rem;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 60px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 75% 50%, rgba(184,151,90,0.08) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 20% 80%, rgba(184,151,90,0.05) 0%, transparent 60%);
}

.hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
}

.hero-line {
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--border) 30%, var(--border) 70%, transparent);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-overline {
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-overline::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--gold);
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 32px;
}

.hero p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--muted);
    max-width: 600px;
    margin-bottom: 48px;
}

/* ===== BUTTONS ===== */
.btn-primary {
    background: var(--dark);
    color: var(--cream);
    padding: 16px 40px;
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.35s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--gold);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    padding: 16px 40px;
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.35s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--cream);
    border-color: var(--gold);
}

.btn-large {
    padding: 20px 56px;
    font-size: 0.75rem;
}

/* ===== SECTIONS ===== */
section {
    padding: 100px 60px;
}

.section-dark {
    background: var(--dark);
    color: var(--cream);
}

.section-header {
    margin-bottom: 80px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
}

.section-overline {
    font-size: 0.63rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.section-overline::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 24px;
}

.section-desc {
    max-width: 600px;
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--muted);
}

.section-dark .section-desc {
    color: rgba(245,240,232,0.6);
}

/* ===== CARDS ===== */
.card {
    background: white;
    padding: 48px;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(14,13,10,0.08);
}

.card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.card p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* ===== GRID LAYOUTS ===== */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
    padding: 120px 60px 40px;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.breadcrumbs ul {
    display: flex;
    gap: 12px;
    list-style: none;
    color: var(--muted);
}

.breadcrumbs li:not(:last-child)::after {
    content: '/';
    margin-left: 12px;
    color: var(--border);
}

.breadcrumbs a {
    color: var(--gold);
    text-decoration: none;
}

/* ===== FOOTER ===== */
footer {
    background: #080807;
    padding: 60px 60px 40px;
    color: rgba(245,240,232,0.6);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(184,151,90,0.1);
}

.footer-section h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--gold-light);
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(245,240,232,0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.3);
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: rgba(245,240,232,0.6);
    letter-spacing: 0.08em;
}

.footer-logo span {
    color: var(--gold);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--cream);
    padding: 32px 60px;
    z-index: 10000;
    border-top: 1px solid rgba(184,151,90,0.2);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.cookie-text {
    flex: 1;
}

.cookie-text p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(245,240,232,0.7);
    margin-bottom: 8px;
}

.cookie-text a {
    color: var(--gold);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 16px;
}

.cookie-btn {
    padding: 12px 32px;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Jost', sans-serif;
}

.cookie-accept {
    background: var(--gold);
    color: var(--dark);
}

.cookie-accept:hover {
    background: var(--gold-light);
}

.cookie-decline {
    background: transparent;
    color: rgba(245,240,232,0.5);
    border: 1px solid rgba(184,151,90,0.2);
}

.cookie-decline:hover {
    color: var(--cream);
    border-color: var(--gold);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    nav { padding: 24px 40px; }
    section { padding: 80px 40px; }
    .hero { padding: 100px 40px 60px; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .footer-content { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
        position: absolute;
        left: 40px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001;
    }
    
    .logo {
        text-align: center;
        flex: 1;
    }
    
    .nav-main {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--cream);
        flex-direction: column;
        padding: 40px;
        gap: 0;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-main.active {
        display: flex;
    }
    
    .nav-main li {
        width: 100%;
        border-bottom: 1px solid var(--border);
        padding: 20px 0;
    }
    
    .nav-main a {
        font-size: 0.9rem;
        padding: 0;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        border: none;
        box-shadow: none;
        background: rgba(184,151,90,0.05);
        margin-top: 16px;
        padding: 16px 0;
    }
    
    .nav-cta {
        position: absolute;
        right: 40px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .nav-cta .btn-outline {
        display: none;
    }
    
    nav { padding: 20px 40px; }
    section { padding: 60px 30px; }
    .hero { padding: 100px 30px 60px; }
    .breadcrumbs { padding: 100px 30px 30px; }
    
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

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

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

@media (max-width: 768px) {
    .container {
        padding: 0 30px;
    }
}
