/* ========================================================
   Chadderton Dog Walking & Pet Care Services
   Static site stylesheet
   ======================================================== */

:root {
    --teal: #6f989c;
    --teal-dark: #5c858a;
    --teal-deep: #4a6f73;
    --amber: #e8a90f;
    --amber-dark: #d59a06;
    --orange: #ee7d1b;
    --orange-dark: #d96c10;
    --ink: #2b2b2b;
    --gray-footer: #e6e6e6;
    --white: #ffffff;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--ink);
    line-height: 1.6;
    font-weight: 300;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

img { max-width: 100%; display: block; }

/* ================= HEADER ================= */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 18px 0;
    transition: background-color .35s ease, padding .35s ease, box-shadow .35s ease;
}
.site-header.scrolled {
    background: var(--teal);
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.brand {
    font-family: 'Pacifico', cursive;
    font-size: 1.4rem;
    color: var(--white);
    text-decoration: none;
    text-shadow: 0 2px 6px rgba(0,0,0,.35);
    display: flex;
    align-items: center;
    gap: 8px;
}
.brand-paw { font-size: 1.1rem; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
    color: var(--white);
    text-decoration: none;
    font-size: .95rem;
    font-weight: 500;
    letter-spacing: .3px;
    text-shadow: 0 1px 4px rgba(0,0,0,.35);
    position: relative;
    transition: opacity .2s ease;
}
.main-nav a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    left: 0; bottom: -6px;
    width: 0; height: 2px;
    background: var(--amber);
    transition: width .25s ease;
}
.main-nav a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
    background: var(--amber);
    padding: 8px 18px;
    border-radius: 40px;
    text-shadow: none !important;
    transition: background-color .25s ease, transform .2s ease;
}
.nav-cta:hover { background: var(--amber-dark); transform: translateY(-2px); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.nav-toggle span {
    width: 26px; height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: transform .3s ease, opacity .3s ease;
}

/* ================= HERO ================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('images/hero-dogs.jpg') center center / cover no-repeat;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(20,25,25,.72) 0%, rgba(20,25,25,.45) 45%, rgba(20,25,25,.15) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
    padding-top: 90px;
    padding-bottom: 60px;
    animation: fadeUp 1s ease both;
}
.hero-eyebrow {
    font-family: 'Pacifico', cursive;
    color: #ffe9c2;
    font-size: 1.15rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0,0,0,.5);
}
.hero-title {
    font-family: 'Pacifico', cursive;
    color: var(--white);
    font-size: clamp(2.4rem, 6vw, 4rem);
    line-height: 1.1;
    margin-bottom: 22px;
    text-shadow: 0 4px 18px rgba(0,0,0,.55);
}
.hero-text {
    color: #f3f3f3;
    font-size: 1.05rem;
    max-width: 480px;
    margin-bottom: 14px;
    text-shadow: 0 1px 6px rgba(0,0,0,.5);
}
.hero-tel {
    color: var(--white);
    font-weight: 500;
    margin-bottom: 22px;
    text-shadow: 0 1px 6px rgba(0,0,0,.5);
}
.social-fb {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--teal);
    color: var(--white);
    margin-bottom: 26px;
    transition: transform .25s ease, background-color .25s ease;
    box-shadow: 0 4px 14px rgba(0,0,0,.3);
}
.social-fb:hover { background: var(--teal-dark); transform: translateY(-3px) scale(1.05); }
.hero-buttons { display: flex; gap: 18px; flex-wrap: wrap; }

/* ================= BUTTONS ================= */
.btn {
    display: inline-block;
    text-decoration: none;
    text-align: center;
    font-weight: 500;
    letter-spacing: .6px;
    cursor: pointer;
    border: none;
    transition: transform .2s ease, background-color .25s ease, box-shadow .25s ease;
}
.btn-hero {
    background: var(--teal);
    color: var(--white);
    padding: 15px 34px;
    border-radius: 40px;
    font-size: .95rem;
    box-shadow: 0 6px 18px rgba(0,0,0,.25);
}
.btn-hero:hover { background: var(--teal-dark); transform: translateY(-3px); }
.btn-send {
    background: var(--orange);
    color: var(--white);
    padding: 14px 40px;
    border-radius: 40px;
    font-size: .95rem;
    box-shadow: 0 6px 18px rgba(238,125,27,.4);
}
.btn-send:hover { background: var(--orange-dark); transform: translateY(-3px); }

/* ================= SERVICES ================= */
.services {
    background: var(--amber);
    padding: 80px 0 90px;
    color: var(--ink);
}
.section-title-dark {
    text-align: center;
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.divider-dark {
    display: block;
    width: 46px; height: 3px;
    background: rgba(0,0,0,.55);
    margin: 16px auto 50px;
}
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}
.services-list {
    list-style: none;
    text-align: right;
}
.services-list li {
    font-size: 1.25rem;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0,0,0,.12);
    transition: transform .2s ease, color .2s ease;
}
.services-list li:hover { transform: translateX(-6px); color: #6b4e00; }
.services-list li.more { border-bottom: none; }
.services-list li.more a {
    color: #6b4e00;
    font-weight: 600;
    text-decoration: none;
}
.services-image img {
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 20px 40px rgba(0,0,0,.25);
    transition: transform .4s ease;
}
.services-image img:hover { transform: scale(1.02); }

/* ================= ABOUT ================= */
.about {
    position: relative;
    background: var(--teal);
    color: var(--white);
    padding: 90px 0 100px;
    overflow: hidden;
}
.about .paw {
    position: absolute;
    font-size: 10rem;
    opacity: .08;
    color: #2b3d3f;
    pointer-events: none;
}
.paw-1 { top: 6%; right: 8%; transform: rotate(-15deg); }
.paw-2 { top: 22%; right: 2%; transform: rotate(10deg); font-size: 12rem; }
.about-inner { position: relative; z-index: 2; max-width: 760px; }
.section-title-light {
    font-family: 'Pacifico', cursive;
    font-size: 2rem;
    margin-bottom: 24px;
    text-shadow: 0 2px 10px rgba(0,0,0,.2);
}
.about p { margin-bottom: 16px; font-size: 1.02rem; }
.about-sub {
    font-weight: 600;
    font-size: 1.2rem;
    margin: 30px 0 16px;
}
.about-image {
    margin-top: 40px;
    max-width: 520px;
}
.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 45px rgba(0,0,0,.3);
}

/* ================= CONTACT ================= */
.contact {
    background: var(--teal-dark);
    color: var(--white);
    padding: 80px 0 100px;
    text-align: center;
}
.contact-lead {
    margin: 8px 0 34px;
    font-size: 1.05rem;
    opacity: .95;
}
.contact-cards {
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}
.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 210px;
    padding: 22px 28px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 10px;
    text-decoration: none;
    color: var(--white);
    transition: transform .25s ease, background-color .25s ease;
}
.contact-card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,.18);
}
.contact-card-label {
    font-size: .8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: .8;
    margin-bottom: 6px;
}
.contact-card-value {
    font-size: 1.4rem;
    font-weight: 600;
}
.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}
.btn-fb-message {
    background: var(--teal);
    color: var(--white);
    padding: 14px 34px;
    border-radius: 40px;
    font-size: .95rem;
    box-shadow: 0 6px 18px rgba(0,0,0,.2);
}
.btn-fb-message:hover { background: var(--teal-deep); transform: translateY(-3px); }

/* ================= FOOTER ================= */
.site-footer {
    background: var(--gray-footer);
    color: #555;
    text-align: center;
    padding: 50px 0 40px;
    font-size: .95rem;
}
.footer-brand {
    font-family: 'Pacifico', cursive;
    color: var(--teal);
    font-size: 1.4rem;
    margin-bottom: 12px;
}
.site-footer p { margin-bottom: 4px; }
.footer-areas { margin-top: 10px; font-style: italic; }
.footer-fb {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--teal);
    color: var(--white);
    margin: 18px 0 14px;
    transition: transform .25s ease, background-color .25s ease;
}
.footer-fb:hover { background: var(--teal-dark); transform: translateY(-3px); }
.footer-copy { font-size: .82rem; color: #888; margin-top: 8px; }

/* ================= ANIMATIONS ================= */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ================= RESPONSIVE ================= */
@media (max-width: 860px) {
    .main-nav {
        position: fixed;
        top: 0; right: -100%;
        height: 100vh;
        width: 260px;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        padding: 90px 30px;
        background: var(--teal-deep);
        box-shadow: -6px 0 24px rgba(0,0,0,.3);
        transition: right .35s ease;
    }
    .main-nav.open { right: 0; }
    .nav-toggle { display: flex; z-index: 110; }
    .services-grid { grid-template-columns: 1fr; gap: 34px; }
    .services-list { text-align: center; }
    .services-list li:hover { transform: none; }
    .paw-1, .paw-2 { font-size: 7rem; opacity: .06; }
    .about-image { margin-left: auto; margin-right: auto; }
}
@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; }
    .btn-hero { width: 100%; }
    .brand { font-size: 1.1rem; }
}
