@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500;600&family=Bitter&display=swap');

body {
    background: #000;
    color: #fff;
    font-family: 'Work Sans', sans-serif;
}

.paasiainen-hero {
    min-height: 120vh;
    padding-top: 30px;
    padding-bottom: 120px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
}

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

.hero-logo {
    width: 250px;
    margin-top: 10px;
    margin-bottom: 50px;
}

.hero-svg {
    margin-bottom: 20px;
    width: 100%;
    max-width: 800px;
}

.hero-image {
    width: 800px;
    margin-top: 30px;
}

.hero-title {
    font-size: 28px;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1;
    margin: 10px 0;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.paasiainen-tuotteet {
    padding: 10px 0;
    padding-top: 100px;
}

.tuotteet-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.tuotteet-img img {
    max-width: 450px;
}

.tuotteet-content {
    max-width: 500px;
}

.tuotteet-content h2 {
    font-size: 34px;
    color: #e8ba8b;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 5px;
    font-weight: 400;
}

.tuotteet-content p {
    font-family: 'Bitter', serif;
    color: #CCCCCC;
    font-size: 16px;
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 1.5rem;
}

.paasiainen-reseptit {
    padding: 10px 0;
}

.paasiainen-some {
    padding: 10px 0;
    text-align: center;
}

.front-some img {
    width: 36px;
    margin: 0 10px;
}

.custom-background-section h2,
.front-some-title {
    color: #e8ba8b;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.front-some-title {
    font-size: 18px !important;
    margin-bottom: 1rem;
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    margin-bottom: 2rem;
}

.paasiainen-footer {
    position: relative;
    text-align: center;
    padding: 80px 0;
}

.footer-logo img {
    width: 120px;
    margin-bottom: 30px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-nav a {
    color: #e8ba8b;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    position: relative;
    transition: all .25s ease;
}

.footer-nav a:hover {
    color: #ffffff;
}

.footer-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #e8ba8b;
    transition: width .25s ease;
}

.footer-nav a:hover::after {
    width: 100%;
}

.footer-nav a:focus {
    outline: none;
    color: #ffffff;
}


.footer-nav a:active {
    opacity: 0.7;
}

#back-to-top-static {
    position: absolute;
    right: 40px;
    bottom: 40px;
}

#back-to-top-static img {
    width: 50px;
    cursor: pointer;
}

#wpadminbar {
    display: none !important;
}

.navbar.fixed-top {
    display: none !important;
}

.resepti-container {
    display: grid;
    grid-template-columns: repeat(3, 300px);
    justify-content: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .navbar.fixed-top {
        display: none !important;
    }
}


@media screen and (max-width: 782px) {
    html {
        margin-top: 0px !important;
    }
}

@media screen {
    html {
        margin-top: 0px !important;
    }
}


@media (max-width: 768px) {

    .paasiainen-hero {
        min-height: 70vh;
        padding-top: 20px;
        padding-bottom: 60px;
    }

    .hero-logo {
        width: 120px;
        margin-bottom: 30px;
    }

    .hero-svg {
        width: 90%;
        max-width: 320px;
    }

    .hero-title {
        font-size: 20px;
        padding: 0 20px;
        line-height: 1.4;
        text-shadow: 0 2px 8px rgba(0,0,0,0.6);
    }

    .hero-image {
        width: 200px;
        margin-bottom: 30px;
    }

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

    .tuotteet-img {
        display: flex;
        justify-content: center;
    }

    .tuotteet-img img {
        max-width: 85%;
        margin: auto;
    }

    .tuotteet-content {
        max-width: 500px;
        width: 100%;
        padding: 0 25px;
        text-align: center;
    }

    .tuotteet-content h2 {
        text-align: center;
    }

    .tuotteet-content p {
        text-align: center;
    }


    .resepti-container {
        grid-template-columns: 1fr;
    }

    .resepti_paakuva {
        width: 90%;
    }

    .front-reseptin-nimi {
        font-size: 16px;
        padding: 0 20px;
    }


    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }

    .footer-nav a {
        font-size: 13px;
    }

    #back-to-top-static {
        right: 15px;
        bottom: 15px;
    }

    #back-to-top-static img {
        width: 40px;
    }

    .front-some img {
        width: 28px;
    }

}