﻿/* Paws4Us Custom Styles */
:root {
    --primary: #f59e0b;
    --secondary: #f97316;
    --accent: #fb923c;
    --trust: #fbbf24;
    --foreground: #1f2937;
    --muted-foreground: #6b7280;
    --border: #e5e7eb;
    --background: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--foreground);
    background-color: var(--background);
}

/* Header Styling */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgb(228, 234, 254);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    object-fit: cover;
    transition: transform 0.3s;
}

    .logo-image:hover {
        transform: scale(1.05);
    }

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    letter-spacing: -0.5px;
}

/* Navigation */
.nav-link-custom {
    color: var(--foreground);
    opacity: 0.8;
    transition: all 0.3s;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
}

    .nav-link-custom:hover {
        opacity: 1;
        color: var(--primary);
        background: rgba(245, 158, 11, 0.1);
    }

    .nav-link-custom.active {
        color: var(--primary);
        font-weight: 600;
        opacity: 1;
    }

/* Buttons */
.btn-primary-custom {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(245, 158, 11, 0.25);
}

    .btn-primary-custom:hover {
        background: #d97706;
        box-shadow: 0 6px 8px rgba(245, 158, 11, 0.4);
        transform: translateY(-2px);
    }

.btn-outline-custom {
    background: transparent;
    color: var(--foreground);
    border: 2px solid var(--border);
    padding: 12px 32px;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s;
}

    .btn-outline-custom:hover {
        border-color: var(--primary);
        background: rgba(245, 158, 11, 0.1);
        color: var(--primary);
    }

/* Hero Section */
.hero-section {
    padding: 60px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(251, 191, 36, 0.2);
    color: #92400e;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 32px;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 2.5rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 8px solid white;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    transition: transform 0.7s;
}

    .hero-image:hover {
        transform: scale(1.05);
    }

/* Service Cards */
.service-card {
    background: white;
    padding: 32px;
    border-radius: 24px;
    border: 1px solid var(--border);
    transition: all 0.3s;
    height: 100%;
}

    .service-card:hover {
        border-color: var(--primary);
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        transform: translateY(-4px);
    }

.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
    transition: all 0.3s;
}

.service-card:hover .service-icon {
    background: var(--primary);
    transform: scale(1.1);
}

.service-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 12px;
}

.service-description {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-bottom: 16px;
}

.service-price {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary);
}

/* Review Cards */
.review-card {
    background: white;
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(229, 231, 235, 0.5);
    position: relative;
}

.review-quote {
    position: absolute;
    top: -16px;
    right: -16px;
    font-size: 4rem;
    color: rgba(245, 158, 11, 0.1);
    font-family: Georgia, serif;
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.star-icon {
    width: 16px;
    height: 16px;
    fill: #fbbf24;
    color: #fbbf24;
}

.review-text {
    color: rgba(31, 41, 55, 0.8);
    font-style: italic;
    margin-bottom: 24px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

/* Admin Dashboard */
.admin-stats-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
}

.stat-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
}

/* Footer */
.site-footer {
    background: white;
    border-top: 1px solid var(--border);
    margin-top: 80px;
    padding: 64px 0 32px;
}

.footer-title {
    font-weight: bold;
    margin-bottom: 16px;
}

.footer-link {
    color: var(--muted-foreground);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

    .footer-link:hover {
        color: var(--primary);
    }

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    transition: all 0.3s;
}

    .social-icon:hover {
        background: var(--secondary);
        color: white;
    }

/* Utilities */
.text-primary-custom {
    color: var(--primary);
}

.text-muted-custom {
    color: var(--muted-foreground);
}

.bg-secondary-light {
    background: rgba(249, 115, 22, 0.1);
}

.rounded-3xl {
    border-radius: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }
}
