/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0D0D0D;
    --secondary-color: #C0A062;
    --accent-color: #C0A062;
    --text-color: #E5E5E5;
    --light-bg: #1a1a1a;
    --white: #E5E5E5;
    --dark-bg: #0D0D0D;
    --gray: #999999;
    --dark-gray: #0D0D0D;
    --success: #C0A062;
    --warning: #C0A062;
    --gold: #C0A062;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background: var(--dark-bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== NAVIGATION ===== */
.navbar {
    background: var(--dark-bg);
    box-shadow: 0 2px 10px rgba(192, 160, 98, 0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(192, 160, 98, 0.3);
    height: 70px;
    display: flex;
    align-items: center;
}

.logo {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.logo h1 {
    color: var(--gold);
    font-size: 1.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 10px;
    z-index: 1001;
    transition: all 0.3s ease;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--gold);
    transition: all 0.3s ease;
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(192, 160, 98, 0.3);
}

.hamburger:hover span {
    background: var(--gold);
    box-shadow: 0 0 15px rgba(192, 160, 98, 0.6);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.nav-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    background: var(--light-bg);
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s ease,
                opacity 0.3s ease;
    box-shadow: none;
    opacity: 0;
    border-radius: 0 0 10px 10px;
    border: 1px solid rgba(192, 160, 98, 0.3);
    border-top: none;
}

.nav-menu.active {
    max-height: 600px;
    box-shadow: 0 10px 30px rgba(192, 160, 98, 0.3);
    opacity: 1;
}

.nav-menu li {
    border-bottom: 1px solid rgba(192, 160, 98, 0.2);
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.nav-menu.active li {
    opacity: 1;
    transform: translateX(0);
}

.nav-menu.active li:nth-child(1) { transition-delay: 0.05s; }
.nav-menu.active li:nth-child(2) { transition-delay: 0.1s; }
.nav-menu.active li:nth-child(3) { transition-delay: 0.15s; }
.nav-menu.active li:nth-child(4) { transition-delay: 0.2s; }
.nav-menu.active li:nth-child(5) { transition-delay: 0.25s; }
.nav-menu.active li:nth-child(6) { transition-delay: 0.3s; }
.nav-menu.active li:nth-child(7) { transition-delay: 0.35s; }
.nav-menu.active li:nth-child(8) { transition-delay: 0.4s; }

.nav-menu li:last-child {
    border-bottom: none;
}

.nav-link {
    display: block;
    color: var(--text-color);
    font-weight: 500;
    padding: 18px 30px;
    transition: all 0.3s ease;
    position: relative;
    font-size: 1.05rem;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover {
    background: linear-gradient(270deg, rgba(192, 160, 98, 0.2) 0%, transparent 100%);
    color: var(--gold);
    padding-right: 45px;
}

.nav-link::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: var(--gold);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(192, 160, 98, 0.5);
}

.nav-link:hover::before {
    width: 5px;
}

.nav-link::after {
    content: '→';
    position: absolute;
    right: 30px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--gold);
}

.nav-link:hover::after {
    opacity: 1;
    right: 15px;
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    background-image: url('images/WelcomeBullyNest.png');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Static background - parallax effect */
    display: flex;
    align-items: flex-end; /* Move content to bottom */
    justify-content: center;
    text-align: center;
    color: var(--text-color);
    margin-top: 70px;
    position: relative;
    overflow: hidden;
    padding-bottom: 15vh; /* Space from bottom */
}

/* Gradient shading on top and bottom for seamless scroll */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        /* Vignette effect from edges */
        radial-gradient(
            ellipse at center,
            transparent 0%,
            rgba(13, 13, 13, 0.3) 70%,
            rgba(13, 13, 13, 0.6) 100%
        ),
        /* Top and bottom gradient for seamless scroll */
        linear-gradient(
            to bottom,
            rgba(13, 13, 13, 0.9) 0%,      /* Dark at top (navbar area) */
            rgba(13, 13, 13, 0.2) 15%,     /* Fade in */
            transparent 50%,                /* Transparent in middle */
            rgba(13, 13, 13, 0.2) 85%,     /* Fade out */
            rgba(13, 13, 13, 0.9) 100%     /* Dark at bottom (seamless scroll) */
        );
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2; /* Above the gradient overlay */
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    text-shadow: 0 0 20px rgba(192, 160, 98, 0.5);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
    color: var(--text-color);
    letter-spacing: 2px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 0;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-primary {
    background: var(--gold);
    color: var(--dark-bg);
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(192, 160, 98, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--dark-bg);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(192, 160, 98, 0.4);
}

/* ===== SECTION STYLES ===== */
section {
    padding: 60px 0;
    background: var(--dark-bg);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 2rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold);
    box-shadow: 0 0 10px rgba(192, 160, 98, 0.5);
}

/* ===== ABOUT SECTION ===== */
.about {
    background: var(--light-bg);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    line-height: 1.8;
}

/* ===== GALLERY SECTION ===== */
.gallery {
    background: var(--dark-bg);
}

.gallery-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.gallery-category {
    margin-bottom: 60px;
}

.gallery-category:last-child {
    margin-bottom: 0;
}

.category-title {
    color: var(--gold);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    padding-bottom: 15px;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gold);
    box-shadow: 0 0 10px rgba(192, 160, 98, 0.5);
}

/* Gallery Showcase Layout */
.gallery-showcase {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gallery-main {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    width: 100%;
    aspect-ratio: 4/3;
    border: 2px solid rgba(192, 160, 98, 0.3);
    transition: border-color 0.3s ease;
}

.gallery-main:hover {
    border-color: var(--gold);
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.3s ease;
    filter: grayscale(20%);
}

.gallery-main:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
}

.thumbnail {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    width: 100%;
    aspect-ratio: 1/1;
    border: 2px solid rgba(192, 160, 98, 0.2);
    transition: all 0.3s ease;
    opacity: 0.6;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--gold);
    opacity: 1;
    box-shadow: 0 0 15px rgba(192, 160, 98, 0.5);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thumbnail:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.8), rgba(192, 160, 98, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-main:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay p {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(192, 160, 98, 0.8);
}

/* ===== LIGHTBOX ===== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 95vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
    border: 3px solid var(--gold);
    box-shadow: 0 0 50px rgba(192, 160, 98, 0.5);
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: var(--gold);
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
    text-shadow: 0 0 10px rgba(192, 160, 98, 0.8);
}

.lightbox-close:hover {
    color: var(--white);
    transform: rotate(90deg);
    text-shadow: 0 0 20px rgba(192, 160, 98, 1);
}

.lightbox-prev,
.lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 60px;
    font-weight: bold;
    padding: 20px;
    transition: all 0.3s ease;
    user-select: none;
    text-shadow: 0 0 10px rgba(192, 160, 98, 0.8);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--white);
    text-shadow: 0 0 20px rgba(192, 160, 98, 1);
    transform: translateY(-50%) scale(1.2);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: var(--gold);
    padding: 20px 0;
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ===== COMING SOON ===== */
.coming-soon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    padding: 60px 20px;
}

.coming-soon {
    text-align: center;
    padding: 60px 40px;
    border: 3px solid var(--gold);
    background: linear-gradient(135deg, rgba(192, 160, 98, 0.1), transparent);
    max-width: 600px;
    position: relative;
}

.coming-soon::before,
.coming-soon::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--gold);
}

.coming-soon::before {
    top: -2px;
    left: -2px;
    border-right: none;
    border-bottom: none;
}

.coming-soon::after {
    bottom: -2px;
    right: -2px;
    border-left: none;
    border-top: none;
}

.coming-soon p {
    color: var(--gold);
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 5px;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(192, 160, 98, 0.5);
}

.coming-soon span {
    color: var(--text-color);
    font-size: 1.2rem;
    letter-spacing: 2px;
    display: block;
    line-height: 1.8;
}

/* ===== DOG DETAILS MODAL ===== */
.dog-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.dog-modal.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.dog-modal-content {
    background: var(--dark-bg);
    margin: 2% auto;
    padding: 0;
    border: 3px solid var(--gold);
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 0 50px rgba(192, 160, 98, 0.5);
}

.dog-modal-close {
    color: var(--gold);
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.dog-modal-close:hover {
    color: var(--text-color);
    text-shadow: 0 0 20px rgba(192, 160, 98, 0.8);
}

.dog-modal-header {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(192, 160, 98, 0.1), transparent);
    border-bottom: 2px solid rgba(192, 160, 98, 0.3);
}

.dog-modal-header img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border: 2px solid var(--gold);
    filter: grayscale(20%);
}

.dog-modal-info h2 {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(192, 160, 98, 0.5);
}

.dog-modal-details {
    list-style: none;
    padding: 0;
}

.dog-modal-details li {
    color: var(--text-color);
    padding: 12px 0;
    border-bottom: 1px solid rgba(192, 160, 98, 0.2);
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.dog-modal-details li strong {
    color: var(--gold);
    margin-right: 10px;
}

.dog-description {
    margin-top: 30px;
    padding: 20px;
    background: rgba(192, 160, 98, 0.05);
    border-left: 3px solid var(--gold);
    border-radius: 4px;
}

.dog-description p {
    color: var(--text-color);
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
    font-style: italic;
}

.dog-modal-section {
    padding: 40px;
    border-bottom: 2px solid rgba(192, 160, 98, 0.2);
}

.dog-modal-section:last-child {
    border-bottom: none;
}

.dog-modal-section-title {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    text-shadow: 0 0 15px rgba(192, 160, 98, 0.4);
}

/* Pedigree in Modal */
.pedigree-tree {
    padding: 30px 20px;
    overflow-x: auto;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
    border-radius: 15px;
}

.pedigree-chart {
    display: flex;
    gap: 30px;
    justify-content: flex-start;
    align-items: center;
    min-width: 1400px;
    position: relative;
    padding: 20px;
}

.pedigree-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    justify-content: center;
}

.pedigree-dog-card {
    background: linear-gradient(135deg, rgba(192, 160, 98, 0.15), rgba(192, 160, 98, 0.08));
    border: 2px solid rgba(192, 160, 98, 0.4);
    border-radius: 8px;
    padding: 8px 12px;
    min-width: 180px;
    max-width: 200px;
    min-height: 45px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pedigree-dog-card.empty {
    opacity: 0;
    pointer-events: none;
}

.pedigree-column:first-child .pedigree-dog-card {
    min-width: 200px;
    min-height: 60px;
    padding: 12px 15px;
}

.pedigree-dog-card:hover {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(192, 160, 98, 0.25), rgba(192, 160, 98, 0.15));
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(192, 160, 98, 0.4);
}

.pedigree-label {
    font-size: 0.65rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
    opacity: 0.7;
    font-weight: 500;
}

.pedigree-dog-name {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    text-shadow: 0 0 10px rgba(192, 160, 98, 0.3);
    line-height: 1.3;
}

.pedigree-dog-color {
    font-size: 0.75rem;
    color: var(--text-color);
    opacity: 0.8;
    font-style: italic;
}

/* Connecting lines between generations */
.pedigree-dog-card::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    width: 15px;
    height: 2px;
    background: rgba(192, 160, 98, 0.4);
    transform: translateY(-50%);
}

.pedigree-dog-card.empty::after {
    display: none;
}

.pedigree-column:last-child .pedigree-dog-card::after {
    display: none;
}

/* Responsive pedigree */
@media (max-width: 1024px) {
    .pedigree-chart {
        min-width: 700px;
        gap: 30px;
    }

    .pedigree-dog-card {
        min-width: 220px;
        padding: 15px;
    }

    .grandparents-column .pedigree-dog-card {
        min-width: 200px;
    }

    .pedigree-dog-name {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .pedigree-chart {
        flex-direction: column;
        min-width: 100%;
        gap: 30px;
    }

    .pedigree-column {
        width: 100%;
    }

    .pedigree-dog-card,
    .grandparents-column .pedigree-dog-card {
        min-width: 100%;
    }

    .parents-column .pedigree-dog-card::after {
        display: none;
    }
}

/* ===== CERTIFICATE SECTION ===== */
.certificate {
    background: var(--light-bg);
}

.certificate-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.certificate-category {
    margin-bottom: 0;
}

.certificate-showcase {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.certificate-main {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    width: 100%;
    aspect-ratio: 4/3;
    border: 2px solid rgba(192, 160, 98, 0.3);
    transition: border-color 0.3s ease;
}

.certificate-main:hover {
    border-color: var(--gold);
}

.certificate-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.3s ease;
    filter: grayscale(20%);
}

.certificate-main:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.certificate-thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
}

.certificate-thumbnails .thumbnail {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    width: 100%;
    aspect-ratio: 1/1;
    border: 2px solid rgba(192, 160, 98, 0.2);
    transition: all 0.3s ease;
    opacity: 0.6;
}

.certificate-thumbnails .thumbnail:hover,
.certificate-thumbnails .thumbnail.active {
    border-color: var(--gold);
    opacity: 1;
    box-shadow: 0 0 15px rgba(192, 160, 98, 0.5);
}

.certificate-thumbnails .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.certificate-thumbnails .thumbnail:hover img {
    transform: scale(1.1);
}

/* ===== PARENTS SECTION ===== */
.parents {
    background: var(--dark-bg);
}

.parents-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.parents-category {
    margin-bottom: 0;
}

.view-details-btn {
    margin-top: 20px;
    padding: 12px 30px;
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    cursor: pointer;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    width: 100%;
}

.view-details-btn:hover {
    background: var(--gold);
    color: var(--dark-bg);
    box-shadow: 0 0 20px rgba(192, 160, 98, 0.5);
}

.parent-card {
    background: var(--light-bg);
    border-radius: 0;
    overflow: hidden;
    border: 2px solid rgba(192, 160, 98, 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.parent-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(192, 160, 98, 0.3);
}

.parent-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.parent-card:hover img {
    filter: grayscale(0%);
}

.parent-info {
    padding: 30px;
    background: var(--dark-bg);
}

.parent-details {
    list-style: none;
}

.parent-details li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(192, 160, 98, 0.2);
    color: var(--text-color);
}

.parent-details li strong {
    color: var(--gold);
}

.parent-details li:last-child {
    border-bottom: none;
}

/* ===== UPCOMING LITTERS SECTION ===== */
.upcoming-litters {
    background: var(--light-bg);
}

.litters-content {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.litter-card {
    background: var(--dark-bg);
    padding: 30px;
    border-radius: 0;
    border: 2px solid rgba(192, 160, 98, 0.3);
    transition: border-color 0.3s ease;
    max-width: 500px;
    width: 100%;
}

.litter-card:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(192, 160, 98, 0.3);
}

.litter-card h3 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.litter-details p {
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

.litter-details p strong {
    color: var(--gold);
}

.litter-status {
    display: inline-block;
    padding: 8px 15px;
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 0;
    font-weight: 600;
    margin: 1rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.litter-card .btn {
    margin-top: 1rem;
    width: 100%;
    text-align: center;
}

.litter-description {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(192, 160, 98, 0.2);
    color: var(--text-color);
    line-height: 1.6;
}

.litter-status.available {
    color: #2ecc71;
}

.litter-status.sold-out {
    color: #e74c3c;
}

.litter-status.upcoming {
    color: #f39c12;
}

.loading {
    text-align: center;
    padding: 40px;
    color: var(--gold);
    font-size: 1.2rem;
}

/* ===== PUPPIES SECTION ===== */
.puppies {
    background: var(--dark-bg);
}

.puppies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.puppy-card {
    background: var(--light-bg);
    border-radius: 0;
    overflow: hidden;
    border: 2px solid rgba(192, 160, 98, 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    max-width: 300px;
}

.puppy-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(192, 160, 98, 0.3);
}

.puppy-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.puppy-card:hover img {
    filter: grayscale(0%);
}

.puppy-info {
    padding: 15px;
    background: var(--dark-bg);
    text-align: center;
}

.puppy-info h3 {
    color: var(--gold);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
}

.puppy-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(192, 160, 98, 0.1), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.puppy-gender,
.puppy-color,
.puppy-details,
.puppy-age,
.puppy-dob,
.puppy-description,
.puppy-price {
    margin-bottom: 0.3rem;
    color: var(--text-color);
    font-size: 0.85rem;
}

.puppy-gender {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.puppy-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--gold);
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.puppy-info .btn {
    margin-top: 1rem;
    width: 100%;
    display: none; /* Hide button, click card instead */
}

.puppy-status {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.puppy-status.available {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.puppy-status.reserved {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid #ffc107;
}

.puppy-status.sold {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
    border: 1px solid #dc3545;
}

/* ===== FOLLOW SECTION ===== */
.follow {
    background: var(--light-bg);
    color: var(--text-color);
    text-align: center;
}

.follow .section-title {
    color: var(--gold);
    margin-bottom: 3rem;
}

.instagram-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.instagram-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.instagram-name {
    color: var(--gold);
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
}

.instagram-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px;
    background: transparent;
    transition: all 0.3s ease;
    color: var(--gold);
    text-decoration: none;
    width: 100%;
    max-width: 300px;
}

.instagram-link:hover {
    background: rgba(192, 160, 98, 0.1);
    box-shadow: 0 10px 40px rgba(192, 160, 98, 0.3);
    transform: translateY(-5px);
}

.instagram-icon {
    width: 80px;
    height: 80px;
    color: var(--gold);
    transition: all 0.3s ease;
}

.instagram-link:hover .instagram-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(192, 160, 98, 0.6));
}

.instagram-link span {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: var(--dark-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
}

.contact-info h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-info p {
    color: var(--text-color);
    margin-bottom: 2rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 1.5rem;
    padding: 15px;
    border-left: 3px solid var(--gold);
    background: rgba(192, 160, 98, 0.1);
}

.contact-item strong {
    color: var(--gold);
    display: block;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item p {
    margin: 0;
    color: var(--text-color);
}

.contact-form {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 0;
    border: 2px solid rgba(192, 160, 98, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(192, 160, 98, 0.3);
    border-radius: 0;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: var(--dark-bg);
    color: var(--text-color);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(192, 160, 98, 0.3);
}

.form-group textarea {
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-bg);
    color: var(--text-color);
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(192, 160, 98, 0.3);
}

.footer p {
    margin: 5px 0;
    color: var(--gold);
    letter-spacing: 1px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 968px) {
    .nav-menu {
        width: 350px;
    }

    .gallery-split,
    .parents-split,
    .certificate-split {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .litters-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        width: 280px;
    }

    /* Fix background-attachment on mobile (doesn't work well on iOS) */
    .hero {
        background-attachment: scroll;
        padding-bottom: 10vh; /* Less padding on mobile */
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .gallery-thumbnails {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    }

    .puppies-grid {
        grid-template-columns: 1fr;
    }

    .certificate-grid {
        grid-template-columns: 1fr;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 40px;
        padding: 10px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 40px;
    }

    /* Dog Modal Responsive */
    .dog-modal-header {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 30px 20px;
    }

    .dog-modal-header img {
        height: 300px;
    }

    .dog-modal-info h2 {
        font-size: 2rem;
    }

    .dog-modal-section {
        padding: 30px 20px;
    }

    .dog-modal-section-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        width: calc(100vw - 40px);
        right: 20px;
    }

    .logo {
        left: 10px;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .hamburger {
        right: 10px;
    }

    .hero {
        padding-bottom: 8vh; /* Even less padding on small mobile */
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    section {
        padding: 30px 0;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .category-title {
        font-size: 1.5rem;
    }

    .gallery-thumbnails {
        grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
        gap: 5px;
    }

    .coming-soon p {
        font-size: 2rem;
        letter-spacing: 3px;
    }

    .coming-soon span {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .parent-card img,
    .puppy-card img {
        height: 250px;
    }

    .lightbox-content {
        max-width: 98vw;
        max-height: 85vh;
    }

    .lightbox-caption {
        font-size: 0.9rem;
        padding: 10px 0;
    }

    /* Dog Modal Mobile */
    .dog-modal-content {
        width: 95%;
        margin: 5% auto;
    }

    .dog-modal-header {
        padding: 20px 15px;
    }

    .dog-modal-header img {
        height: 250px;
    }

    .dog-modal-info h2 {
        font-size: 1.5rem;
    }

    .dog-modal-section {
        padding: 20px 15px;
    }

    .dog-modal-section-title {
        font-size: 1.3rem;
    }

    .dog-modal-close {
        top: 10px;
        right: 15px;
        font-size: 30px;
    }

    /* Instagram Split Mobile */
    .instagram-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .instagram-name {
        font-size: 1.5rem;
    }

    .instagram-icon {
        width: 60px;
        height: 60px;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.p-1 { padding: 1rem; }
.p-2 { padding: 2rem; }
.p-3 { padding: 3rem; }
