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

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


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

body {

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

    background: #fff8e8;

    color: #5f3323;

    line-height: 1.7;

}


/* =========================
   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
========================= */

.poly-intro {

    background: #522813;

    text-align: center;

    padding: 80px 20px 70px;

}


.poly-intro h1 {

    font-family: Georgia, serif;

    font-size: 48px;

    color: #f4c861;

    margin-bottom: 18px;

}


.poly-intro h1::after {

    content: "";

    display: block;

    width: 90px;

    height: 2px;

    background: #d6a532;

    margin: 18px auto 0;

}


.poly-intro p {

    font-size: 18px;

    line-height: 1.7;

    color: #e6ca8a;

    max-width: 700px;

    margin: 20px auto 0;

}


/* =========================
   FEATURE SECTION
========================= */

.poly-section {

    width: 100%;

    max-width: 1500px;

    margin: 0 auto;

    padding: 90px 5%;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;

    background: #ffdda1;

}


.poly-image {

    width: 100%;

}


.poly-image img {

    width: 100%;

    max-height: 620px;

    object-fit: contain;

    display: block;

    border-radius: 20px;

    box-shadow:
        0 8px 25px rgba(70, 45, 25, 0.18);

}


.poly-information {

    max-width: 600px;

}


.poly-label {

    font-size: 13px;

    font-weight: bold;

    letter-spacing: 2px;

    color: #c99a35;

    margin-bottom: 10px;

}


.poly-information h2 {

    font-family: Georgia, serif;

    font-size: 44px;

    line-height: 1.2;

    color: #522813;

    margin-bottom: 25px;

}


.poly-information p {

    font-size: 18px;

    line-height: 1.8;

    color: #5f3323;

    margin-bottom: 20px;

}


/* =========================
   CONTENT SECTIONS
========================= */

.poly-content {

    padding: 90px 8%;

    background: #fff8e8;

}


.section-heading {

    text-align: center;

    margin-bottom: 45px;

}


.section-heading h2 {

    font-family: Georgia, serif;

    font-size: 42px;

    color: #522813;

}


.heading-line {

    width: 90px;

    height: 2px;

    background: #d6a532;

    margin: 18px auto 0;

}


/* =========================
   CONTENT BOX
========================= */

.content-box {

    max-width: 1050px;

    margin: 0 auto;

}


.content-box p {

    font-size: 18px;

    line-height: 1.9;

    margin-bottom: 22px;

    color: #5f3323;

}


/* =========================
   GENETICS HIGHLIGHT
========================= */

.poly-highlight {

    padding: 90px 8%;

    background: linear-gradient(
        to bottom,
        #ffdda1,
        #f4c861
    );

}


.genetics-box {

    max-width: 1000px;

    margin: 0 auto;

    padding: 35px 45px;

    background: #fff8e8;

    border-left: 5px solid #c99a35;

    border-radius: 12px;

    box-shadow:
        0 6px 20px rgba(70, 45, 25, 0.12);

}


.genetics-box p {

    font-size: 18px;

    line-height: 1.8;

    margin-bottom: 18px;

}


.genetics-box p:last-child {

    margin-bottom: 0;

}


/* =========================
   HISTORY
========================= */

.history-section {

    background: #fff8e8;

}


.history-text {

    max-width: 1050px;

    margin: 0 auto;

}


.history-text p {

    font-size: 18px;

    line-height: 1.9;

    margin-bottom: 25px;

}


/* =========================
   HEALTH
========================= */

.poly-health {

    padding: 90px 8%;

    background: #dfe0bd;

}


.health-box {

    max-width: 850px;

    margin: 0 auto;

    padding: 40px 50px;

    background: #fff8e8;

    border-radius: 15px;

    text-align: center;

    box-shadow:
        0 6px 20px rgba(70, 45, 25, 0.12);

}


.health-box h3 {

    font-family: Georgia, serif;

    font-size: 38px;

    color: #c99a35;

    margin-bottom: 10px;

}


.health-box p {

    font-size: 18px;

    line-height: 1.8;

    margin-bottom: 18px;

}


.health-box p:last-child {

    margin-bottom: 0;

}


/* =========================
   SPARKLE COON HISTORY
========================= */

.poly-history {

    padding: 90px 8%;

    background: #fff8e8;

}


.sparkle-history {

    max-width: 1000px;

    margin: 0 auto;

    text-align: center;

}


.sparkle-history p {

    font-size: 18px;

    line-height: 1.9;

    margin-bottom: 22px;

}


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

.poly-footer {

    text-align: center;

    padding: 70px 20px;

    background: #ffdda1;

}


.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);

}


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

.site-footer {

    text-align: center;

    padding: 55px 20px;

    background: #fff8e8;

}


.footer-links {

    display: flex;

    justify-content: center;

    gap: 35px;

    margin-bottom: 20px;

}


.footer-links a {

    color: #522813;

    font-weight: bold;

    text-decoration: none;

}


.footer-links a:hover {

    color: #c59d5f;

}


.site-footer p {

    font-size: 14px;

    color: #6d6258;

}


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

@media (max-width: 900px) {

    .site-logo {

        width: 180px;

        height: 180px;

    }


    .poly-section {

        grid-template-columns: 1fr;

        gap: 45px;

        padding: 70px 7%;

    }


    .poly-information {

        max-width: none;

    }


    .poly-image img {

        max-height: 550px;

    }


    .poly-content,
    .poly-highlight,
    .poly-health,
    .poly-history {

        padding: 70px 7%;

    }

}


/* =========================
   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;

    }


    .poly-intro {

        padding: 60px 20px;

    }


    .poly-intro h1 {

        font-size: 38px;

    }


    .poly-intro p {

        font-size: 16px;

    }


    .poly-section {

        padding: 60px 7%;

        gap: 35px;

    }


    .poly-image img {

        max-height: 450px;

        border-radius: 15px;

    }


    .poly-information h2 {

        font-size: 38px;

    }


    .poly-information p,
    .content-box p,
    .history-text p,
    .sparkle-history p,
    .genetics-box p,
    .health-box p {

        font-size: 16px;

    }


    .section-heading h2 {

        font-size: 34px;

    }


    .genetics-box {

        padding: 30px 25px;

    }


    .health-box {

        padding: 30px 25px;

    }


    .health-box h3 {

        font-size: 34px;

    }


    .footer-links {

        gap: 20px;

    }

}

