/*
Theme Name: Animal World Child
Template: blocksy
Version: 1.0
*/

body {
    background: #fffaf0;
}

.site-title a {
    color: #2E7D32;
    font-weight: 900;
}

.ct-header {
    background: #ffffff;
    box-shadow: 0 4px 18px rgba(0,0,0,.06);
}

#main {
    background: linear-gradient(135deg, #fffaf0 0%, #f6f1e7 100%);
}

.entry-header {
    display: none;
}

.aw-main-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
    background: #ffffff;
    border-radius: 0 0 36px 36px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(46,125,50,.12);
}

.aw-hero-text {
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.aw-main-logo {
    max-width: 280px;
    margin-bottom: 35px;
}

.aw-hero-text span {
    color: #2E7D32;
    font-weight: 800;
    letter-spacing: 2px;
}

.aw-hero-text h1 {
    font-size: clamp(54px, 7vw, 96px);
    line-height: .95;
    margin: 15px 0 25px;
    color: #2E7D32;
}

.aw-hero-text p {
    font-size: 24px;
    line-height: 1.5;
    max-width: 560px;
    color: #333;
}

.aw-button {
    display: inline-block;
    width: fit-content;
    margin-top: 25px;
    background: linear-gradient(135deg, #2E7D32, #1B5E20);
    color: #ffffff !important;
    padding: 16px 34px;
    border-radius: 40px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(46,125,50,.25);
}

.aw-hero-photo {
    background:
        radial-gradient(circle at 30% 55%, rgba(255,255,255,.25), transparent 30%),
        linear-gradient(135deg, rgba(46,125,50,.25), rgba(46,125,50,.05)),
        url("https://images.unsplash.com/photo-1601758063541-d2f50b4aafb2?auto=formaturl("https://images.unsplash.com/photo-1601758228041-f3b2795255f1?auto=format&fit=crop&w=1200&q=80")fit=cropurl("https://images.unsplash.com/photo-1601758228041-f3b2795255f1?auto=format&fit=crop&w=1200&q=80")w=1200url("https://images.unsplash.com/photo-1601758228041-f3b2795255f1?auto=format&fit=crop&w=1200&q=80")q=80");
    background-size: cover;
    background-position: center;
    position: relative;
}

.aw-hero-photo::before {
    content: "";
    position: absolute;
    left: -90px;
    top: 0;
    width: 180px;
    height: 100%;
    background: #ffffff;
    border-radius: 0 50% 50% 0;
}

.aw-dogcat {
    display: none;
}

.aw-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin: 40px 0 25px;
}

.aw-card {
    display: block;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: #222;
    box-shadow: 0 12px 35px rgba(0,0,0,.09);
    transition: .25s ease;
}

.aw-card:hover {
    transform: translateY(-6px);
}

.aw-card-img {
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 86px;
    background: linear-gradient(135deg, #dfead2, #f6f1e7);
}

.aw-card h2 {
    color: #2E7D32;
    padding: 22px 22px 0;
    font-size: 30px;
}

.aw-card p {
    padding: 0 22px;
    color: #333;
    min-height: 80px;
}

.aw-card strong {
    display: block;
    padding: 0 22px 25px;
    color: #2E7D32;
    text-transform: uppercase;
}

.aw-trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: rgba(46,125,50,.08);
    padding: 28px;
    border-radius: 18px;
    margin-bottom: 50px;
}

.aw-trust div {
    font-size: 17px;
    color: #2E7D32;
}

.aw-trust span {
    color: #333;
    font-size: 14px;
}

.ct-footer {
    background: #2E7D32;
    color: #ffffff;
}

@media (max-width: 1000px) {
    .aw-main-hero {
        grid-template-columns: 1fr;
    }

    .aw-hero-photo {
        min-height: 360px;
    }

    .aw-hero-photo::before {
        display: none;
    }

    .aw-card-grid,
    .aw-trust {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .aw-hero-text {
        padding: 45px 25px;
    }

    .aw-main-logo {
        max-width: 220px;
    }

    .aw-card-grid,
    .aw-trust {
        grid-template-columns: 1fr;
    }
}
