/**
 * SERPjacker CMS - Stil 11: Retro Vintage
 * Respekterer systemets fargevalg (color1-color4)
 * Nostalgisk 70-talls inspirert design med varme farger
 * Filnavn: theme_retro_vintage.css
 */

@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Josefin+Sans:wght@300;400;600;700&display=swap');

/* ===== TYPOGRAFI ===== */
body.style-retro-vintage {
    font-family: 'Josefin Sans', sans-serif;
}

.style-retro-vintage .site-title,
.style-retro-vintage .logo a {
    font-family: 'Abril Fatface', cursive;
    letter-spacing: 0.05em;
}

.style-retro-vintage .section-title,
.style-retro-vintage .category-title {
    font-family: 'Abril Fatface', cursive;
    font-size: 1.6rem;
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.style-retro-vintage .section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 4px;
}

.style-retro-vintage .post-title {
    font-family: 'Abril Fatface', cursive;
    font-weight: 400;
    line-height: 1.2;
}

.style-retro-vintage .magazine-menu > li > a {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* ===== LAYOUT & STRUKTUR ===== */
.style-retro-vintage .magazine-main {
    max-width: 1300px;
}

.style-retro-vintage .top-stories-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.style-retro-vintage .category-posts-cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* ===== KORT & SKYGGER ===== */
.style-retro-vintage .post-card {
    border-width: 3px;
    border-style: solid;
    border-radius: 0;
    box-shadow: 6px 6px 0 rgba(0,0,0,0.3);
    overflow: hidden;
    transition: all 0.3s ease;
}

.style-retro-vintage .post-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0 rgba(0,0,0,0.3);
}

.style-retro-vintage .post-image {
    border-radius: 0;
    border-bottom-width: 4px;
    border-bottom-style: solid;
    filter: sepia(10%) contrast(1.05);
}

/* ===== DEKORATIVE ELEMENTER ===== */
.style-retro-vintage .magazine-header {
    border-bottom-width: 8px;
    border-bottom-style: solid;
}

.style-retro-vintage .post-category {
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 6px 14px;
    border-radius: 0;
}

.style-retro-vintage .post-excerpt {
    line-height: 1.7;
    font-weight: 400;
}

.style-retro-vintage .sidebar {
    border-width: 3px;
    border-style: solid;
    box-shadow: 6px 6px 0 rgba(0,0,0,0.3);
}

.style-retro-vintage blockquote {
    border-width: 3px;
    border-style: solid;
    border-left-width: 8px;
    padding: 1.5rem;
    font-family: 'Abril Fatface', cursive;
    font-size: 1.2rem;
}

.style-retro-vintage .btn {
    border-width: 3px;
    border-style: solid;
    border-radius: 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 12px 28px;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.3);
    transition: all 0.2s ease;
}

.style-retro-vintage .btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 rgba(0,0,0,0.3);
}

.style-retro-vintage hr {
    border: none;
    height: 4px;
}

/* ===== RESPONSIV ===== */
@media (max-width: 1024px) {
    .style-retro-vintage .top-stories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .style-retro-vintage .category-posts-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .style-retro-vintage .top-stories-grid,
    .style-retro-vintage .category-posts-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .style-retro-vintage .top-stories-grid,
    .style-retro-vintage .category-posts-cards {
        grid-template-columns: 1fr;
    }
}
