:root {
    --primary: #3a3a3a;
    --secondary: #f8f3e6;
    --accent: #d4b78f;
    --text: #333333;
    --light: #ffffff;
    --dark: #222222;
    --spacing: 1rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    color: var(--text);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing);
}

/* Header Styles */
header {
    background-color: var(--light);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem var(--spacing);
    font-size: 0.9rem;
}

.contact-info {
    display: flex;
    gap: 1.5rem;
}

.contact-info a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.language-selector {
    display: flex;
    gap: 0.5rem;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem var(--spacing);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
}

.book-button {
    background-color: var(--accent);
    color: var(--light);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.book-button:hover {
    background-color: var(--primary);
    color: var(--light);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background-color: var(--secondary);
    padding: 5rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.hero p {
    max-width: 700px;
    margin: 0 auto 2rem;
}

.reviews {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.stars {
    color: gold;
}

/* Services Section */
.services {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.section-title p {
    max-width: 600px;
    margin: 0 auto;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.benefit {
    text-align: center;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.benefit-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.pet-types {
    margin-bottom: 4rem;
}

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.tab-button {
    background: none;
    border: none;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.tab-button.active {
    border-bottom: 2px solid var(--accent);
    color: var(--accent);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.pet-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.pet-category {
    padding: 0.5rem 1rem;
    background-color: var(--secondary);
    border-radius: 4px;
    font-size: 0.9rem;
}

.size-selector {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.size-button {
    background-color: var(--light);
    border: 1px solid var(--accent);
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.size-button.active {
    background-color: var(--accent);
    color: var(--light);
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.service:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.service-content {
    padding: 1.5rem;
}

.service-title {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.service-title h3 {
    font-size: 1.2rem;
}

.price {
    color: var(--accent);
    font-weight: 700;
}

.duration {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 1rem;
}

/* Gallery Section */
.gallery {
    padding: 5rem 0;
    background-color: var(--secondary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Locations Section */
.locations {
    padding: 5rem 0;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.location {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.location-image {
    height: 200px;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-details {
    padding: 1.5rem;
}

.location-name {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.location-name h3 {
    font-size: 1.2rem;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.address, .hours {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background-color: var(--secondary);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial {
    background-color: var(--light);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    text-align: center;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-weight: 600;
}

.testimonial-date {
    font-size: 0.8rem;
    color: #666;
}

/* Blog Section */
.blog {
    padding: 5rem 0;
}

.blog-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-post {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.blog-image {
    height: 200px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-date {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.blog-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.blog-excerpt {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.read-more {
    font-weight: 600;
    color: var(--accent);
}

/* Instagram Section */
.instagram {
    padding: 5rem 0;
    background-color: var(--secondary);
}

.instagram-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.instagram-post {
    border-radius: 8px;
    overflow: hidden;
    height: 200px;
    position: relative;
}

.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.instagram-post:hover img {
    transform: scale(1.05);
}

/* Newsletter Section */
.newsletter {
    padding: 5rem 0;
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.newsletter-input {
    flex: 1;
    min-width: 250px;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.newsletter-button {
    background-color: var(--accent);
    color: var(--light);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-button:hover {
    background-color: var(--primary);
}

/* Footer */
footer {
    background-color: var(--primary);
    color: var(--light);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 2rem;
    height: 2px;
    background-color: var(--accent);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--light);
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 100%;
    max-width: 400px;
    background-color: var(--light);
    color: var(--text);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 9999;
    display: none;
}

.cookie-title {
    font-weight: 600;
    margin-bottom: 1rem;
}

.cookie-text {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.cookie-button {
    background-color: var(--accent);
    color: var(--light);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.cookie-button:hover {
    background-color: var(--primary);
}

/* Responsive */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-info {
        display: none;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .services, .gallery, .locations, .testimonials, .blog, .instagram, .newsletter {
        padding: 3rem 0;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .tabs {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-input, .newsletter-button {
        width: 100%;
    }
    
    .cookie-consent {
        bottom: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
    }
}

/* Custom Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Custom Components */
.btn {
    @apply inline-flex items-center justify-center px-6 py-3 text-base font-medium rounded-md transition-colors duration-200;
}

.btn-primary {
    @apply bg-teal-600 text-white hover:bg-teal-700;
}

.btn-secondary {
    @apply bg-white/10 backdrop-blur-sm text-white border border-white hover:bg-white/20;
}

/* Form Styles */
.form-input {
    @apply mt-1 block w-full rounded-md border-gray-300 shadow-sm focus:border-teal-500 focus:ring-teal-500;
}

.form-label {
    @apply block text-sm font-medium text-gray-700;
}

/* Section Styles */
.section-title {
    @apply text-3xl font-bold tracking-tight mb-4;
}

.section-divider {
    @apply w-20 h-1 bg-teal-500 mb-8;
}

/* Card Styles */
.card {
    @apply border-none shadow-md hover:shadow-lg transition-shadow rounded-lg bg-white p-6;
}

/* Navigation Styles */
.nav-link {
    @apply text-gray-600 hover:text-teal-600 transition-colors duration-200;
}

.nav-link-active {
    @apply text-teal-600;
}

/* Footer Styles */
.footer-link {
    @apply text-gray-400 hover:text-white transition-colors duration-200;
}

/* Mobile Menu Styles */
.mobile-menu {
    @apply transition-all duration-300 ease-in-out;
}

/* Cookie Consent Styles */
.cookie-consent {
    @apply transition-all duration-300 ease-in-out;
}

/* Gallery Styles */
.gallery-item {
    @apply transition-transform duration-300 group-hover:scale-110;
}

/* Service Card Styles */
.service-icon {
    @apply w-16 h-16 rounded-full bg-teal-100 flex items-center justify-center mb-4;
}

.service-title {
    @apply text-xl font-bold mb-2;
}

.service-description {
    @apply text-gray-600;
}

/* Contact Form Styles */
.contact-info-item {
    @apply flex items-center mb-4;
}

.contact-icon {
    @apply w-12 h-12 rounded-full bg-teal-100 flex items-center justify-center mr-4;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .container {
        @apply px-4;
    }
    
    .section-title {
        @apply text-2xl;
    }
}

/* Print Styles */
@media print {
    .no-print {
        display: none !important;
    }
    
    body {
        @apply text-black;
    }
    
    a {
        @apply text-black;
    }
} 