/* ============================================
   Labradoodle Belle Epoque - Stylesheet
   A warm, elegant design for Australian Labradoodles
   ============================================ */

/* CSS Variables */
:root {
    /* Color Palette - Warm earth tones inspired by Labradoodle coats */
    --color-cream: #FDF8F3;
    --color-cream-dark: #F5EDE4;
    --color-caramel: #C4956A;
    --color-caramel-light: #D4A87A;
    --color-caramel-dark: #A67B4F;
    --color-rust: #B5654A;
    --color-rust-light: #D4836A;
    --color-chocolate: #5C4033;
    --color-chocolate-light: #7A5A4A;
    --color-forest: #4A5D4A;
    --color-forest-light: #6B7D6B;
    --color-sage: #9CAF88;
    --color-gold: #D4A853;
    --color-white: #FFFFFF;
    --color-text: #3D3D3D;
    --color-text-light: #6B6B6B;
    --color-text-muted: #9A9A9A;
    
    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;
    --space-3xl: 8rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(92, 64, 51, 0.08);
    --shadow-md: 0 4px 20px rgba(92, 64, 51, 0.12);
    --shadow-lg: 0 8px 40px rgba(92, 64, 51, 0.16);
    --shadow-xl: 0 16px 60px rgba(92, 64, 51, 0.2);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-cream);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-chocolate);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: 1.25rem;
    font-family: var(--font-body);
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

strong {
    font-weight: 600;
    color: var(--color-chocolate);
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Section Label */
.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-caramel);
    margin-bottom: var(--space-sm);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-base);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-caramel) 0%, var(--color-caramel-dark) 100%);
    color: var(--color-white);
    border-color: var(--color-caramel);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-caramel-light) 0%, var(--color-caramel) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--color-chocolate);
    border-color: var(--color-chocolate);
}

.btn-secondary:hover {
    background: var(--color-chocolate);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-wala {
    background: var(--color-forest);
    color: var(--color-white);
    border-color: var(--color-forest);
}

.btn-wala:hover {
    background: var(--color-forest-light);
    border-color: var(--color-forest-light);
    transform: translateY(-2px);
}

.btn-wala svg {
    width: 16px;
    height: 16px;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 248, 243, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(196, 149, 106, 0.1);
    transition: var(--transition-base);
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.nav-logo .logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-chocolate);
}

.nav-logo .logo-accent {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 400;
    font-style: italic;
    color: var(--color-caramel);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-caramel-dark);
    background: rgba(196, 149, 106, 0.1);
}

.nav-social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: rgba(196, 149, 106, 0.1);
    color: var(--color-caramel-dark);
    transition: var(--transition-base);
}

.nav-social a:hover {
    background: var(--color-caramel);
    color: var(--color-white);
    transform: translateY(-2px);
}

.nav-social svg {
    width: 16px;
    height: 16px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-chocolate);
    border-radius: 2px;
    transition: var(--transition-base);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(196, 149, 106, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(156, 175, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(212, 168, 83, 0.05) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    flex: 1;
    max-width: 600px;
    padding-right: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-caramel) 100%);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.6s ease forwards;
}

.hero-badge svg {
    width: 14px;
    height: 14px;
}

.hero h1 {
    margin-bottom: var(--space-md);
    animation: fadeInUp 0.6s ease 0.1s forwards;
    opacity: 0;
}

.hero h1 span {
    display: block;
    font-size: 0.6em;
    font-weight: 400;
    font-style: italic;
    color: var(--color-caramel);
    margin-top: 0.25em;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.6s ease 0.2s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    animation: fadeInUp 0.6s ease 0.3s forwards;
    opacity: 0;
}

.hero-image {
    position: relative;
    z-index: 2;
    flex: 1;
    max-width: 500px;
    animation: fadeInRight 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-image-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-image-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid rgba(196, 149, 106, 0.3);
    border-radius: var(--radius-xl);
    z-index: 1;
    pointer-events: none;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hero-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-forest-light) 100%);
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0.6;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-muted);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: fadeIn 1s ease 1s forwards;
    opacity: 0;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-caramel), transparent);
    animation: scrollBounce 2s ease infinite;
}

/* ============================================
   Introduction Section
   ============================================ */
.intro {
    padding: var(--space-3xl) 0;
    background: var(--color-white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.intro-content h2 {
    margin-bottom: var(--space-md);
}

.intro-lead {
    font-size: 1.15rem;
    color: var(--color-text);
    margin-bottom: var(--space-md);
}

.intro-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-cream-dark) 100%);
    border-radius: var(--radius-lg);
    color: var(--color-caramel);
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.feature p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin: 0;
}

.intro-images {
    position: relative;
    height: 500px;
}

.intro-image {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-slow);
}

.intro-image:hover {
    transform: scale(1.02);
    z-index: 10;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-image-1 {
    top: 0;
    left: 0;
    width: 55%;
    height: 60%;
    z-index: 3;
}

.intro-image-2 {
    top: 20%;
    right: 0;
    width: 50%;
    height: 55%;
    z-index: 2;
}

.intro-image-3 {
    bottom: 0;
    left: 15%;
    width: 45%;
    height: 45%;
    z-index: 1;
}

/* ============================================
   WALA Section
   ============================================ */
.wala-section {
    padding: var(--space-2xl) 0;
    background: linear-gradient(135deg, var(--color-forest) 0%, var(--color-chocolate) 100%);
}

.wala-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.wala-content {
    padding: var(--space-2xl);
}

.wala-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-caramel) 100%);
    color: var(--color-white);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

.wala-badge img {
    height: 24px;
    width: auto;
}

.wala-content h2 {
    margin-bottom: var(--space-md);
}

.wala-content p {
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
}

.wala-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--color-cream);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
}

.wala-detail {
    text-align: center;
}

.wala-detail .label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 0.25rem;
}

.wala-detail .value {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-chocolate);
}

.wala-image {
    height: 100%;
    min-height: 400px;
}

.wala-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   Dogs Preview Section
   ============================================ */
.dogs-preview {
    padding: var(--space-3xl) 0;
    background: var(--color-cream);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
}

.section-header h2 {
    margin-bottom: var(--space-sm);
}

.section-header p {
    color: var(--color-text-light);
}

.dogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.dog-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

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

.dog-image {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.dog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.dog-overlay {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
}

.dog-size {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-caramel-dark);
    border-radius: var(--radius-full);
}

.dog-info {
    padding: var(--space-md);
}

.dog-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.dog-fullname {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
}

.dog-details {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.dog-details span {
    padding: 0.25rem 0.75rem;
    background: var(--color-cream);
    border-radius: var(--radius-full);
}

.section-cta {
    text-align: center;
    margin-top: var(--space-xl);
}

/* ============================================
   Litters Preview Section
   ============================================ */
.litters-preview {
    padding: var(--space-3xl) 0;
    background: var(--color-white);
}

.litters-preview .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.litters-content h2 {
    margin-bottom: var(--space-md);
}

.litters-content > p {
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
}

.litter-pairs {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.litter-pair {
    display: flex;
    align-items: center;
    padding: var(--space-sm) var(--space-md);
    background: var(--color-cream);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-caramel);
}

.pair-names {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-chocolate);
}

.litters-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
}

.litter-image {
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.litter-image:hover {
    transform: scale(1.05);
    z-index: 10;
}

.litter-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   Contact CTA Section
   ============================================ */
.contact-cta {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--color-cream-dark) 0%, var(--color-cream) 100%);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: var(--space-md);
}

.cta-content > p {
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
}

.cta-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.contact-method:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--color-caramel-dark);
}

.contact-method svg {
    width: 20px;
    height: 20px;
    color: var(--color-caramel);
}

.contact-method span {
    font-weight: 500;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--color-chocolate);
    color: var(--color-cream);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(253, 248, 243, 0.1);
}

.footer-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    margin-bottom: var(--space-md);
}

.footer-logo .logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-cream);
}

.footer-logo .logo-accent {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 400;
    font-style: italic;
    color: var(--color-caramel-light);
}

.footer-brand p {
    color: rgba(253, 248, 243, 0.7);
    font-size: 0.9rem;
    margin-bottom: var(--space-md);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(253, 248, 243, 0.1);
    border-radius: var(--radius-full);
    color: var(--color-cream);
    transition: var(--transition-base);
}

.footer-social a:hover {
    background: var(--color-caramel);
    transform: translateY(-2px);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer h4 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-cream);
    margin-bottom: var(--space-md);
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a,
.footer-contact a {
    color: rgba(253, 248, 243, 0.7);
    font-size: 0.9rem;
    transition: var(--transition-base);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--color-caramel-light);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(253, 248, 243, 0.7);
    font-size: 0.9rem;
}

.footer-contact svg {
    width: 16px;
    height: 16px;
    color: var(--color-caramel-light);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-wala p {
    color: rgba(253, 248, 243, 0.7);
    font-size: 0.9rem;
    margin-bottom: var(--space-sm);
}

.wala-link {
    display: inline-block;
    color: var(--color-caramel-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.wala-link:hover {
    color: var(--color-caramel);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-lg);
    font-size: 0.85rem;
    color: rgba(253, 248, 243, 0.5);
}

.footer-signature {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--color-caramel-light);
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* ============================================
   Page Specific Styles
   ============================================ */

/* Page Header */
.page-header {
    padding: 10rem 0 4rem;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-cream-dark) 100%);
    text-align: center;
}

.page-header h1 {
    margin-bottom: var(--space-sm);
}

.page-header p {
    font-size: 1.15rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Dog Profile Cards (Over Ons page) */
.dog-profiles {
    padding: var(--space-3xl) 0;
    background: var(--color-white);
}

.dog-profile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    padding: var(--space-2xl) 0;
    border-bottom: 1px solid var(--color-cream-dark);
}

.dog-profile:last-child {
    border-bottom: none;
}

.dog-profile:nth-child(even) {
    direction: rtl;
}

.dog-profile:nth-child(even) > * {
    direction: ltr;
}

.dog-profile-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}

.dog-profile-images .main-image {
    grid-column: span 2;
    aspect-ratio: 4/3;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.dog-profile-images .secondary-image {
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.dog-profile-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.dog-profile-images img:hover {
    transform: scale(1.03);
}

.dog-profile-info h2 {
    font-size: 2.5rem;
    margin-bottom: 0.25rem;
}

.dog-profile-info .full-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-caramel);
    margin-bottom: var(--space-lg);
}

.dog-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.spec {
    padding: var(--space-sm);
    background: var(--color-cream);
    border-radius: var(--radius-md);
}

.spec-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 0.25rem;
}

.spec-value {
    font-weight: 600;
    color: var(--color-chocolate);
}

.dog-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    background: var(--color-forest);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.badge.gold {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-caramel) 100%);
}

/* Pups Page */
.pups-hero {
    padding: 10rem 0 4rem;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-cream-dark) 100%);
}

.pups-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.pups-hero-content h1 {
    margin-bottom: var(--space-md);
}

.pups-hero-content .lead {
    font-size: 1.25rem;
    color: var(--color-caramel-dark);
    font-weight: 500;
    margin-bottom: var(--space-sm);
}

.pups-hero-content p {
    color: var(--color-text-light);
}

.pups-hero-image {
    position: relative;
}

.pups-hero-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.pups-hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--color-caramel);
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0.3;
}

/* Contact Form Section */
.contact-section {
    padding: var(--space-3xl) 0;
    background: var(--color-white);
}

.contact-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
}

.contact-info h2 {
    margin-bottom: var(--space-md);
}

.contact-info > p {
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--color-cream);
    border-radius: var(--radius-lg);
}

.contact-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    color: var(--color-caramel);
}

.contact-item-icon svg {
    width: 24px;
    height: 24px;
}

.contact-item-text h4 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.contact-item-text a,
.contact-item-text span {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.contact-item-text a:hover {
    color: var(--color-caramel-dark);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--color-cream);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
}

.contact-form-wrapper h3 {
    margin-bottom: var(--space-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text);
}

.form-group label .required {
    color: var(--color-rust);
}

.form-group input,
.form-group textarea {
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text);
    background: var(--color-white);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-caramel);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-muted);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form .btn {
    align-self: flex-start;
    margin-top: var(--space-sm);
}

/* Aankomende Nestjes Page */
.litters-hero {
    padding: 10rem 0 4rem;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-cream-dark) 100%);
    text-align: center;
}

.litters-hero h1 {
    margin-bottom: var(--space-sm);
}

.litters-hero p {
    font-size: 1.15rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.litters-section {
    padding: var(--space-3xl) 0;
    background: var(--color-white);
}

.litter-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    padding: var(--space-2xl);
    background: var(--color-cream);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-xl);
}

.litter-card:nth-child(even) {
    direction: rtl;
}

.litter-card:nth-child(even) > * {
    direction: ltr;
}

.litter-parents {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.parent-card {
    text-align: center;
}

.parent-image {
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-sm);
}

.parent-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.parent-card h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-chocolate);
}

.parent-card span {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.litter-info h3 {
    font-size: 2rem;
    margin-bottom: var(--space-md);
}

.litter-info p {
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
}

.litter-details {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.litter-detail {
    padding: 0.5rem 1rem;
    background: var(--color-white);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
}

.litter-detail strong {
    color: var(--color-caramel-dark);
}

/* Heart decoration */
.heart-decoration {
    display: flex;
    justify-content: center;
    padding: var(--space-xl) 0;
}

.heart-decoration svg {
    width: 48px;
    height: 48px;
    color: var(--color-caramel);
    opacity: 0.5;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 10rem;
    }
    
    .hero-content {
        padding-right: 0;
        max-width: 100%;
        margin-bottom: var(--space-xl);
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 400px;
    }
    
    .intro-grid,
    .wala-card,
    .litters-preview .container,
    .contact-section .container,
    .pups-hero .container {
        grid-template-columns: 1fr;
    }
    
    .intro-images {
        height: 400px;
        order: -1;
    }
    
    .wala-image {
        min-height: 300px;
    }
    
    .dogs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dog-profile {
        grid-template-columns: 1fr;
    }
    
    .dog-profile:nth-child(even) {
        direction: ltr;
    }
    
    .litter-card {
        grid-template-columns: 1fr;
    }
    
    .litter-card:nth-child(even) {
        direction: ltr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--color-cream);
        flex-direction: column;
        align-items: flex-start;
        padding: 6rem 2rem 2rem;
        box-shadow: var(--shadow-xl);
        transition: var(--transition-base);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .nav-social {
        display: none;
    }
    
    .dogs-grid {
        grid-template-columns: 1fr;
    }
    
    .litters-images {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .wala-details {
        grid-template-columns: 1fr;
    }
    
    .dog-specs {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
    
    .scroll-indicator {
        display: none;
    }
}

/* ============================================
   Local SEO Pages
   ============================================ */
.location-header {
    background: linear-gradient(135deg, var(--color-forest) 0%, var(--color-chocolate) 50%, var(--color-caramel-dark) 100%);
}

.location-header h1,
.location-header p,
.location-header .section-label {
    color: var(--color-cream);
}

.location-header .section-label {
    opacity: 0.8;
}

.location-content {
    padding: var(--space-3xl) 0;
    background: var(--color-white);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: var(--space-2xl);
    align-items: start;
}

.location-text h2 {
    margin-bottom: var(--space-md);
}

.location-text h3 {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    font-size: 1.5rem;
}

.location-text p {
    color: var(--color-text-light);
    line-height: 1.8;
}

.location-benefits {
    list-style: none;
    padding: 0;
    margin: var(--space-md) 0;
}

.location-benefits li {
    position: relative;
    padding: var(--space-sm) 0 var(--space-sm) var(--space-lg);
    border-bottom: 1px solid var(--color-cream-dark);
}

.location-benefits li:last-child {
    border-bottom: none;
}

.location-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-forest);
    font-weight: 700;
}

.location-benefits li strong {
    color: var(--color-chocolate);
}

.location-cta {
    margin-top: var(--space-xl);
    padding: var(--space-xl);
    background: var(--color-cream);
    border-radius: var(--radius-xl);
    border-left: 4px solid var(--color-caramel);
}

.location-cta h3 {
    margin-top: 0;
    margin-bottom: var(--space-sm);
    font-size: 1.25rem;
}

.location-cta p {
    margin-bottom: var(--space-md);
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.location-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.sidebar-card {
    background: var(--color-cream);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.sidebar-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.sidebar-content {
    padding: var(--space-md);
}

.sidebar-content h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
}

.sidebar-content p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-sm);
}

.sidebar-content ul {
    list-style: none;
    padding: 0;
}

.sidebar-content li {
    padding: var(--space-xs) 0;
    font-size: 0.9rem;
    color: var(--color-text);
}

.contact-card {
    padding: var(--space-md);
}

.contact-card h3 {
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
}

.contact-card p {
    margin-bottom: var(--space-xs);
    font-size: 0.9rem;
}

.contact-card a {
    color: var(--color-caramel-dark);
}

.contact-card a:hover {
    color: var(--color-caramel);
}

/* Other Locations Section */
.other-locations {
    padding: var(--space-2xl) 0;
    background: var(--color-cream);
}

.other-locations h2 {
    text-align: center;
    margin-bottom: var(--space-xl);
    font-size: 1.75rem;
}

.locations-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
}

.locations-grid a,
.area-link {
    display: inline-block;
    padding: 0.75rem 1.25rem;
    background: var(--color-white);
    color: var(--color-chocolate);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.locations-grid a:hover,
.area-link:hover {
    background: var(--color-caramel);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Service Areas Section (Homepage) */
.service-areas {
    padding: var(--space-2xl) 0;
    background: var(--color-cream-dark);
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
    max-width: 900px;
    margin: 0 auto;
}

/* Litter Card Images */
.litter-images {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
}

.litter-parent {
    position: relative;
    width: 150px;
}

.litter-parent img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.parent-label {
    display: block;
    text-align: center;
    margin-top: var(--space-xs);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
}

.litter-heart {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--color-white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
}

.litter-heart svg {
    width: 24px;
    height: 24px;
    color: var(--color-rust);
}

.litter-info h2 {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
}

.litter-description {
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
}

.litter-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.litter-detail {
    display: flex;
    justify-content: space-between;
    padding: var(--space-sm);
    background: var(--color-white);
    border-radius: var(--radius-md);
}

.detail-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.detail-value {
    font-weight: 600;
    color: var(--color-chocolate);
}

.litter-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Visually Hidden (for accessibility) */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Local SEO Responsive */
@media (max-width: 1024px) {
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .location-sidebar {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .sidebar-card {
        flex: 1;
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .location-sidebar {
        flex-direction: column;
    }
    
    .sidebar-card {
        min-width: 100%;
    }
    
    .litter-images {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .litter-heart {
        order: -1;
    }
    
    .litter-parent {
        width: 120px;
    }
    
    .litter-parent img {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .hero-badge {
        font-size: 0.65rem;
        padding: 0.4rem 0.8rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .intro-images {
        height: 300px;
    }
    
    .intro-image-1 {
        width: 70%;
        height: 50%;
    }
    
    .intro-image-2 {
        width: 60%;
        height: 45%;
    }
    
    .intro-image-3 {
        width: 55%;
        height: 40%;
    }
    
    .cta-contact {
        flex-direction: column;
    }
    
    .contact-method {
        justify-content: center;
    }
    
    .litter-parents {
        grid-template-columns: 1fr;
    }
}

