/* Lake Norman Dog Grooming Studio - Master Styles */
/* ================================================ */

/* CSS Variables - Unified Color Palette */


 


:root {
    --primary-pink: #d63384;
    --light-pink: #461564;
    --soft-pink: #aa98b5;
    --primary-purple: #3e0561;
    --light-purple: #e8d5f2;
    --lavender: #aa98b5;
    --dark-purple: #aa98b5;
    --accent-rose: #e91e63;
    --neutral-gray: #6c757d;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --shadow-pink: rgba(214, 51, 132, 0.15);
    --shadow-purple: rgba(142, 68, 173, 0.15);
    --gradient-primary: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
    --gradient-background: linear-gradient(135deg, var(--lavender) 0%, var(--soft-pink) 100%);
    --orange-accent: #f97316;
    --orange-hover: #ea580c; 
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--gradient-background);
    color: var(--dark-purple);
    line-height: 1.6;
    min-height: 100vh;
}

/* Navigation Styles */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--dark-purple);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--orange-accent);
    background: var(--light-purple);
    transform: translateY(-2px);
}

/* Login Link Styling */
.nav-link.login-link {
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    margin-left: 1rem;
}

.nav-link.login-link:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-purple);
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-purple);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Page Headers */
.page-header {
    background: linear-gradient(135deg, var(--dark-purple) 0%, var(--primary-purple) 100%);
    color: var(--white);
    padding: 8rem 2rem 4rem;
    text-align: center;
    margin-top: 80px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Hero Section */
.hero {
    padding: 4rem 2rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    background: transparent; /* Remove the white background */
    padding: 4rem 3rem;
    border-radius: 30px;
    box-shadow: none; /* Remove the shadow for cleaner look */
    border: none; /* Remove the border */
    margin-bottom: 3rem;
}

.hero-title,
.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
}





.hero-subtitle,
.hero-content p {
    font-size: 1.3rem;
    color: var(--neutral-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-image {
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--neutral-gray);
    animation: fadeInRight 1s ease 0.6s both;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Button Styles */
.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--orange-accent);
    color: var(--white);
    box-shadow: 0 5px 15px var(--shadow-pink);
}

.btn-primary:hover {
    background: var(--orange-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow-purple);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-purple);
    border: 2px solid var(--light-purple);
}

.btn-secondary:hover {
    background: var(--light-purple);
    border-color: var(--primary-pink);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow-pink);
}

/* Services Section */
.services {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--light-gray);
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title,
.services h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-purple);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--neutral-gray);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px var(--shadow-pink);
    border: 1px solid var(--light-pink);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px var(--shadow-purple);
    border-color: var(--primary-pink);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--orange-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.service-title,
.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-purple);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--neutral-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-price {
    font-weight: bold;
    color: var(--orange-accent);
    font-size: 1.2rem;
}

.service-features {
    list-style: none;
    text-align: left;
}

.service-features li {
    color: var(--neutral-gray);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-pink);
    font-weight: bold;
}

/* Services Detail Page Styles */
.services-detail {
    padding: 4rem 2rem;
    background: var(--white);
}

.service-category {
    margin-bottom: 4rem;
}

.service-category h2 {
    color: var(--dark-purple);
    font-size: 2rem;
    margin-bottom: 2rem;
    border-bottom: 3px solid var(--orange-accent);
    padding-bottom: 0.5rem;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-item {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--orange-accent);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.service-item h3 {
    color: var(--dark-purple);
    margin-bottom: 1rem;
}

/* About Section */
.about {
    padding: 4rem 2rem;
    background: var(--white);
    margin: 2rem;
    border-radius: 30px;
    box-shadow: 0 15px 40px var(--shadow-purple);
    border: 1px solid var(--light-purple);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-purple);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--neutral-gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-image {
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-pink);
    border: 3px solid var(--light-pink);
}

/* Contact Section */
.contact {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px var(--shadow-pink);
    border: 1px solid var(--light-pink);
}

.form-group {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--dark-purple);
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--light-purple);
    border-radius: 10px;
    font-size: 1rem;
    background: var(--white);
    color: var(--dark-purple);
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 3px var(--shadow-pink);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--dark-purple) 0%, var(--primary-purple) 100%);
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--dark-purple);
    color: var(--white);
    padding: 3rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    color: var(--light-pink);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section p,
.footer-section a {
    color: var(--lavender);
    text-decoration: none;
    line-height: 1.6;
}

.footer-section a:hover {
    color: var(--primary-pink);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--primary-purple);
    color: var(--lavender);
}

/* Testimonials Specific Styles */
.testimonials-content {
    padding: 4rem 2rem;
    background: var(--white);
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-intro h2 {
    color: var(--dark-purple);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.testimonials-intro p {
    font-size: 1.1rem;
    color: var(--neutral-gray);
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border: 1px solid var(--light-gray);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--orange-accent);
    font-family: Georgia, serif;
    opacity: 0.3;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.customer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange-accent), var(--orange-hover));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 1rem;
}

.customer-info h3 {
    color: var(--dark-purple);
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.customer-info .customer-title {
    color: var(--neutral-gray);
    font-size: 0.9rem;
}

.testimonial-text {
    color: var(--neutral-gray);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star {
    color: #fbbf24;
    font-size: 1.2rem;
}

/* Stats Section */
.stats-section {
    background: var(--light-gray);
    padding: 4rem 2rem;
}

.stats-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--orange-accent);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--neutral-gray);
    font-size: 1rem;
}

/* Gallery Specific Styles */
.gallery-header {
    background: linear-gradient(135deg, var(--dark-purple) 0%, var(--primary-purple) 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.gallery-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="paw" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23paw)"/></svg>');
    opacity: 0.1;
}

.filter-controls {
    background: var(--white);
    padding: 2rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--light-gray);
    background: var(--white);
    color: var(--neutral-gray);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover {
    border-color: var(--orange-accent);
    color: var(--orange-accent);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--orange-accent);
    border-color: var(--orange-accent);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-pink { color: var(--primary-pink); }
.text-purple { color: var(--primary-purple); }
.bg-gradient { background: var(--gradient-primary); }
.shadow-pink { box-shadow: 0 10px 30px var(--shadow-pink); }
.shadow-purple { box-shadow: 0 10px 30px var(--shadow-purple); }

/* Accessibility Enhancements */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--dark-purple);
    color: var(--white);
    padding: 8px;
    text-decoration: none;
    z-index: 10000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 6px;
}

.keyboard-navigation *:focus {
    outline: 2px solid var(--orange-accent);
    outline-offset: 2px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 1rem;
        display: block;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-content h1, .page-header h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .filter-buttons {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }

    .filter-btn {
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .service-card {
        padding: 2rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hamburger,
    .filter-controls,
    .cta-section {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .page-header {
        background: none;
        color: black;
    }
}