/* =========================
   THEME
========================= */
:root {
    --cream: #fbf7f5;
    --warm-white: #ffffff;
    --main-pink: #e5b7c4;
    --soft-pink: #f4dbe3;
    --pink-accent: #d89aaa;
    --steel-blue: #7e9aa8;
    --soft-blue: #bfd0d8;
    --text-dark: #3f3a3d;
    --text-soft: #6f666b;
    --border-soft: #eadfe3;
    --shadow-soft: rgba(80, 60, 70, 0.08);
}

/* =========================
   BASE
========================= */
main {
    flex: 1;
    min-height: 70vh;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    letter-spacing: 0.2px;
    color: var(--text-dark);
    background: var(--cream);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

.section {
    padding: 80px 20px;
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    margin-bottom: 10px;
}

p {
    color: var(--text-soft);
}

/* =========================
   NAVBAR
========================= */
.navbar {
    background: linear-gradient(90deg, var(--main-pink), var(--soft-blue));
    padding: 18px 0;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    font-weight: bold;
    font-size: 22px;
    color: white;
    letter-spacing: 0.5px;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: 0.25s ease;
}

.nav-links a:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

.nav-links a.active {
    border-bottom: 2px solid white;
    padding-bottom: 4px;
}

.btn {
    background: rgba(255,255,255,0.92);
    color: var(--main-pink) !important;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: 0.25s ease;
}

.btn:hover {
    background: white;
    transform: translateY(-2px);
}

/* =========================
   HAMBURGER
========================= */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    position: relative;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: 0.3s ease;
}

/* =========================
   HERO
========================= */
.hero {
    background: linear-gradient(
        180deg,
        var(--soft-pink),
        rgba(229, 183, 196, 0.28)
    );
    padding: 95px 20px;
}

.hero-arched {
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 55px;
}

.hero-side {
    display: flex;
    gap: 14px;
}

.hero-side:first-child {
    justify-content: flex-end;
    transform: translateX(-20px);
}

.hero-side:last-child {
    justify-content: flex-start;
    transform: translateX(20px);
}

.arched-img {
    width: 180px;
    height: 240px;
    object-fit: cover;
    border-radius: 90px 90px 20px 20px;
    border: 6px solid rgba(255,255,255,0.92);
    box-shadow: 0 12px 26px rgba(0,0,0,0.12);
}

.hero-side:first-child .arched-img:first-child,
.hero-side:last-child .arched-img:last-child {
    transform: translateY(-10px);
}

.hero-side:first-child .arched-img:last-child,
.hero-side:last-child .arched-img:first-child {
    transform: translateY(10px);
}

.hero-content {
    text-align: center;
    background: rgba(255,255,255,0.85);
    padding: 34px 28px;
    border-radius: 24px;
    border: 1px solid var(--border-soft);
    box-shadow: 0 12px 30px var(--shadow-soft);
    max-width: 560px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(34px, 5vw, 48px);
    margin-bottom: 12px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #6c5d64;
}

/* =========================
   ABOUT SECTION
========================= */
.about-side-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 260px minmax(0, 760px) 260px;
    align-items: center;
    justify-content: center;
    gap: 26px;

    min-height: calc(100vh - 170px);
    padding-top: 30px;
    padding-bottom: 30px;
}

.about-side-images {
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding-top: 0;
}

.about-side-images.left {
    align-items: flex-end;
}

.about-side-images.right {
    align-items: flex-start;
}

.about-side-img {
    width: 185px;
    height: 235px;
    object-fit: cover;
    border-radius: 85px 85px 20px 20px;
    border: 6px solid rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
    transform: none;
}

.about-main-content {
    width: 100%;
}

.about-card {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    padding: 38px 34px;
}

.about-card h1 {
    margin-bottom: 18px;
}

.about-card p {
    margin-bottom: 14px;
}

/* =========================
   PAGE WRAPPERS
========================= */
.page-with-dogs {
    position: relative;
    overflow: hidden;
}

.page-card {
    background: rgba(255,255,255,0.88);
    border: 1px solid var(--border-soft);
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 12px 30px var(--shadow-soft);
    position: relative;
    z-index: 2;
}

.page-card.centered {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.page-card h1 {
    margin-bottom: 14px;
}

.page-card p + p {
    margin-top: 12px;
}

/* =========================
   CARDS / GRIDS
========================= */
.grid-3,
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
    margin-top: 24px;
}

.card {
    background: var(--warm-white);
    padding: 24px;
    border-radius: 22px;
    border: 1px solid var(--border-soft);
    box-shadow: 0 8px 24px var(--shadow-soft);
}

.card h3 {
    margin-bottom: 10px;
}

.card p,
.card li {
    color: var(--text-soft);
}

.card ul {
    padding-left: 18px;
    margin-top: 10px;
}

/* =========================
   CONTACT
========================= */
.contact-box {
    background: rgba(255,255,255,0.9);
    box-shadow: 0 12px 30px var(--shadow-soft);
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 42px 34px;
    border-radius: 28px;
    border: 1px solid var(--border-soft);
    position: relative;
    z-index: 2;
}

.contact {
    font-size: 24px;
    font-weight: bold;
    margin: 15px 0;
}

.contact-links {
    list-style: none;
    padding: 0;
    margin-top: 24px;
}

.contact-links li {
    margin: 14px 0;
}

.contact-extra {
    margin-top: 30px;
}

.policy-text {
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--text-soft);
}

.contact-btn {
    display: block;
    width: 100%;
    max-width: 360px;
    margin: 10px auto;
    text-align: center;
    font-size: 17px;
    font-weight: 700;
    background: var(--main-pink);
    color: white;
    padding: 13px 20px;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: all 0.25s ease;
}

.contact-btn:hover {
    background: var(--pink-accent);
    transform: translateY(-2px);
}

.contact-btn.secondary-btn {
    background: #f7f2f4;
    color: var(--text-dark);
    border: 1px solid var(--border-soft);
}

.contact-btn.secondary-btn:hover {
    background: var(--soft-pink);
    color: var(--text-dark);
}

.contact-btn i {
    margin-right: 10px;
    font-size: 18px;
}

.contact-side-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 260px minmax(0, 760px) 260px;
    align-items: center;
    justify-content: center;
    gap: 26px;
    min-height: calc(100vh - 170px);
    padding-top: 30px;
    padding-bottom: 30px;
}

.contact-side-images {
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding-top: 0;
}

.contact-side-images.left {
    align-items: flex-end;
}

.contact-side-images.right {
    align-items: flex-start;
}

.contact-side-img {
    width: 185px;
    height: 235px;
    object-fit: cover;
    border-radius: 85px 85px 20px 20px;
    border: 6px solid rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
    transform: none;
}

.contact-main-content {
    width: 100%;
}

/* =========================
   SERVICES
========================= */
.services-header {
    text-align: center;
    margin-bottom: 26px;
}

.services-header h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--text-soft);
}

.size-selector,
.coat-selector {
    margin: 24px 0;
    text-align: center;
}

.size-btn,
.coat-btn {
    padding: 10px 18px;
    margin: 6px;
    border: 1px solid var(--border-soft);
    background: var(--warm-white);
    color: var(--text-dark);
    cursor: pointer;
    border-radius: 999px;
    font-weight: bold;
    transition: 0.2s ease-in-out;
}

.size-btn:hover,
.coat-btn:hover {
    background: #f8edf1;
}

.size-btn.active {
    background: var(--main-pink);
    color: white;
    border-color: var(--main-pink);
}

.coat-btn.active {
    background: var(--soft-blue);
    color: white;
    border-color: var(--soft-blue);
}

.price {
    font-size: 28px;
    font-weight: bold;
    margin-top: 10px;
    color: var(--steel-blue);
    transition: opacity 0.2s ease-in-out;
}

/* =========================
   FOOTER
========================= */
footer {
    background: var(--main-pink);
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

/* =========================
   MOBILE (TABLET + PHONE)
========================= */
@media (max-width: 900px) {

    /* HERO */
    .hero-arched {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-side {
        display: flex;
        justify-content: center !important;
        align-items: center;
        gap: 16px;
        flex-wrap: nowrap;
        transform: none !important;
    }

    .hero-side:first-child,
    .hero-side:last-child {
        justify-content: center !important;
        transform: none !important;
    }

    .arched-img {
        width: 130px;
        height: 170px;
        transform: none !important;
    }

    .hero-content {
        max-width: 560px;
        margin: 0 auto;
    }

    /* ABOUT */
    .about-side-layout {
        grid-template-columns: 1fr;
        gap: 22px;
        min-height: auto;
        padding-top: 35px;
        padding-bottom: 35px;
    }

    .about-side-images {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }

    .about-side-images.left,
    .about-side-images.right {
        align-items: center;
    }

    .about-side-img {
        width: 130px;
        height: 170px;
    }

    .about-side-images .about-side-img {
        transform: none !important;
    }

    /* CONTACT */
    .contact-side-layout {
        grid-template-columns: 1fr;
        gap: 22px;
        min-height: auto;
        padding-top: 35px;
        padding-bottom: 35px;
    }

    .contact-side-images {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }

    .contact-side-images.left,
    .contact-side-images.right {
        align-items: center;
    }

    .contact-side-img {
        width: 130px;
        height: 170px;
    }
}


/* =========================
   MOBILE (SMALL SCREENS)
========================= */
@media (max-width: 768px) {

    .nav-container {
        position: relative;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        background: linear-gradient(180deg, var(--main-pink), var(--soft-blue));
        flex-direction: column;
        width: 230px;
        padding: 20px;
        gap: 18px;
        display: none;
        border-radius: 18px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.16);
        z-index: 1000;
    }

    .nav-links.show {
        display: flex;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .hero {
        padding: 80px 16px 65px;
    }

    .hero-content,
    .page-card,
    .contact-box {
        padding: 28px 20px;
        border-radius: 22px;
    }

    .page-with-dogs {
        overflow: visible;
    }

    .section {
        padding: 55px 16px;
    }
}