/* ========================================
   FRENCH NOBLE - MAIN STYLES
   Color Palette:
   - Primary: #8B5E3C (Warm Brown)
   - Secondary: #E8D5B5 (Cream)
   - Accent: #C4A67A (Gold/Brass)
   - Dark: #2C1810 (Deep Brown)
   - Light: #FFF9F0 (Warm White)
   ======================================== */

/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #8B5E3C;
    --primary-dark: #5C3A1E;
    --primary-light: #B8885A;
    --secondary: #E8D5B5;
    --accent: #C4A67A;
    --dark: #2C1810;
    --light: #FFF9F0;
    --gray: #6B6B6B;
    --gray-light: #E5E5E5;
    --success: #2E7D32;
    --danger: #C62828;
    --warning: #F57C00;
    --info: #1565C0;
    
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
    --shadow-hover: 0 12px 40px rgba(0,0,0,0.2);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== TOP BAR ========== */
.top-bar {
    background: var(--dark);
    color: var(--secondary);
    font-size: 13px;
    padding: 8px 0;
    position: relative;
    z-index: 1001;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.announcement i {
    margin-right: 8px;
    color: var(--accent);
}

.top-bar-links {
    display: flex;
    gap: 20px;
}

.top-bar-links a {
    font-size: 13px;
    transition: var(--transition);
}

.top-bar-links a:hover {
    color: var(--accent);
}

.top-bar-links i {
    margin-right: 5px;
    font-size: 12px;
}

/* ========== NAVIGATION ========== */
.navbar {
    background: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 28px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.logo i {
    color: var(--primary);
    font-size: 32px;
}

.logo .highlight {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu li a {
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

.nav-menu li a:hover {
    color: var(--primary);
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-link {
    font-size: 18px;
    transition: var(--transition);
}

.icon-link:hover {
    color: var(--primary);
    transform: scale(1.1);
}

.admin-link {
    background: var(--primary);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.admin-link:hover {
    background: var(--primary-dark);
    transform: rotate(90deg);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--dark);
    transition: var(--transition);
}

/* ========== MOBILE MENU ========== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: white;
    box-shadow: var(--shadow-lg);
    z-index: 2000;
    transition: var(--transition);
    padding: 80px 30px 30px;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-menu {
    list-style: none;
    margin-bottom: 40px;
}

.mobile-nav-menu li {
    margin-bottom: 20px;
}

.mobile-nav-menu li a {
    font-size: 20px;
    font-weight: 500;
    display: block;
    padding: 10px 0;
}

.mobile-contact {
    padding-top: 30px;
    border-top: 1px solid var(--gray-light);
}

.mobile-contact p {
    margin: 15px 0;
    font-size: 16px;
}

.mobile-contact i {
    width: 25px;
    color: var(--primary);
}

/* ========== MAIN CONTENT ========== */
.main-content {
    min-height: 70vh;
}


/* Hero Section with Background Image */

/* ========== HERO SECTION WITH SIDE IMAGE ========== */
.hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    min-height: 550px;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 3;
}

/* Left Content Side */
.hero-content {
    flex: 1;
    animation: fadeInLeft 0.8s ease;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.hero-badge i {
    margin-right: 8px;
    color: var(--accent);
}

.hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero h1 .highlight {
    color: var(--secondary);
    position: relative;
    display: inline-block;
}

.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--accent);
    opacity: 0.3;
    border-radius: 4px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: 28px;
    font-weight: 700;
    display: block;
    color: var(--secondary);
}

.hero-stat-label {
    font-size: 12px;
    opacity: 0.8;
}

/* Right Image Side */
.hero-image {
    flex: 1;
    position: relative;
    animation: fadeInRight 0.8s ease;
}

.hero-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 30px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.3));
    animation: floatImage 4s ease-in-out infinite;
}

/* Floating paw prints around the image */
.paw-float {
    position: absolute;
    font-size: 30px;
    opacity: 0.6;
    animation: floatPaw 3s ease-in-out infinite;
    z-index: 1;
}

.paw-1 {
    top: -20px;
    left: -30px;
    animation-delay: 0s;
    font-size: 40px;
}

.paw-2 {
    bottom: -10px;
    right: -20px;
    animation-delay: 1s;
    font-size: 35px;
}

.paw-3 {
    top: 50%;
    right: -40px;
    animation-delay: 0.5s;
    font-size: 45px;
}

.paw-4 {
    bottom: 30%;
    left: -25px;
    animation-delay: 1.5s;
    font-size: 25px;
}

.paw-5 {
    top: 20%;
    left: 40%;
    animation-delay: 0.8s;
    font-size: 28px;
    opacity: 0.4;
}

.paw-6 {
    bottom: -15px;
    left: 20%;
    animation-delay: 0.3s;
    font-size: 32px;
}

/* Background decorative paw prints */
.hero-bg-paw {
    position: absolute;
    font-size: 100px;
    color: rgba(255,255,255,0.08);
    pointer-events: none;
    animation: floatBgPaw 20s infinite linear;
}

.bg-paw-1 { top: 10%; left: 5%; animation-delay: 0s; }
.bg-paw-2 { bottom: 15%; right: 8%; animation-delay: 3s; font-size: 120px; }
.bg-paw-3 { top: 40%; right: 20%; animation-delay: 7s; font-size: 80px; }
.bg-paw-4 { bottom: 30%; left: 15%; animation-delay: 5s; font-size: 90px; }

/* Animated gradient overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 100%);
    pointer-events: none;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

@keyframes floatPaw {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-10px) rotate(10deg);
        opacity: 0.9;
    }
}

@keyframes floatBgPaw {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.08;
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
        opacity: 0.06;
    }
    50% {
        transform: translateY(-10px) rotate(10deg);
        opacity: 0.08;
    }
    75% {
        transform: translateY(-30px) rotate(5deg);
        opacity: 0.06;
    }
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.08;
    }
}

/* Responsive Hero */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero h1 {
        font-size: 42px;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image img {
        max-width: 350px;
    }
    
    .paw-1, .paw-2, .paw-3, .paw-4 {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
        min-height: auto;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .hero-image img {
        max-width: 280px;
    }
    
    .hero-badge {
        font-size: 12px;
    }
}



/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--dark);
}

.btn-secondary:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

/* ========== SECTION TITLES ========== */
.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 48px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

/* ========== DOG CARDS (SHOP GRID) ========== */
.dog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
    padding: 40px 0;
}

.dog-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.dog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.dog-card-image {
    position: relative;
    overflow: hidden;
    height: 280px;
    background: var(--gray-light);
}

.dog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.dog-card:hover .dog-card-image img {
    transform: scale(1.08);
}

.status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-available {
    background: var(--success);
    color: white;
}

.badge-sold {
    background: var(--danger);
    color: white;
}

.badge-sick {
    background: var(--warning);
    color: white;
}

.badge-reserved {
    background: var(--info);
    color: white;
}

.dog-card-content {
    padding: 20px;
}

.dog-card-title {
    font-size: 22px;
    margin-bottom: 8px;
}

.dog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 12px 0;
    color: var(--gray);
    font-size: 14px;
}

.dog-card-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.view-details {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    color: var(--primary);
    font-weight: 500;
}

.view-details:hover {
    gap: 12px;
}

/* ========== FILTER BAR ========== */
.filter-bar {
    background: white;
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-light);
    margin-bottom: 30px;
}

.filter-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border: 2px solid var(--gray-light);
    background: white;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* ========== DOG DETAILS PAGE ========== */
.dog-details {
    padding: 60px 0;
}

.breadcrumb {
    margin-bottom: 30px;
    font-size: 14px;
    color: var(--gray);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.dog-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.gallery-main {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.main-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    cursor: pointer;
}

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding: 15px;
    background: var(--light);
}

.thumbnail {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition);
}

.thumbnail:hover,
.thumbnail.active {
    opacity: 1;
    transform: scale(1.02);
    box-shadow: var(--shadow-sm);
}

.dog-info-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

.dog-info-card h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.dog-price {
    font-size: 32px;
    color: var(--primary);
    font-weight: 700;
    margin: 15px 0;
}

.info-section {
    margin: 25px 0;
    padding-top: 20px;
    border-top: 1px solid var(--gray-light);
}

.info-section h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.info-section p {
    color: var(--gray);
    line-height: 1.8;
}

.contact-form-inline {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-light);
}

/* ========== CONTACT FORM ========== */
.contact-page {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 94, 60, 0.1);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: var(--primary);
    color: white;
    width: 100%;
    padding: 14px;
    font-size: 18px;
}

.btn-submit:hover {
    background: var(--primary-dark);
}

.alert {
    padding: 15px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

.alert-success {
    background: #E8F5E9;
    color: var(--success);
    border-left: 4px solid var(--success);
}

.alert-error {
    background: #FFEBEE;
    color: var(--danger);
    border-left: 4px solid var(--danger);
}

/* ========== TESTIMONIALS ========== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

.testimonial-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    margin-bottom: 20px;
    font-size: 22px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--gray);
}

.testimonial-author {
    font-weight: 700;
    color: var(--dark);
}

.testimonial-date {
    font-size: 12px;
    color: var(--gray);
    margin-top: 5px;
}

.submit-testimonial {
    background: var(--secondary);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-top: 40px;
}

.rating-select {
    display: flex;
    gap: 10px;
    font-size: 30px;
    cursor: pointer;
}

.rating-star {
    cursor: pointer;
    transition: var(--transition);
}

.rating-star:hover,
.rating-star.active {
    color: #FFD700;
    transform: scale(1.1);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--dark);
    color: var(--secondary);
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: white;
}

.footer-col p {
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    width: 25px;
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a:hover {
    color: var(--accent);
}

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* ========== LIGHTBOX ========== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== LOADING SKELETON ========== */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 44px;
    }
    
    .dog-details-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .dog-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .gallery-main .main-image {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .top-bar-content {
        justify-content: center;
        text-align: center;
    }
    
    .dog-card-title {
        font-size: 18px;
    }
    
    .dog-card-price {
        font-size: 20px;
    }
}

/* ========== ENHANCED ANIMATIONS ========== */

/* Page load animation */
body {
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Stagger animations for cards */
.dog-card, .testimonial-card, .stat-item, .why-choose-us .box {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUpFade 0.6s ease forwards;
}

.dog-card:nth-child(1) { animation-delay: 0.1s; }
.dog-card:nth-child(2) { animation-delay: 0.2s; }
.dog-card:nth-child(3) { animation-delay: 0.3s; }
.dog-card:nth-child(4) { animation-delay: 0.4s; }
.dog-card:nth-child(5) { animation-delay: 0.5s; }
.dog-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover animations */
.dog-card, .btn, .stat-item, .testimonial-card, .why-choose-us .box {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dog-card:hover {
    transform: translateY(-12px) scale(1.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Image zoom on hover */
.dog-card-image {
    overflow: hidden;
}

.dog-card-image img {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.dog-card:hover .dog-card-image img {
    transform: scale(1.1);
}

/* Pulse animation for badges */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.badge-available {
    animation: pulse 2s infinite;
}

/* Shine effect on buttons */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

/* Floating animation for hero icons */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.hero i, .stat-icon {
    animation: float 3s ease-in-out infinite;
}

/* Scroll reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Loading spinner animation */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--gray-light);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* Ripple effect on buttons */
.btn {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Text gradient animation */
.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* Slide in from left/right */
.slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-left.active, .slide-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Zoom in animation */
.zoom-in {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s ease;
}

.zoom-in.active {
    opacity: 1;
    transform: scale(1);
}

/* Hover glow effect */
.glow-on-hover:hover {
    box-shadow: 0 0 20px rgba(139, 94, 60, 0.4);
    transition: all 0.3s ease;
}

