/* Werner Forster - Homepage Styles */

/* Hero Section */
.wf-hero {
    padding: 0;
}

.wf-hero-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.wf-hero-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.wf-hero-img {
    width: 100%;
    height: 100%;
}

.wf-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

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

.wf-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: var(--white);
}

.wf-hero-label {
    display: inline-block;
    padding: 6px 14px;
    background: var(--hero-color, var(--primary));
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.wf-hero-overlay h3 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 500;
}

.wf-hero-cta {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--white);
    display: inline-block;
    padding-bottom: 4px;
}

/* Category Cloud */
.wf-cats {
    background: var(--white);
    padding: 30px 0;
    border-bottom: 1px solid var(--border);
}

.wf-cat-cloud {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.wf-cat-tag {
    padding: 10px 24px;
    border: 1px solid var(--border);
    border-radius: 30px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.wf-cat-tag:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Featured Products - Circle Style */
.wf-p-circle {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.wf-p-wrap {
    text-align: center;
    width: 280px;
}

.wf-p-circle-img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    display: block;
    border: 4px solid var(--white);
    box-shadow: 0 4px 20px var(--shadow);
}

.wf-p-circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.wf-p-circle-img:hover img {
    transform: scale(1.1);
}

.wf-p-circle-info h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.wf-p-circle-info h3 a {
    color: var(--text);
}

.wf-p-circle-info h3 a:hover {
    color: var(--primary);
}

.wf-sec-cta {
    text-align: center;
    margin-top: 50px;
}

/* Story Section */
.wf-story {
    background: var(--white);
}

.wf-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.wf-story-img {
    border-radius: 8px;
    overflow: hidden;
}

.wf-story-img img {
    width: 100%;
    height: auto;
}

.wf-story-label {
    display: inline-block;
    color: var(--primary);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.wf-story-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.wf-story-content p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.8;
}

.wf-story-content .wf-btn {
    margin-top: 20px;
}

/* Reviews */
.wf-reviews {
    background: linear-gradient(to bottom, var(--background), var(--white));
}

.wf-review-carousel {
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.wf-review-track {
    display: flex;
    gap: 30px;
    animation: scrollReviews 20s linear infinite;
}

@keyframes scrollReviews {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.wf-review-item {
    flex: 0 0 350px;
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px var(--shadow);
    text-align: center;
}

.wf-review-stars {
    color: var(--accent);
    font-size: 20px;
    margin-bottom: 16px;
}

.wf-review-item p {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.wf-review-author {
    font-weight: 600;
    color: var(--text);
}

/* Lookbook */
.wf-lookbook {
    background: var(--white);
}

.wf-look-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: repeat(2, 280px);
    gap: 20px;
}

.wf-look-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.wf-look-large {
    grid-row: span 2;
}

.wf-look-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.wf-look-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
}

.wf-look-overlay span {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 24px;
}

/* Responsive */
@media (max-width: 1024px) {
    .wf-story-grid {
        gap: 40px;
    }
    
    .wf-story-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .wf-hero-grid {
        grid-template-columns: 1fr;
    }
    
    .wf-hero-item {
        aspect-ratio: 16/9;
    }
    
    .wf-story-grid {
        grid-template-columns: 1fr;
    }
    
    .wf-story-img {
        order: -1;
    }
    
    .wf-look-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 250px);
    }
    
    .wf-look-large {
        grid-row: span 1;
    }
    
    .wf-review-track {
        animation: none;
        flex-direction: column;
    }
    
    .wf-review-item {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .wf-p-wrap {
        width: 100%;
    }
    
    .wf-p-circle-img {
        width: 180px;
        height: 180px;
    }
    
    .wf-hero-overlay {
        padding: 24px;
    }
    
    .wf-hero-overlay h3 {
        font-size: 18px;
    }
}
