/* === Gone To The Dogs Mobile Grooming === */
/* Color Scheme: Playful Teal & Coral */

:root {
    --primary: #319795;
    --primary-light: #38b2ac;
    --accent: #ed64a6;
    --accent-light: #f687b3;
    --dark: #2d3748;
    --gray: #4a5568;
    --light: #e6fffa;
    --white: #ffffff;
    --cream: #fffaf0;
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Nunito', sans-serif;
    color: var(--dark);
    line-height: 1.6;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Navbar */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.paw { font-size: 2.2rem; }
.logo-main {
    display: block;
    font-family: 'Quicksand', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.1;
}
.logo-sub {
    display: block;
    font-size: 0.75rem;
    color: var(--accent);
    letter-spacing: 1.5px;
    font-weight: 600;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}
.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 700;
    font-size: 0.9rem;
    transition: color 0.3s;
}
.nav-links a:hover { color: var(--primary); }

.nav-cta {
    background: var(--accent);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: background 0.3s;
}
.nav-cta:hover { background: var(--accent-light); }

.hamburger { display: none; flex-direction: column; cursor: pointer; gap: 5px; }
.hamburger span { width: 25px; height: 3px; background: var(--dark); border-radius: 3px; }

/* Hero */
.hero {
    height: 90vh;
    min-height: 600px;
    background: url('assets/hero-image.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(49,151,149,0.8) 0%, rgba(45,55,72,0.7) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 20px;
    color: var(--white);
}
.hero h1 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}
.hero p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    opacity: 0.95;
}
.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}
.btn-primary {
    background: var(--accent);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(237,100,166,0.3);
}
.btn-secondary {
    background: var(--white);
    color: var(--primary);
}
.btn-secondary:hover {
    background: var(--light);
    transform: translateY(-2px);
}

.offer-badge {
    display: inline-block;
    background: #f6e05e;
    color: var(--dark);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
}

/* Benefits */
.benefits {
    padding: 60px 0;
    background: var(--light);
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.benefit {
    text-align: center;
    padding: 30px;
}
.b-icon { font-size: 3rem; margin-bottom: 15px; display: block; }
.benefit h3 {
    font-family: 'Quicksand', sans-serif;
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.2rem;
}
.benefit p { color: var(--gray); font-size: 0.95rem; }

/* About */
.about { padding: 100px 0; background: var(--white); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-text h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.3rem;
    color: var(--primary);
    margin-bottom: 20px;
}
.about-text .lead {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 600;
}
.about-text p {
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.7;
}
.features {
    margin-top: 25px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.f-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--dark);
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-image img { width: 100%; display: block; }

/* Services */
.services { padding: 100px 0; background: var(--cream); }
.section-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.3rem;
    text-align: center;
    color: var(--primary);
    margin-bottom: 50px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}
.service-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: var(--shadow);
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.s-icon { font-size: 2.5rem; margin-bottom: 15px; display: block; }
.service-card h3 {
    font-family: 'Quicksand', sans-serif;
    color: var(--primary);
    margin-bottom: 12px;
}
.service-card p { color: var(--gray); font-size: 0.95rem; line-height: 1.6; }

/* Service Area */
.service-area {
    padding: 80px 0;
    background: var(--primary);
    color: var(--white);
    text-align: center;
}
.service-area .section-title { color: var(--white); margin-bottom: 30px; }
.areas {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}
.area {
    background: rgba(255,255,255,0.15);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
}
.area-note { opacity: 0.8; }

/* Contact */
.contact { padding: 100px 0; background: var(--white); }
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.c-card {
    background: var(--white);
    padding: 45px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
    border: 2px solid var(--light);
}
.c-card:hover { transform: translateY(-5px); border-color: var(--primary); }
.c-icon { font-size: 2.5rem; margin-bottom: 15px; display: block; }
.c-card h3 {
    font-family: 'Quicksand', sans-serif;
    color: var(--primary);
    margin-bottom: 10px;
}
.c-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
}
.c-card p { color: var(--gray); margin-top: 8px; }
.special { color: var(--accent); font-weight: 700; font-size: 1.1rem; }

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 50px 0 30px;
    text-align: center;
}
.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 10px;
}
.fb-main {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
}
.copy { margin-top: 20px; opacity: 0.5; font-size: 0.9rem; }

/* Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; position: absolute; top: 80px; left: 0; width: 100%; background: var(--white); flex-direction: column; padding: 20px; gap: 15px; }
    .nav-links.active { display: flex; }
    .hamburger { display: flex; }
    .nav-cta { display: none; }
    .hero h1 { font-size: 2.2rem; }
    .benefits-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; }
    .features { grid-template-columns: 1fr; }
}
