p, h1 {
    filter: drop-shadow(2px 2px 2px #000000);
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #ffdf50;
    color: white;
}

/* Shared page/card layout */

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem;
}

h1 {
    margin-bottom: 1.5rem;
}

.posts {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.card {
    display: block;
    text-decoration: none;
    color: black;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.thumb {
    width: 100%;
    height: 180px;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.content {
    padding: 1rem;
}

.content h2 {
    font-size: 1.1rem;
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
}

.excerpt {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0.75rem;
}

.meta {
    font-size: 0.85rem;
    color: #777;
}

.empty {
    background: white;
    color: black;
    padding: 1rem;
    border-radius: 12px;
}

/* Header / navbar */

.buffer {
    min-height: 120px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 120px;
    max-height: 120px;
    background: linear-gradient(
        0deg,
        rgba(255, 192, 0, 0) 0%,
        rgba(255, 192, 0, 1) 20%,
        rgba(255, 192, 0, 1) 100%
    );
    z-index: 1000;

    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0 10%;
    box-sizing: border-box;
}

.header img {
    height: 120px;
    display: block;
}

.navbar {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav {
    z-index: 2;
    padding: 1rem;
    background: #ac9a0054;
    border-radius: 10px;
    font-size: 27px;
    backdrop-filter: blur(4px);
    margin: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.nav a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.nav:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    background: #ccb80054;
}

/* Hero / newsletter section */

.site-hero-banner {
    position: absolute;
    inset: 0;
    display: flex;
    gap: 10px;
    padding-bottom: 70px;
    margin: 0 -20% 0 -20%;
    align-items: center;
    justify-content: center;
    z-index: 0;
    overflow: hidden;
    opacity: 0.8;
    filter: drop-shadow(1rem 1rem 10px #000000dc);
}

.site-hero-banner-img-wrap {
    height: calc(100% + 50px);
    overflow: hidden;
    border-radius: 5px;
    transform: skewX(-12deg);
}

.site-hero-banner-img {
    width: calc(100% + 200px);
    height: 100%;
    object-fit: cover;
    display: block;
    transform: skewX(12deg) translateX(-100px);
}

.nl {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFC000;
    background: linear-gradient(
        0deg,
        rgba(255, 192, 0, 0) 0%,
        rgba(255, 192, 0, 1) 20%,
        rgba(255, 192, 0, 1) 80%,
        rgba(255, 192, 0, 0) 100%
    );
}

.bg-strip-container {
    position: absolute;
    inset: 0;
    display: flex;
    gap: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
    z-index: 0;
    overflow: hidden;
    filter: drop-shadow(1rem 1rem 10px #000000dc);
}

.bg-strip {
    margin-left: -35px;
    margin-right: -35px;
    width: 250px;
    height: 360px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    clip-path: polygon(0% 0%, 70% 0%, 100% 100%, 30% 100%);
    opacity: 0.75;
    flex-shrink: 0;
}

.nl-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    place-items: center;
}

.nl-content h1 {
    margin: 0 0 0.5rem 0;
    font-size: 2.5rem;
}

.nl-content p {
    margin: 0;
    font-size: 1.1rem;
}

.nl-content-left { 
    margin-left: 10%;
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    color: #faf7e0;
    background: #ac9a0054;
    border-radius: 12px;
    backdrop-filter: blur(4px);
}

.nl-content-right {
    z-index: 2;
}

.nl-content-right a {
    color: #ffffff;
    display: block;
    height: 100%;
    width: 100%;
    text-decoration: none;
}

.nl-content-button {
    z-index: 2;
    padding: 2rem;
    background: #ac9a0054;
    border-radius: 50px;
    backdrop-filter: blur(4px);
    display: block;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.nl-content-button p {
    font-size: 27px;
}

.nl-content-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    background: #ccb80054;
}

/* Main page / promo */

.page {
    display: flex;
    flex-direction: column;
    min-height: 95vh;
}

.promo {
    flex: 1;
    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-content {
    margin-bottom: 70px;
}

.promo-content p {
    font-size: 32px;
    text-align: center;
    max-width: 600px;
}

.promo p {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    color: #faf7e0;
    background: #ac9a0054;
    border-radius: 12px;
    backdrop-filter: blur(4px);
}

.promo-logo {
    
}

/* Socials */

.socials {
    margin: 0 20% 0 20%;
}

.socials-yt {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.socials-yt iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.socials-links {
    padding-top: 50px;
    padding-bottom: 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.socials-links-el {
    width: 100px;
    height: 100px;
    min-width: 100px;
    min-height: 100px;
    flex: 0 0 100px;
    background: #ffd000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.socials-links-el:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    background: #ccb80054;
}

.socials-links-el a {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.socials-links-el img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
}

/* Responsive */

@media (max-width: 900px) {
    .header {
        padding: 0 1rem;
        gap: 1rem;
    }

    .header img {
        height: 90px;
    }

    .buffer {
        min-height: 120px;
    }

    .nav {
        font-size: 20px;
        padding: 0.75rem;
        margin: 0.25rem;
    }

    .bg-strip {
        margin-left: -25px;
        margin-right: -25px;
        width: 140px;
        height: 240px;
    }

    .bg-strip-container {
        gap: 12px;
        padding: 20px;
    }

    .nl-content-button {
        margin: 10px 0 0 0;
    }

    .nl-content-left { 
        margin: 0 10% 0 10%;
    }

    .nl-content {
        display: block;
        place-items: center;
    }

    .socials {
        margin: 0 5%;
    }

    .socials-links-el {
        width: 70px;
        height: 70px;
        min-width: 70px;
        min-height: 70px;
        flex: 0 0 70px;
    }

    .socials-links-el img {
        width: 30px;
        height: 30px;
    }
}