/* Startseite Spezifisch - Editorial & Monocle Vibe */

/* 1. Fullscreen Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image:
        linear-gradient(to bottom,
            rgba(13, 12, 9, 0.65) 0%,
            rgba(13, 12, 9, 0.25) 45%,
            rgba(13, 12, 9, 0.75) 100%),
        url('/assets/img/hero-kilim.png');
    background-size: cover;
    background-position: center center;
    position: relative;
    overflow: hidden;
    padding: 0 var(--space-md);
}

/* Subtle Geometric Anatolian Ornament via CSS */
.hero::before {
    display: none;
}

.hero-inner {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    /* Left aligned, huge */
    padding-top: var(--space-xl);
}

.hero-ornament {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    opacity: 0.06;
    color: var(--color-kupfer);
    pointer-events: none;
    z-index: 5;
}

.hero h1 {
    color: var(--color-creme);
    max-width: 12ch;
    margin-bottom: var(--space-sm);
}

.hero p.subtitle {
    font-family: var(--font-headline);
    font-size: 1.8rem;
    font-style: italic;
    color: var(--color-kupfer);
    max-width: 600px;
    margin-bottom: var(--space-xl);
    line-height: 1.4;
}

/* 2. Asymmetrical Intro Block */
.intro-block {
    padding: 120px var(--space-md);
    background-color: var(--color-creme);
}

.intro-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.intro-content {
    /* 60% Width, Left aligned */
    width: 60%;
    padding-right: var(--space-xl);
}

.intro-content h2 {
    max-width: 15ch;
    margin-bottom: var(--space-md);
}

.intro-image {
    /* 40% Width Placeholder */
    width: 40%;
    height: 500px;
    background-color: var(--color-elfenbein);
    border: 1px solid rgba(59, 58, 47, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-kupfer);
    position: relative;
    overflow: hidden;
}

.intro-image::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 100px;
    height: 100px;
    border-left: 2px solid var(--color-kupfer);
    border-bottom: 2px solid var(--color-kupfer);
}

.ornament-svg {
    width: 75%;
    height: 75%;
    opacity: 0.15;
}


/* 3. Bold Full-Color Feature Cards */
.features-section {
    padding: 0 var(--space-md) 120px;
    background-color: var(--color-creme);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    /* No gaps, full solid blocks */
    max-width: 1400px;
    margin: 0 auto;
    border: 1px solid var(--color-holz);
}

.feature-card {
    padding: var(--space-xl) var(--space-lg);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: background-color 0.4s ease;
    min-height: 450px;
}

.feature-card:not(:last-child) {
    border-right: 1px solid var(--color-holz);
}

.fc-number {
    font-family: var(--font-headline);
    font-size: 4rem;
    line-height: 1;
    opacity: 0.3;
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
}

/* Specific Card Colors */
.fc-1 {
    background-color: var(--color-holz);
    color: var(--color-creme);
}

.fc-1:hover {
    background-color: #4a483a;
}

.fc-1 h3,
.fc-1 p,
.fc-1 .kategorie-label {
    color: var(--color-creme);
}

.fc-2 {
    background-color: var(--color-elfenbein);
    color: var(--color-holz);
}

.fc-2:hover {
    background-color: #fffaf4;
}

.fc-2 h3,
.fc-2 p {
    color: var(--color-holz);
}

.fc-2 .fc-number {
    color: var(--color-kupfer);
    opacity: 0.2;
}

.fc-3 {
    background-color: var(--color-terrakotta);
    color: var(--color-creme);
}

.fc-3:hover {
    background-color: #d15118;
}

.fc-3 h3,
.fc-3 p {
    color: var(--color-creme);
}

.fc-3 .fc-number {
    color: var(--color-holz);
    opacity: 0.3;
}

.feature-card h3 {
    font-size: 2.2rem;
    margin-top: auto;
    margin-bottom: var(--space-sm);
}

.feature-card p {
    font-size: 1.1rem;
    margin-bottom: 0;
    max-width: 30ch;
}


/* 4. Editorial Articles (Magazine Layout) */
.articles-section {
    padding: 120px var(--space-md);
    background-color: var(--color-elfenbein);
    border-top: 1px solid rgba(59, 58, 47, 0.1);
}

.articles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    max-width: 1400px;
    margin: 0 auto;
}

.article-card {
    display: flex;
    flex-direction: column;
}

.article-card h3 {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
    letter-spacing: -0.01em;
}

.article-card p {
    font-size: 1.15rem;
    color: var(--color-text);
    margin-bottom: var(--space-md);
    max-width: 50ch;
}

.read-more {
    font-family: var(--font-ui);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--color-holz);
    border-bottom: 1px solid var(--color-kupfer);
    padding-bottom: 4px;
    align-self: flex-start;
}

.read-more:hover {
    color: var(--color-terrakotta);
    border-color: var(--color-terrakotta);
}


/* Quote Section */
.quote-section {
    background-image:
        linear-gradient(rgba(13, 12, 9, 0.88), rgba(13, 12, 9, 0.88)),
        url('/assets/img/saz-kerze.png');
    background-size: cover;
    background-position: center;
    padding: 120px var(--space-md);
    display: flex;
    justify-content: center;
    text-align: center;
}

.quote-section blockquote {
    border-left: none;
    margin: 0;
    padding: 0;
}

.quote-section blockquote p {
    color: var(--color-creme);
    font-size: 2.2rem;
    max-width: 800px;
    margin: 0 auto var(--space-md);
    line-height: 1.4;
}

.quote-section blockquote cite {
    color: var(--color-kupfer);
    font-size: 1.2rem;
}


/* 5. Highlight Section with Asymmetry */
.product-highlight {
    padding: 120px var(--space-md);
    background-color: var(--color-creme);
}

.product-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    border-top: 2px solid var(--color-holz);
    padding-top: var(--space-lg);
    gap: 4rem;
}

.product-info {
    width: 50%;
    padding-left: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-info h3 {
    font-size: 3rem;
    margin-bottom: var(--space-xs);
}

.product-price {
    font-family: var(--font-headline);
    font-style: italic;
    font-size: 1.5rem;
    color: var(--color-kupfer);
    margin-bottom: var(--space-md);
}

.product-img {
    width: 50%;
    min-height: 400px;
    background-color: var(--color-holz);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-kupfer);
    padding: var(--space-md);
}

.saz-icon {
    width: 90px;
    height: auto;
    margin-bottom: var(--space-md);
    opacity: 0.8;
}

.product-img-caption {
    font-family: var(--font-headline);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--color-creme);
    opacity: 0.8;
    text-align: center;
}

.product-actions {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}


/* 6. Deep Dark Newsletter */
.newsletter-section {
    padding: 120px var(--space-md);
    background-color: var(--color-holz);
    color: var(--color-creme);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Anatolian Pattern Overlay */
.newsletter-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(45deg, rgba(184, 115, 51, 0.05) 0, rgba(184, 115, 51, 0.05) 2px, transparent 2px, transparent 10px),
        repeating-linear-gradient(-45deg, rgba(184, 115, 51, 0.05) 0, rgba(184, 115, 51, 0.05) 2px, transparent 2px, transparent 10px);
    opacity: 0.8;
    pointer-events: none;
}

.newsletter-inner {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.newsletter-inner h2 {
    color: var(--color-creme);
    font-size: min(4rem, 10vw);
    margin-bottom: var(--space-xs);
}

.newsletter-inner p {
    font-family: var(--font-headline);
    font-style: italic;
    font-size: 1.6rem;
    color: var(--color-kupfer);
    margin-bottom: var(--space-xl);
}

.newsletter-form {
    display: flex;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
    border-bottom: 2px solid var(--color-kupfer);
    padding-bottom: 5px;
}

.newsletter-input {
    background: transparent;
    border: none;
    color: var(--color-creme);
    font-family: var(--font-headline);
    font-size: 1.4rem;
    font-style: italic;
    flex-grow: 1;
    padding: 10px;
}

.newsletter-input::placeholder {
    color: rgba(245, 240, 232, 0.4);
}

.newsletter-input:focus {
    outline: none;
}

.newsletter-form button {
    background: transparent;
    border: none;
    font-family: var(--font-ui);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-kupfer);
    font-weight: 700;
    cursor: pointer;
}

.newsletter-form button:hover {
    color: var(--color-creme);
}


/* Responsive */
@media (max-width: 900px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .intro-inner {
        flex-direction: column;
    }

    .intro-content {
        width: 100%;
        padding-right: 0;
        margin-bottom: var(--space-lg);
    }

    .intro-image {
        width: 100%;
        height: 300px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        border-right: none;
        border-bottom: 1px solid var(--color-holz);
    }

    .feature-card:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid var(--color-holz);
    }

    .feature-card {
        min-height: 300px;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }

    .product-inner {
        flex-direction: column;
    }

    .product-info {
        width: 100%;
        padding-right: 0;
        margin-bottom: var(--space-lg);
    }

    .product-img {
        width: 100%;
    }

    .newsletter-inner p {
        font-size: 1.2rem;
    }
}