/* Reset */
html {
    color-scheme: light;
}

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

hr {
    border: none;
    height: 5px;
    background-color: #654025;

    margin: 5px 0;
}

/* Body */

body{

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

    background:#ffdda1;

    color:#5f3323;

    text-align: left;

}

p{
    font-size: 15px;
}

/* Header */
h1 {
    font-size: 32px;
}

h2 {
    font-size: 25px;
}

h3 {
    font-size: 20px;
    font-weight: normal;
}

header{

    background:white;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:20px 60px;

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

}

/* Navigation */

nav a{

    text-decoration:none;

    color:#444;

    margin-left:25px;

    font-weight:bold;

}

nav a:hover{

    color:#c59d5f;

}

/* Hero */

/* HERO */

.hero {
    position: relative;
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.hero h2{

    font-size:50px;

    margin-bottom:20px;

}


.hero button{

    background:#c59d5f;

    color:white;

    border:none;

    padding:15px 40px;

    font-size:18px;

    cursor:pointer;

    border-radius:5px;

}

.hero button:hover{

    background:#ab844d;

}
.hero-text {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);

        background-color: rgba(255, 221, 161, 0.85);

    padding: 25px;
    border-radius: 10px;
}

.hero-overlay {
    position: absolute;

    right: 5%;
    top: 50%;

    transform: translateY(-50%);

    width: 38%;
    max-width: 500px;

    padding: 45px 40px;

    background: rgba(45, 25, 15, 0.78);

    border-radius: 20px;

    color: #ffdda1;

    text-align: center;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
}

.hero-overlay h1 {
    font-size: 48px;
    line-height: 1.05;
    margin-bottom: 20px;
    font-family: Georgia, serif;
    color: #f8c75a;
}

.hero-overlay p {
    font-size: 18px;
    line-height: 1.4;

    margin: 8px 0;

    color: #fff4dc;
}

.hero-overlay h3 {
    font-size: 20px;
    font-weight: normal;

    margin-top: 20px;

    color: #f8c75a;
}

.hero-line {
    width: 180px;
    height: 2px;

    background: #f8c75a;

    margin: 15px auto 20px;
}

.hero-line.small {
    width: 100px;

    margin: 20px auto 15px;
}


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

.site-logo {
    position: absolute;

    left: 2%;

    top: 20px;

    width: 225px;
    height: 225px;

    object-fit: contain;

    z-index: 20;
}

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



.about {
    background: #fff8e8;
    padding: 70px 20px;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about h2 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 38px;
    color: #522813;
    margin-bottom: 30px;
}

.about p {
    font-size: 18px;
    line-height: 1.7;
    color: #5f3323;
    margin-bottom: 25px;
}

.about h2::after {
    content: "";
    display: block;

    width: 90px;
    height: 2px;

    background: #d6a532;

    margin: 18px auto 0;
}

.about button{

    background:#c59d5f;

    color:white;

    border:none;

    padding:15px 40px;

    font-size:18px;

    cursor:pointer;

    border-radius:5px;

}

.about button:hover{

    background:#ab844d;

}
.about-text {
    margin-left: 50px;
}




.pages {
    background: linear-gradient(to left, #e3962b, #fcde6f);

    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    padding: 50px;
}

.pages h2{

    font-size:30px;
    color:#1b0b05;
    margin-bottom:20px;

}

.pages p{

    font-size:18px;
    color:#1b0b05;
    display: flex;
    flex-direction: row;

    align-items: left;

    gap: 10px;

    margin: 50px 0;

}

.pages-button{

    background-color: #522813;
    color: rgb(255, 169, 132);

    text-decoration: none;

    padding: 15px 40px;

    border-radius: 10px;

    width: 250px;

    text-align: right;
    
    display: inline-block;

}

.pages-button:hover{

    background:#fcfbfb;

}
.pages-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;


}

.navigation-content p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
    width: 60%;
}


.displayed-images {
    width: 350px;
    border-radius: 15px;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 20px;
}


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


.our-cats {
    background: #fff8e8;
    padding: 80px 7%;
    text-align: center;
}

.empty{
    background: #fff8e8;
    padding: 80px 7%;
    text-align: center;
}

/* Heading */

.our-cats-heading {
    max-width: 800px;
    margin: 0 auto 50px;
}

.our-cats-heading h2 {
    font-family: Georgia, serif;
    font-size: 42px;
    color: #5a351f;
    margin-bottom: 15px;
}

.our-cats-heading p {
    font-family: Arial, sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #6d6258;
}


/* Cards container */

.cat-cards {
    max-width: 1400px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


/* Individual card */

.cat-card {
    background: #ffffff;

    border-radius: 18px;

    overflow: hidden;

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

    transition: transform 0.3s ease,
                box-shadow 0.3s ease;
}


/* Small movement when hovering */

.cat-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 14px 35px rgba(70, 45, 25, 0.22);
}


/* Image */

.cat-image {
    width: 100%;
    height: 420px;
    overflow: hidden;
}

.cat-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.4s ease;
}


/* Slight zoom on hover */

.cat-card:hover .cat-image img {
    transform: scale(1.04);
}


/* Text area */

.cat-card-content {
    padding: 30px 25px 35px;
}

.cat-card-content h3 {
    font-family: Georgia, serif;

    font-size: 30px;

    color: #6b3d1f;

    margin: 0 0 15px;
}

.cat-card-content p {
    font-family: Arial, sans-serif;

    font-size: 16px;

    line-height: 1.6;

    color: #6d6258;

    margin: 0 auto 25px;

    max-width: 350px;
}


/* Buttons */

.cat-button {
    display: inline-block;

    padding: 12px 25px;

    background: #c99a35;

    color: white;

    text-decoration: none;

    border-radius: 25px;

    font-family: Arial, sans-serif;

    font-weight: bold;

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

.cat-button:hover {
    background: #a97922;

    transform: translateY(-2px);
}


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

@media (max-width: 1000px) {

    .cat-cards {
        grid-template-columns: 1fr 1fr;
    }

    .cat-card:last-child {
        grid-column: 1 / -1;

        max-width: 500px;

        margin: 0 auto;
    }

}



/* ==============================
   KITTEN PROCESS SECTION
================================= */

.kitten-process {
    background: #ffdda1;

    padding: 80px 7%;
}


/* Main layout */

.kitten-process-content {
    max-width: 1300px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: center;
}


/* ==============================
   KITTEN IMAGE
================================= */

.kitten-process-image {
    position: relative;

    width: 100%;

    border-radius: 18px;

    overflow: hidden;

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

.kitten-process-image img {
    width: 100%;

    height: 600px;

    object-fit: cover;

    display: block;
}


/* Illustration notice */

.kitten-photo-notice {
    position: absolute;

    bottom: 18px;

    left: 18px;

    right: 18px;

    background: rgba(45, 25, 15, 0.85);

    color: #fff8e8;

    padding: 12px 15px;

    text-align: center;

    font-size: 13px;

    font-weight: bold;

    letter-spacing: 0.5px;

    border-radius: 8px;
}


/* ==============================
   PROCESS INFORMATION
================================= */

.kitten-process-info h2 {
    font-family: "Playfair Display", Georgia, serif;

    font-size: 42px;

    color: #522813;

    margin-bottom: 20px;
}

.kitten-intro {
    font-size: 18px;

    line-height: 1.7;

    color: #5f3323;

    margin-bottom: 30px;
}


/* ==============================
   PROCESS STEPS
================================= */

.process-step {
    display: flex;

    align-items: flex-start;

    gap: 20px;

    margin-bottom: 25px;
}

.process-number {
    flex-shrink: 0;

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #c99a35;

    color: white;

    border-radius: 50%;

    font-weight: bold;

    font-size: 15px;
}

.process-step h3 {
    font-family: "Playfair Display", Georgia, serif;

    font-size: 23px;

    color: #522813;

    margin-bottom: 5px;
}

.process-step p {
    font-size: 16px;

    line-height: 1.5;

    color: #5f3323;

    margin: 0;
}


/* ==============================
   DISCLAIMER
================================= */

.kitten-photo-warning {
    background: #f7d38a;

    border-left: 5px solid #c99a35;

    padding: 15px 18px;

    margin: 30px 0;

    font-size: 14px;

    line-height: 1.5;

    color: #522813;

    border-radius: 5px;
}




/* ==============================
   EXPLORE SPARKLE COON
================================= */

.explore-section {

    background: #f4c861;

    padding: 80px 7%;
}


/* Heading */

.explore-heading {

    max-width: 800px;

    margin: 0 auto 50px;

    text-align: center;
}

.explore-heading h2 {

    font-family: "Playfair Display", Georgia, serif;

    font-size: 42px;

    color: #522813;

    margin-bottom: 15px;
}

.explore-heading p {

    font-size: 18px;

    line-height: 1.7;

    color: #5f3323;
}


/* ==============================
   CARD GRID
================================= */

.explore-grid {

    max-width: 1300px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;
}


/* ==============================
   CARDS
================================= */

.explore-card {

    background: #fff8e8;

    border-radius: 18px;

    overflow: hidden;

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

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.explore-card:hover {

    transform: translateY(-7px);

    box-shadow:
        0 14px 35px rgba(70, 45, 25, 0.25);
}


/* ==============================
   CARD IMAGE
================================= */

.explore-image {

    width: 100%;

    height: 300px;

    overflow: hidden;
}

.explore-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform 0.4s ease;
}

.explore-card:hover
.explore-image img {

    transform: scale(1.04);
}


/* ==============================
   CARD TEXT
================================= */

.explore-content {

    padding: 25px;
    background: #fff8e8;
    text-align: center;
    width: 70%;
    height: 50%;
}

.explore-content h3 {

    font-family: "Playfair Display", Georgia, serif;

    font-size: 26px;

    color: #522813;

    margin-bottom: 12px;
}

.explore-content p {

    font-size: 16px;

    line-height: 1.6;

    color: #5f3323;

    margin-bottom: 25px;
}


/* ==============================
   GOLD BUTTONS
================================= */

.explore-content .cat-button {

    display: inline-block;

    padding: 15px 35px;

    background: #c99a35;

    color: white;

    text-decoration: none;

    border-radius: 10px;

    font-size: 16px;

    font-weight: bold;

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

.explore-content .cat-button:hover {

    background: #a97922;

    transform: translateY(-2px);
}


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

@media (max-width: 1000px) {

    .explore-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}


/* =========================================
   MOBILE PHONE LAYOUT
   ========================================= */

@media (max-width: 700px) {

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

    .site-header {
        height: 80px;
        padding: 0 20px;
        justify-content: flex-end;
    }

    .site-logo {
        position: absolute;
        left: 15px;
        top: 10px;

        width: 75px;
        height: 75px;

        object-fit: contain;
    }

    .site-header nav {
        gap: 20px;
    }

    .site-header nav a {
        font-size: 16px;
    }


    /* =========================
       HERO
       ========================= */

    .hero {
        width: 100%;
        margin: 0;
    }

    .hero-image {
        width: 100%;
        height: 500px;
        object-fit: cover;
        object-position: center;
        display: block;
    }

    .hero-overlay {
        position: absolute;

        left: 5%;
        right: 5%;
        bottom: 2%;

        top: auto;
        transform: none;

        width: 90%;
        max-width: none;

        padding: 18px 15px;

        background: rgba(45, 25, 15, 0.65);

        border-radius: 15px;

        text-align: center;
    }

    .hero-overlay h1 {
        font-size: 20px;
        line-height: 1.05;
        margin-bottom: 12px;
    }

    .hero-overlay p {
        font-size: 14px;
        line-height: 1.4;
        margin: 6px 0;
    }

    .hero-overlay h3 {
        font-size: 15px;
        margin-top: 15px;
    }

    .hero-line {
        width: 120px;
        margin: 10px auto 15px;
    }

    .hero-line.small {
        width: 70px;
        margin: 15px auto 10px;
    }


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

    .about {
        background: #fff8e8;
        padding: 60px 20px;
    }

    .about-content {
        width: 100%;
    }

    .about h2 {
        font-size: 35px;
    }

    .about p {
        font-size: 17px;
        line-height: 1.7;
    }


    /* =========================
       OUR CATS
       ========================= */

    .our-cats {
        background: #fff8e8;
        padding: 60px 20px;
    }

    .our-cats-heading h2 {
        font-size: 35px;
        line-height: 1.2;
    }

    .our-cats-heading p {
        font-size: 16px;
        line-height: 1.6;
    }

    .cat-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .cat-card:last-child {
        max-width: none;
    }

    .cat-image {
        height: 350px;
    }

    .cat-card-content {
        padding: 25px 20px 30px;
    }

    .cat-card-content h3 {
        font-size: 27px;
    }


    /* =========================
       KITTEN PROCESS
       ========================= */

    .kitten-process {
        padding: 60px 20px;
        background: #ffdda1;
    }

    .kitten-process-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .kitten-process-image img {
        height: 400px;
    }

    .kitten-process-info h2 {
        font-size: 35px;
        line-height: 1.2;
    }

    .kitten-intro {
        font-size: 17px;
    }


    /* =========================
       EXPLORE
       ========================= */

    .explore-section {
        padding: 60px 20px;
        background: #f4c861;
    }

    .explore-heading h2 {
        font-size: 35px;
        line-height: 1.2;
    }

    .explore-heading p {
        font-size: 16px;
    }

    .explore-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .explore-content {
        width: 100%;
        height: auto;
        padding: 25px 20px 30px;
    }

    .explore-content h3 {
        font-size: 25px;
    }

    .explore-content p {
        font-size: 16px;
        line-height: 1.6;
    }


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

    .moreinfo {
        padding: 40px 20px;
    }

    .moreinfo a {
        display: inline-block;
        margin: 8px 10px;
    }

}
