/* ===== Ajit Villa Kennels - Premium Motion Graphics CSS ===== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Raleway:wght@300;400;500;600;700&display=swap');

/* ===== CSS Variables ===== */
:root {
    --primary-color: #1a1a2e;
    --secondary-color: #c9a96e;
    --accent-color: #e6b325;
    --light-color: #f8f9fa;
    --dark-color: #0f0f1a;
    --text-light: #ffffff;
    --text-dark: #2c2c2c;
    --gold-gradient: linear-gradient(135deg, #c9a96e 0%, #e6b325 50%, #c9a96e 100%);
    --shadow-soft: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-strong: 0 20px 60px rgba(0,0,0,0.3);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
    font-family: 'Raleway', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* ===== Preloader Animation ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-color);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeOut 0.5s ease-in-out 2s forwards;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--secondary-color);
    animation: pulse 1.5s infinite;
}

.preloader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    margin: 20px auto;
    border-radius: 3px;
    overflow: hidden;
}

.preloader-bar-fill {
    height: 100%;
    background: var(--gold-gradient);
    animation: loading 2s ease-in-out forwards;
}

@keyframes loading {
    0% { width: 0; }
    100% { width: 100%; }
}

@keyframes fadeOut {
    0% { opacity: 1; }
    100% { opacity: 0; pointer-events: none; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

/* ===== Navbar with Motion ===== */
.navbar {
    transition: var(--transition-smooth);
    padding: 20px 0;
    background: transparent;
}

.navbar.navbar-solid,
.navbar.scrolled {
    padding: 10px 0;
    background: rgba(26, 26, 46, 0.98) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
}

.navbar a,
.navbar a:hover,
.navbar a:focus,
.footer a,
.footer a:hover,
.footer a:focus {
    text-decoration: none !important;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light) !important;
    transition: var(--transition-smooth);
}

.navbar-brand:hover {
    color: var(--secondary-color) !important;
    transform: translateY(-2px);
}

.nav-link {
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 10px;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color) !important;
}

/* ===== Mega Menu Animation ===== */
.dropdown-mega {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    width: min(760px, calc(100vw - 32px));
    padding: 24px;
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(20px);
    border-top: 3px solid var(--secondary-color);
    border-radius: 0 0 18px 18px;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 20px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: var(--shadow-strong);
    z-index: 1000;
}

.mega-menu.mega-contact {
    left: auto;
    right: 0;
    width: min(540px, calc(100vw - 32px));
    transform: translateY(20px);
}

.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.nav-item:hover .mega-menu.mega-contact {
    transform: translateY(0);
}

.mega-menu h5 {
    color: var(--secondary-color);
    padding-bottom: 6px;
    margin-bottom: 12px;
}

.mega-menu a {
    color: rgba(255,255,255,0.8) !important;
    padding: 8px 0;
    display: block;
    transition: var(--transition-smooth);
    text-decoration: none !important;
}

.mega-menu a:hover {
    color: var(--secondary-color) !important;
    padding-left: 8px;
}

/* ===== Hero Section with Parallax ===== */
.hero-section {
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('https://images.unsplash.com/photo-1587300003388-59208cc962cb?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    color: var(--text-light);
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    opacity: 0;
    animation: slideUp 1s ease-out 0.5s forwards;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0;
    animation: slideUp 1s ease-out 0.8s forwards;
    letter-spacing: 2px;
}

.hero-buttons {
    opacity: 0;
    animation: slideUp 1s ease-out 1.1s forwards;
}

@keyframes slideUp {
    0% { opacity: 0; transform: translateY(50px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Hero Particles Effect */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: var(--secondary-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 15s infinite linear;
}

@keyframes float {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

/* ===== Button Animations ===== */
.btn-gold {
    background: var(--gold-gradient);
    color: var(--text-light);
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e6b325 0%, #c9a96e 100%);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-gold:hover::before {
    left: 0;
}

.btn-gold:hover {
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 110, 0.4);
}

.btn-outline-gold {
    background: transparent;
    color: var(--text-light);
    padding: 15px 40px;
    border: 2px solid var(--secondary-color);
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-smooth);
}

.btn-outline-gold:hover {
    background: var(--gold-gradient);
    border-color: transparent;
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 110, 0.4);
}

/* Dark outline version for cards placed on white backgrounds */
.dog-card .btn-outline-gold,
.card .btn-outline-gold {
    color: var(--primary-color);
}

.dog-card .btn-outline-gold:hover,
.card .btn-outline-gold:hover {
    color: var(--text-light);
}

/* ===== Statistics Counter Animation ===== */
.stats-section {
    background: var(--dark-color);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::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 1440 320"><path fill="%23c9a96e" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,165.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom center;
    background-size: cover;
}

.stat-item {
    text-align: center;
    color: var(--text-light);
    padding: 30px;
    position: relative;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
}

.stat-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    display: inline-block;
    animation: bounce 2s infinite;
}

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

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 10px 0;
    display: inline-block;
}

.stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

/* ===== Card Hover Effects ===== */
.feature-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    position: relative;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-strong);
}

.feature-card img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-card:hover img {
    transform: scale(1.1);
}

.feature-card .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(26, 26, 46, 0.9));
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card:hover .card-overlay {
    opacity: 1;
}

.card-overlay-content {
    color: white;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.feature-card:hover .card-overlay-content {
    transform: translateY(0);
}

/* ===== Dog Card Animations ===== */
.dog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition-smooth);
    position: relative;
}

.dog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.dog-card:hover::before {
    transform: scaleX(1);
}

.dog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.dog-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.dog-card:hover img {
    transform: scale(1.08);
}

.dog-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold-gradient);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
}

/* ===== Gallery Masonry Animation ===== */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    margin-bottom: 30px;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img {
    transform: scale(1.1) rotate(2deg);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(201, 169, 110, 0.9), rgba(26, 26, 46, 0.9));
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 3rem;
    color: white;
    margin-bottom: 10px;
    transform: scale(0);
    transition: transform 0.4s ease 0.1s;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* ===== Section Title Animation ===== */
.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 3rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

.section-title h2::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold-gradient);
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
}

.section-title p {
    margin-top: 20px;
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Timeline Animation ===== */
.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: var(--gold-gradient);
}

.timeline-item {
    padding: 20px 0;
    position: relative;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: var(--gold-gradient);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 5px rgba(201, 169, 110, 0.2);
    animation: pulse 2s infinite;
}

/* ===== Social Icons Animation ===== */
.social-icon {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 1.2rem;
    margin: 0 5px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    transition: top 0.3s ease;
}

.social-icon:hover::before {
    top: 0;
}

.social-icon i {
    position: relative;
    z-index: 1;
}

.social-icon:hover {
    color: white;
    transform: translateY(-5px);
}

/* ===== WhatsApp Float Button Animation ===== */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition-smooth);
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    color: white;
}

/* ===== Scroll to Top Button ===== */
.scroll-to-top {
    position: fixed;
    bottom: 120px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

/* ===== Footer Animation ===== */
.footer {
    background: var(--dark-color);
    color: rgba(255,255,255,0.8);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
}

.footer h5 {
    color: var(--secondary-color);
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 0;
}

.footer h5::after {
    display: none;
}

.footer a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition-smooth);
    text-decoration: none !important;
}

.footer a:hover {
    color: var(--secondary-color);
    padding-left: 10px;
}

/* ===== Form Input Animations ===== */
.form-control {
    border: 2px solid #eee;
    border-radius: 10px;
    padding: 15px 20px;
    transition: var(--transition-smooth);
    font-family: 'Raleway', sans-serif;
}

.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(201, 169, 110, 0.25);
    transform: translateY(-2px);
}

/* ===== Loading Spinner ===== */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(201, 169, 110, 0.3);
    border-top-color: var(--secondary-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* ===== AOS Custom Animations ===== */
[data-aos="custom-fade-up"] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="custom-fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="custom-zoom-in"] {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="custom-zoom-in"].aos-animate {
    opacity: 1;
    transform: scale(1);
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 991.98px) {
    .navbar.navbar-home {
        background: rgba(26, 26, 46, 0.98) !important;
        padding: 10px 0;
    }

    .mega-menu,
    .mega-menu.mega-contact {
        position: static;
        width: 100%;
        padding: 15px 0 5px 18px;
        background: transparent;
        border-top: 0;
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none !important;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: 560px;
        padding: 115px 18px 70px;
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .scroll-to-top {
        bottom: 80px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 500px;
        padding-top: 105px;
        padding-bottom: 55px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        letter-spacing: 1px;
    }
}

/* ===== Print Styles ===== */
@media print {
    .navbar, .whatsapp-float, .scroll-to-top, .preloader {
        display: none !important;
    }
}


/* ===== Site Logo & Profile Pages ===== */
.site-logo {
    width: 38px;
    height: 38px;
    object-fit: contain;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    padding: 2px;
}
.profile-kicker {
    display: inline-block;
    background: rgba(201,169,110,.18);
    border: 1px solid rgba(201,169,110,.45);
    color: #e6d3a1;
    padding: 8px 16px;
    border-radius: 999px;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}
.profile-photo-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    background: #fff;
}
.profile-photo-card img {
    width: 100%;
    height: 560px;
    object-fit: cover;
}
.profile-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold-gradient);
    color: #fff;
    border-radius: 999px;
    padding: 9px 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.profile-info-card {
    background: #fff;
    border-radius: 22px;
    padding: 34px;
    box-shadow: var(--shadow-soft);
}
.profile-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.profile-meta-grid div {
    background: #f8f9fa;
    border-left: 4px solid var(--secondary-color);
    border-radius: 14px;
    padding: 16px;
}
.profile-meta-grid span,
.parent-content span {
    display: block;
    color: #777;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}
.profile-meta-grid strong {
    color: var(--primary-color);
    font-size: 1.05rem;
}
.profile-description {
    color: #555;
    line-height: 1.85;
    font-size: 1.05rem;
}
.parent-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    display: grid;
    grid-template-columns: 190px 1fr;
    min-height: 190px;
}
.parent-image {
    background: linear-gradient(135deg, #1a1a2e, #0f0f1a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 4rem;
}
.parent-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.parent-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.parent-content h4 {
    font-family: 'Playfair Display', serif;
    margin: 0;
    color: var(--primary-color);
}
.gallery-profile-card .profile-card-image-link {
    display: block;
    overflow: hidden;
}
@media (max-width: 768px) {
    .profile-photo-card img { height: 360px; }
    .profile-meta-grid { grid-template-columns: 1fr; }
    .parent-card { grid-template-columns: 1fr; }
    .parent-image { min-height: 220px; }
}
