/* ===============================
   GOOGLE FONT (clean + premium)
=============================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');


/* ===============================
   BASE RESET
=============================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #faf9f7;   /* warm beige like screenshot */
    color: #222;
    line-height: 1.6;
}

section:not(.mainpage) {
    padding: 90px 8%;
}



a {
    text-decoration: none;
}


/* ===============================
   HEADER (minimal + airy)
=============================== */
header {
    background: #faf9f7;
    padding: 22px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;

    position: sticky;
    top: 0;
    z-index: 1000;

    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}


.signature {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.sidePointCard {
    display: flex;
    list-style: none;
    gap: 35px;
}

.sidePoint a {
    color: #333;
    font-weight: 500;
    transition: 0.3s;
}

.sidePoint a:hover {
    color: #e08956;
}


/* ===============================
   HERO SECTION (two-column feel)
=============================== */
.mainpage {
    background:
        linear-gradient(
            to right,
            rgba(250,249,247,0.95) 0%,
            rgba(250,249,247,0.9) 20%,
            rgba(250,249,247,0.6) 50%,
            rgba(250,249,247,0.3) 100%
        ),
        url("assets/paw-pattern.png")  ;

    padding: 20px 8% 180px;
    padding-bottom: 0;
}




.paw-overlay {
    width: 100%;
    height: 160px;
    object-fit: cover;
    margin-top: 40px;
    opacity: 1;
    pointer-events: none;
}


.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 0 0 0px;
}


.hero-text {
    max-width: 550px;
}

.hero-text img {
    width: 320px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.hero-text h2 {
    font-size: 1.2rem;
    font-weight: 400;
    color: #555;
    margin-bottom: 15px;
}

.hero-text p {
    margin-bottom: 25px;
    color: #666;
}

.explore-btn {
    background: #e08956;
    color: white;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 500;
    transition: 0.3s;
}

.explore-btn:hover {
    transform: translateY(-3px);
    background: #c96f3d;
}


/* ===============================
   SECTION TITLES
=============================== */
.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 55px;
    font-weight: 600;
}


/* ===============================
   PRODUCT GRID
=============================== */
.productGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}


/* ===============================
   PRODUCT CARD (soft + elegant)
=============================== */

.productCard {
    background: white;
    border-radius: 20px;
    padding: 25px;
    text-align: center;

    /* soft shadow */
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);

    transition: 0.3s;
}

.productCard:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.productCard img {
    width: 100%;
    height: 190px;
    object-fit: contain;        /* KEY CHANGE */
    object-position: center;    /* ensure centering */
    margin-bottom: 15px;
}


.productCard h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.productCard p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.price {
    display: block;
    font-weight: 600;
    color: #e08956;
    margin-bottom: 14px;
}

.productCard button {
    background: #222;
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.productCard button:hover {
    background: #000;
}


/* ===============================
   ABOUT SECTION
=============================== */
.aboutCard {
    background: white;
    border-radius: 22px;
    padding: 50px;
    max-width: 900px;
    margin: auto;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    text-align: center;
}

.aboutCard h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.aboutCard p {
    color: #555;
    margin-bottom: 15px;
}


/* ===============================
   CONTACT
=============================== */
.contactCard {
    display: flex;
    justify-content: center;
}

.contactBox {
    background: white;
    padding: 45px;
    border-radius: 22px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    max-width: 400px;
}

.contactBox img {
    width: 70px;
    margin-bottom: 15px;
}

.email-btn {
    display: inline-block;
    margin-top: 18px;
    background: #e08956;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    transition: 0.3s;
}

.email-btn:hover {
    background: #c96f3d;
}


/* ===============================
   FOOTER
=============================== */
footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 25px;
    font-size: 0.9rem;
}


/* ===============================
   RESPONSIVE
=============================== */
@media (max-width: 900px) {

    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-text img {
        width: 240px;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    header {
        flex-direction: column;
        gap: 12px;
    }
}
