/* Custom Font - Hello Paris */
@font-face {
    font-family: 'Hello Paris';
    src: url('fonts/HelloParis.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* CSS Variables */
:root {
    --primary-purple: #B794C7;
    --light-blue: #A8E6CF;
    --dark-purple: #8B6AA3;
    --bubble-blue: #7DD3FC;
    --orange-accent: #F5A623;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #333333;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background: var(--light-gray);
    position: relative;
}

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

/* Header */
header {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--dark-purple) 100%);
    color: white;
    padding: 1.5rem 0;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: transparent;
    padding: 0px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.15);
    overflow: hidden;
}

.logo-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text h1 {
    font-family: 'Hello Paris', 'Brush Script MT', cursive;
    font-size: 4.5rem;
    font-weight: normal;
    margin-bottom: 0.3rem;
}

.logo-text p {
    font-size: 1rem;
    opacity: 0.9;
    font-style: italic;
}

.header-contact {
    text-align: right;
}

.phone {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.3rem;
}

.phone a {
    color: white;
    text-decoration: none;
}

.hours {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Navigation - Sticky to top */
nav {
    background: var(--dark-purple);
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.nav-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 0.7rem 1.5rem;
    transition: all 0.3s;
    border-radius: 4px;
    margin: 0.2rem;
    cursor: pointer;
}

nav a:hover, nav a.active {
    background: var(--bubble-blue);
    color: var(--dark-purple);
    font-weight: bold;
}

/* Announcement Banner */
.announcement {
    background: linear-gradient(135deg, var(--bubble-blue) 0%, var(--light-blue) 100%);
    color: var(--dark-purple);
    padding: 1rem;
    text-align: center;
    font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* Hero Section - Redesigned */
.hero {
    background: linear-gradient(rgba(183, 148, 199, 0.9), rgba(139, 106, 163, 0.9)), 
                radial-gradient(circle at 20% 50%, var(--bubble-blue) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, var(--light-blue) 0%, transparent 50%),
                var(--primary-purple);
    color: white;
    padding: 1rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 15px;  /* Add this line! */
}
.hero-redesign {
    background: linear-gradient(135deg, #B794C7 0%, #8B6AA3 100%);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h2 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.hero-image {
    flex: 1;
    max-width: 400px;
    max-height: 450px;  /* Add this - controls height */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-image img {
    width: 100%;
    height: 100%;  /* Fill the container */
    object-fit: cover;  /* Crops nicely to fit */
    border-radius: 15px;
}

/* Add more padding around the text */
.hero-text {
    flex: 0 0 60%; 
    min-width: 300px;
    padding: 5rem;  /* Add this for breathing room */
}

/* Reduce gap between image and text if needed */
.hero .about-content {
    display: flex;
    gap: 1.5rem;  /* Reduced from 2rem */
    align-items: center;
}
.hero-tagline {
    font-size: 2rem;
    color: var(--orange-accent);
    font-weight: bold;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.rusell-container {
    text-align: center;
    position: relative;
}

.rusell-container img {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
    animation: gentleFloat 4s ease-in-out infinite;
}

@keyframes gentleFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

/* Floating bubbles */
.bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(168, 230, 207, 0.3);
    border: 2px solid rgba(168, 230, 207, 0.5);
    animation: bubbleFloat 6s ease-in-out infinite;
}

@keyframes bubbleFloat {
    0%, 100% { transform: translateY(0px); opacity: 0.6; }
    50% { transform: translateY(-30px); opacity: 0.9; }
}

.bubble-1 { width: 80px; height: 80px; top: 10%; left: 5%; animation-delay: 0s; }
.bubble-2 { width: 50px; height: 50px; top: 60%; left: 10%; animation-delay: 1s; }
.bubble-3 { width: 60px; height: 60px; top: 20%; right: 8%; animation-delay: 2s; }
.bubble-4 { width: 40px; height: 40px; top: 70%; right: 15%; animation-delay: 1.5s; }
.bubble-5 { width: 30px; height: 30px; top: 40%; right: 5%; animation-delay: 0.5s; }

/* Original Hero Section */
.hero {
    background: linear-gradient(rgba(183, 148, 199, 0.9), rgba(139, 106, 163, 0.9)), 
                radial-gradient(circle at 20% 50%, var(--bubble-blue) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, var(--light-blue) 0%, transparent 50%),
                var(--primary-purple);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--bubble-blue);
    opacity: 0.3;
    top: 20%;
    left: 10%;
    animation: float 3s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--light-blue);
    opacity: 0.4;
    top: 60%;
    right: 15%;
    animation: float 3s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero h2, .hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.cta-button {
    display: inline-block;
    background: var(--bubble-blue);
    color: var(--dark-purple);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(125, 211, 252, 0.3);
    position: relative;
    z-index: 2;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(125, 211, 252, 0.4);
    background: var(--light-blue);
}

.cta-button.small {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Ensure the final CTA section is responsive and spaced correctly */
.final-cta-section {
    /* Use your defined variable for the primary purple color */
    background: var(--primary-purple); 
        border-radius: 15px; 

}
.final-cta-section .about-content {
    /* Use the same successful Flex rules */
    display: flex;
    gap: 2rem;
    align-items: center; 
    padding: 4rem 0; /* Gives the final CTA some vertical breathing room */
}

/* Set the width ratio for the text (approx. 60%) */
.final-cta-section .cta-text {
    flex: 3;
    min-width: 50%;
}

/* Set the width ratio for the image (approx. 40%) */
.final-cta-section .cta-image {
    flex: 2;
    min-width: 40%;
}

.final-cta-section * { 
    color: white; 
}

/* Main Content */
main {
    padding: 3rem 0;
}

section {
    margin-bottom: 4rem;
}

h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-purple);
    text-align: center;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-purple);
    text-align: center;
}

h4 {
    font-size: 1.2rem;
    margin: 1rem 0 0.5rem 0;
    color: var(--dark-purple);
}

/* Card Styles */
.card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(183, 148, 199, 0.1);
    margin-bottom: 2rem;
    border-top: 3px solid var(--primary-purple);
    position: relative;
}

/* Card corner paw prints */
.card::after {
    content: "🐾";
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    font-size: 4rem;
    opacity: 0.05;
    transform: rotate(25deg);
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(183, 148, 199, 0.1);
    transition: all 0.3s;
    border-left: 4px solid var(--bubble-blue);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(183, 148, 199, 0.2);
    border-left-color: var(--primary-purple);
}

.service-card h4 {
    font-size: 1.4rem;
    color: var(--dark-purple);
    margin-bottom: 1rem;
}

.service-card ul {
    list-style: none;
    margin: 1rem 0;
}

.service-card li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--bubble-blue);
    font-weight: bold;
}

/* Enhanced Service Cards */
.service-card-enhanced {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(183, 148, 199, 0.15);
    transition: all 0.4s;
    border-top: 5px solid var(--orange-accent);
    position: relative;
    overflow: hidden;
}

.service-card-enhanced::before {
    content: "🐾";
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 3rem;
    opacity: 0.1;
}

.service-card-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(183, 148, 199, 0.25);
    border-top-color: var(--primary-purple);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* About Content Grid */
.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    background: linear-gradient(135deg, var(--primary-purple), var(--dark-purple));
    height: 300px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-image::before {
    content: '🐕 ✨ 🛁';
    position: absolute;
    font-size: 3rem;
    opacity: 0.2;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Why Choose Split Layout */
.why-choose-split {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 4rem;
    align-items: center;
    margin: 3rem 0;
}

.rusell-small {
    width: 100%;
    border-radius: 50%;
    box-shadow: 0 10px 40px rgba(183, 148, 199, 0.3);
}

/* Feature Highlight */
.feature-highlight {
    background: linear-gradient(135deg, rgba(168, 230, 207, 0.2), rgba(125, 211, 252, 0.2));
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid var(--orange-accent);
    margin: 2rem 0;
}

.feature-highlight h4 {
    color: var(--orange-accent);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

/* Paw Print Lists */
.paw-list {
    list-style: none;
    margin: 1.5rem 0;
}

.paw-list li {
    padding: 0.5rem 0 0.5rem 2.5rem;
    position: relative;
    font-size: 1.1rem;
}

.paw-list li::before {
    content: "🐾";
    position: absolute;
    left: 0;
    font-size: 1.3rem;
}

/* Checkmark Lists */
.checkmark-list {
    list-style: none;
    margin-top: 1rem;
}

.checkmark-list li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.checkmark-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--bubble-blue);
    font-weight: bold;
}

/* App Download Section */
.app-download {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--dark-purple) 100%);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 4rem;
}

.app-download h3 {
    color: white;
    margin-bottom: 1rem;
}

.app-download p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.app-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.app-badge {
    background: black;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: transform 0.3s;
}

.app-badge:hover {
    transform: translateY(-2px);
}

.app-icon {
    font-size: 1.5rem;
}

.app-text-small {
    font-size: 0.7rem;
    opacity: 0.8;
}

.app-text-large {
    font-size: 1rem;
    font-weight: bold;
}

.app-features {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-purple);
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 4rem;
    color: var(--bubble-blue);
    opacity: 0.3;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #555;
    margin-left: 2rem;
}

.testimonial .author {
    font-weight: bold;
    color: var(--dark-purple);
    text-align: right;
}

.testimonial-featured {
    background: linear-gradient(135deg, var(--light-blue), var(--bubble-blue));
    padding: 3rem;
    border-radius: 20px;
    color: var(--dark-purple);
    font-size: 1.2rem;
    font-style: italic;
    position: relative;
    margin: 3rem 0;
}

.testimonial-featured::before {
    content: """;
    font-size: 6rem;
    position: absolute;
    top: -1rem;
    left: 1rem;
    opacity: 0.3;
    color: var(--dark-purple);
}

.testimonial-author {
    font-weight: bold;
    font-style: normal;
    text-align: right;
    margin-top: 1rem;
    font-size: 1rem;
}

.rating {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
    font-size: 1.5rem;
}

.star {
    color: #ffd700;
    margin: 0 0.1rem;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    background: var(--primary-purple);
    height: 250px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(183, 148, 199, 0.3);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--bubble-blue);
    opacity: 0.6;
    animation: bubble 2s ease-in-out infinite;
}

@keyframes bubble {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
    50% { transform: translateY(-10px) scale(1.2); opacity: 0.8; }
}

.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.before-after-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(183, 148, 199, 0.1);
    text-align: center;
}

.before-after-placeholder {
    height: 200px;
    background: var(--light-gray);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 3rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--light-blue);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
}

.btn {
    background: var(--primary-purple);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
}

.btn:hover {
    background: var(--dark-purple);
    transform: translateY(-2px);
}

/* Floating Action Button */
.fab {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--bubble-blue);
    color: var(--dark-purple);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(125, 211, 252, 0.3);
    transition: all 0.3s;
    z-index: 1000;
}

.fab:hover {
    transform: scale(1.1);
    background: var(--light-blue);
}

/* Scattered Paw Prints - Individual divs with rotations */
.paw-print {
    position: fixed;
    width: 50px;
    height: 50px;
    background-image: url('images/blue-paw.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
}

.paw-1 { top: 15%; left: 10%; width: 60px; height: 60px; transform: rotate(15deg); }
.paw-2 { top: 25%; right: 15%; width: 45px; height: 45px; transform: rotate(-20deg); }
.paw-3 { top: 65%; left: 15%; width: 70px; height: 70px; transform: rotate(35deg); }
.paw-4 { top: 75%; right: 10%; width: 50px; height: 50px; transform: rotate(-10deg); }
.paw-5 { top: 45%; left: 25%; width: 55px; height: 55px; transform: rotate(25deg); }
.paw-6 { top: 55%; right: 30%; width: 65px; height: 65px; transform: rotate(-30deg); }
.paw-7 { top: 85%; left: 50%; width: 40px; height: 40px; transform: rotate(45deg); }
.paw-8 { top: 10%; left: 35%; width: 75px; height: 75px; transform: rotate(-15deg); }
.paw-9 { top: 35%; right: 40%; width: 50px; height: 50px; transform: rotate(20deg); }
.paw-10 { top: 80%; left: 20%; width: 60px; height: 60px; transform: rotate(-25deg); }
.paw-11 { top: 15%; right: 25%; width: 45px; height: 45px; transform: rotate(10deg); }
.paw-12 { top: 60%; left: 40%; width: 55px; height: 55px; transform: rotate(-35deg); }

main, header, .announcement {
    position: relative;
    z-index: 2;
}

/* Nav needs to stay sticky, don't apply relative positioning to it */

/* Section decorations */
section {
    position: relative;
}

section.card {
    position: relative;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

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

    .logo-image {
        width: 100px;
        height: 100px;
    }

    .logo-image img {
        width: 100px;
        height: 100px;
    }

    .logo-text h1 {
        font-size: 2rem;
    }

    .about-content,
    .hero-content-grid,
    .why-choose-split {
        grid-template-columns: 1fr;
    }

    .hero h2, .hero h1 {
        font-size: 2rem;
    }

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

    .hero-text h2 {
        font-size: 2rem;
    }

    .hero-tagline {
        font-size: 1.5rem;
    }

    .rusell-container img {
        max-width: 250px;
    }

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

    .app-badges {
        flex-direction: column;
        align-items: center;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}