
/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* =========================
   BODY
========================= */

body {

    font-family: Arial, Helvetica, sans-serif;

    background: #fff8e8;

    color: #5f3323;

}


/* =========================
   HEADER
========================= */

.site-header {

    height: 90px;

    background: #fff8e8;

    display: flex;

    justify-content: flex-end;

    align-items: center;

    padding: 0 7%;

    position: relative;

    box-shadow:
        0 2px 10px rgba(0, 0, 0, 0.10);

    z-index: 10;

}


/* Logo */

.site-logo {

    position: absolute;

    left: 2%;

    top: 20px;

    width: 225px;

    height: 225px;

    object-fit: contain;

    z-index: 20;

}


/* Navigation */

.site-header nav {

    display: flex;

    align-items: center;

    gap: 35px;

}


.site-header nav a {

    text-decoration: none;

    color: #522813;

    font-size: 17px;

    font-weight: bold;

}


.site-header nav a:hover {

    color: #c59d5f;

}


/* =========================
   PAGE INTRO
========================= */

.litters-intro {

    background: #522813;

    text-align: center;

    padding: 80px 20px 70px;

}


.litters-intro h1 {

    font-family: Georgia, serif;

    font-size: 48px;

    color: #f4c861;

    margin-bottom: 18px;

}


.litters-intro h1::after {

    content: "";

    display: block;

    width: 90px;

    height: 2px;

    background: #d6a532;

    margin: 18px auto 0;

}


.litters-intro p {

    font-size: 18px;

    line-height: 1.7;

    color: #e6ca8a;

    max-width: 700px;

    margin: 20px auto 0;

}


/* =========================
   ABOUT
========================= */

.litters-about {

    padding: 80px 8%;

    text-align: center;

    background: #ffdda1;

}


.section-heading {

    text-align: center;

    margin-bottom: 35px;

}


.section-heading h2 {

    font-family: Georgia, serif;

    font-size: 42px;

    color: #522813;

}


.heading-line {

    width: 90px;

    height: 2px;

    background: #d6a532;

    margin: 18px auto 0;

}


.litters-about p {

    max-width: 900px;

    margin: 0 auto 18px;

    font-size: 18px;

    line-height: 1.8;

}


/* =========================
   LITTERS AREA
========================= */

.litters-page {

    padding: 90px 8%;

    background: linear-gradient(
        to bottom,
        #fff8e8 0%,
        #dfe0bd 45%,
        #d8c47d 75%,
        #fff8e8 100%
    );

}


.year-heading {

    text-align: center;

    margin-bottom: 45px;

}


.year-heading h2 {

    font-family: Georgia, serif;

    font-size: 52px;

    color: #522813;

}


.year-heading p {

    font-size: 17px;

    color: #6d6258;

    margin-top: 5px;

}


/* =========================
   LITTER CARD
========================= */

.litter-card {

    max-width: 1050px;

    margin: 0 auto 18px;

    background: #fff8e8;

    border-radius: 14px;

    box-shadow:
        0 5px 18px rgba(70, 45, 25, 0.12);

    overflow: hidden;

}


/* =========================
   SUMMARY
========================= */

.litter-card summary {

    list-style: none;

    cursor: pointer;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 22px 28px;

    background: #fff8e8;

    transition:
        background 0.25s ease;

}


.litter-card summary::-webkit-details-marker {

    display: none;

}


.litter-card summary:hover {

    background: #f4e7c8;

}


.litter-number {

    font-family: Georgia, serif;

    font-size: 24px;

    font-weight: bold;

    color: #522813;

}


.litter-date {

    font-size: 15px;

    color: #c99a35;

    font-weight: bold;

}


/* Arrow */

.litter-number::before {

    content: "▸";

    display: inline-block;

    margin-right: 12px;

    color: #c99a35;

    transition: transform 0.25s ease;

}


.litter-card[open] .litter-number::before {

    transform: rotate(90deg);

}


/* =========================
   LITTER CONTENT
========================= */

.litter-content {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 45px;

    padding: 35px;

    border-top: 1px solid rgba(82, 40, 19, 0.15);

}


.litter-details h3 {

    font-family: Georgia, serif;

    font-size: 25px;

    color: #522813;

    margin-bottom: 15px;

}


.litter-details p {

    font-size: 17px;

    line-height: 1.7;

    margin-bottom: 7px;

}


.litter-details strong {

    color: #522813;

}


.litter-details h3:nth-of-type(2) {

    margin-top: 30px;

}


.litter-details ul {

    list-style: none;

    padding: 0;

}


.litter-details li {

    font-size: 17px;

    padding: 6px 0;

}


.litter-details li::before {

    content: "🐾";

    margin-right: 10px;

}


/* =========================
   PHOTOS
========================= */


/* =========================
   LITTER PHOTOS
========================= */

.litter-photos {

    width: 100%;

    height: 400px;

    border-radius: 15px;

    background: #f4e7c8;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    overflow: hidden;

}


.litter-photos img {

    width: 100%;

    height: 100%;

    object-fit: contain;

    display: block;

}


.litter-photos p {

    color: #8a7968;

    font-size: 15px;

    font-style: italic;

}




/* =========================
   FOOTER
========================= */

.litters-footer {

    text-align: center;

    padding: 70px 20px;

    background: #f4c861;

}


.cat-button {

    display: inline-block;

    padding: 13px 28px;

    background: #c99a35;

    color: white;

    text-decoration: none;

    border-radius: 25px;

    font-weight: bold;

    transition:
        background 0.3s ease,
        transform 0.2s ease;

}


.cat-button:hover {

    background: #a97922;

    transform: translateY(-2px);

}


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    .site-logo {

        width: 180px;

        height: 180px;

    }


    .litters-page {

        padding: 70px 7%;

    }


    .litter-content {

        grid-template-columns: 1fr;

        gap: 30px;

    }


    .litter-photos {

        min-height: 220px;

    }

}


/* =========================
   PHONE
========================= */

@media (max-width: 650px) {

    .site-header {

        height: 75px;

        padding-right: 5%;

    }


    .site-logo {

        width: 130px;

        height: 130px;

        top: 15px;

        left: 2%;

    }


    .site-header nav {

        gap: 15px;

    }


    .site-header nav a {

        font-size: 14px;

    }


    .litters-intro {

        padding: 60px 20px;

    }


    .litters-intro h1 {

        font-size: 38px;

    }


    .litters-intro p {

        font-size: 16px;

    }


    .litters-about {

        padding: 60px 7%;

    }


    .litters-about p {

        font-size: 16px;

    }


    .litters-page {

        padding: 60px 5%;

    }


    .year-heading h2 {

        font-size: 42px;

    }


    .litter-card summary {

        padding: 18px 20px;

        gap: 15px;

    }


    .litter-number {

        font-size: 20px;

    }


    .litter-date {

        font-size: 13px;

        text-align: right;

    }


    .litter-content {

        padding: 25px 20px;

    }


    .litter-details h3 {

        font-size: 23px;

    }


    .litter-details p,
    .litter-details li {

        font-size: 16px;

    }

}

.moreinfo {

    background: #fff8e8;

    padding: 50px;

    text-align: center;
}


.moreinfo a {

    color: #522813;

    font-weight: bold;

    text-decoration: none;

    margin: 0 15px;
}


.moreinfo a:hover {

    color: #c59d5f;
}


.moreinfo p {

    margin-top: 25px;

    font-size: 14px;

    color: #6d6258;
}
