/* Font faces */
@font-face {
    font-family: 'weber-serif';
    src: url('assets/fonts/weber-serif.woff2') format('woff2'),
         url('assets/fonts/weber-serif.woff') format('woff');
}

@font-face {
    font-family: 'DIN-Next-LT-Pro-Cond';
    src: url('assets/fonts/DINNextLTPro-Condensed.woff2') format('woff2');
}

/* Base styles */
body {
    margin: 0;
    padding: 0;
    background: white;
    font-family: Arial, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Logo Section */
.logo-section {
    text-align: center;
    margin-bottom: 3rem;
    width: 100%;
}

.weber-academy {
    text-align: center;
    margin-bottom: 2rem;
    width: 100%;
}

.main-logo {
    max-width: 300px;
    height: auto;
}

/* Section Title */
.section-title {
    text-align: center;
    text-transform: uppercase;
    color: #000000;
    font-family: "weber-serif", sans-serif;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    width: 100%;
    font-weight: 600;
    position: relative;
    padding: 0 1rem;
}

/* Categories Grid */
.featured-items-filter {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    width: 100%;
    justify-items: center;
    margin-bottom: 3rem;
}

.component-filter-seal {
    width: 100%;
    max-width: 200px;
}

.filter-item-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.filter-item-content:hover {
    transform: translateY(-5px);
}

.filter-item-icon {
    position: relative;
    width: 128px;
    height: 128px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.border-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #000;
    border-radius: 50%;
}

.icon-type {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.icon-type img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.template-sub-heading {
    font-family: 'DIN-Next-LT-Pro-Cond', Arial Narrow, Arial, sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    text-align: center;
    margin-top: 1rem;
}

/* Two Columns Section */
.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    margin-top: 4rem;
}

.column {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.story-link {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
}

.story-link img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.story-link h2 {
    font-family: "weber-serif", sans-serif;
    margin: 0;
}

.social-column h2 {
    font-family: "weber-serif", sans-serif;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    width: 100%;
}

.social-link {
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background-color: #f0f0f0;
}

.social-heading {
    font-family: "weber-serif", sans-serif;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.social-icon-link {
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-icon-link:hover {
    transform: translateY(-5px);
}

.social-icon {
    width: 30px;
    height: 30px;
}

.social-section {
    margin-top: 4rem;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .featured-items-filter {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .featured-items-filter {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .two-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .featured-items-filter {
        grid-template-columns: 1fr;
    }
    
    .main-logo {
        max-width: 200px;
    }
}
