/*
Theme Name: Lilkira Border Collies
Theme URI: https://lilkirabordercollies.com.au
Author: Lilkira Border Collies
Description: A clean, minimal theme for Lilkira Border Collies — featuring soft pink and green tones, elegant typography, and sections for About, Our Dogs, Puppies, Gallery, Blog and Contact.
Version: 1.0
License: GNU General Public License v2 or later
Tags: custom, border-collies, minimal, pink, green
*/

/* =============================================
   GLOBAL RESET & VARIABLES
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pink: #e8b4c0;
  --pink-light: #f7e8ec;
  --pink-mid: #d4849a;
  --green: #7a9e7e;
  --green-light: #eaf2eb;
  --green-dark: #4a7050;
  --cream: #fdfaf8;
  --ink: #2a2a2a;
  --muted: #7a7a7a;
  --border: #e8e0dc;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* =============================================
   NAVIGATION
   ============================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(253,250,248,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
}

.site-logo span { color: var(--pink-mid); }

.main-nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
}

.main-nav a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.main-nav a:hover { color: var(--green-dark); }

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 40px 60px;
  background: linear-gradient(160deg, var(--pink-light) 0%, var(--cream) 45%, var(--green-light) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,180,192,0.25) 0%, transparent 70%);
  top: -100px; right: -100px;
}

.hero::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122,158,126,0.2) 0%, transparent 70%);
  bottom: -80px; left: -80px;
}

.hero-inner { position: relative; z-index: 1; max-width: 680px; }

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-dark);
  font-weight: 500;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.35s forwards;
}

.hero h1 em { font-style: italic; color: var(--pink-mid); }

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto 40px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero-cta {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.8s 0.65s forwards;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  padding: 12px 32px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
  display: inline-block;
}

.btn-primary { background: var(--green-dark); color: white; }
.btn-primary:hover { background: var(--green); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(74,112,80,0.25); color: white; }

.btn-outline { background: transparent; color: var(--pink-mid); border: 1.5px solid var(--pink); }
.btn-outline:hover { background: var(--pink-light); transform: translateY(-2px); }

/* =============================================
   SECTIONS (shared)
   ============================================= */
.section-wrap {
  padding: 100px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.full-width-section {
  padding: 100px 40px;
}

.full-width-section .section-wrap {
  padding: 0;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink-mid);
  font-weight: 500;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 20px;
}

.section-title em { font-style: italic; color: var(--green-dark); }

.divider {
  width: 48px; height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--green));
  border-radius: 2px;
  margin-bottom: 40px;
}

/* =============================================
   ABOUT
   ============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--green-light) 100%);
  border-radius: 4px 40px 4px 40px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
}

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

.about-text p { color: var(--muted); margin-bottom: 18px; font-weight: 300; font-size: 1.02rem; }
.about-text p strong { color: var(--ink); font-weight: 500; }

.badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.badge { padding: 6px 16px; border-radius: 100px; font-size: 0.78rem; font-weight: 500; }
.badge-pink { background: var(--pink-light); color: var(--pink-mid); }
.badge-green { background: var(--green-light); color: var(--green-dark); }

/* =============================================
   DOGS
   ============================================= */
.dogs-section { background: linear-gradient(180deg, var(--cream) 0%, var(--pink-light) 100%); }

.dogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.dog-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid var(--border);
}

.dog-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.08); }

.dog-card-image {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--pink-light), var(--green-light));
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
}

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

.dog-card-body { padding: 24px; }
.dog-card-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 400; margin-bottom: 4px; }
.dog-role { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--pink-mid); font-weight: 500; margin-bottom: 12px; }
.dog-card-body p { color: var(--muted); font-size: 0.92rem; line-height: 1.6; }

/* =============================================
   PUPPIES
   ============================================= */
.puppies-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  border-radius: 24px;
  padding: 60px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
}

.puppies-banner::before {
  content: '🐾';
  position: absolute;
  font-size: 12rem;
  opacity: 0.06;
  top: -20px; right: -20px;
  transform: rotate(15deg);
}

.puppies-banner .section-label { color: rgba(255,255,255,0.7); }
.puppies-banner .section-title { color: white; }
.puppies-banner p { color: rgba(255,255,255,0.8); max-width: 520px; margin: 0 auto 36px; font-weight: 300; }
.puppies-banner .btn-primary { background: white; color: var(--green-dark); }
.puppies-banner .btn-primary:hover { background: var(--pink-light); color: var(--pink-mid); }

.litter-info { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-top: 48px; }
.litter-stat { text-align: center; }
.litter-stat .num { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 300; color: white; line-height: 1; }
.litter-stat .label { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* =============================================
   GALLERY
   ============================================= */
.gallery-section { background: var(--green-light); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--pink-light), white);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.8);
}

.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item:hover { transform: scale(1.03); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; aspect-ratio: unset; }
.gallery-item:last-child { grid-column: span 2; aspect-ratio: unset; min-height: 200px; }

/* =============================================
   BLOG
   ============================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.blog-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); }

.blog-card-image {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--pink-light), var(--green-light));
  overflow: hidden;
}

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

.blog-card-body { padding: 24px; }

.blog-meta {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink-mid);
  margin-bottom: 10px;
}

.blog-card-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.3;
}

.blog-card-body h3 a { color: var(--ink); }
.blog-card-body h3 a:hover { color: var(--green-dark); }
.blog-card-body p { color: var(--muted); font-size: 0.9rem; font-weight: 300; margin-bottom: 16px; }

.read-more {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-dark);
  text-decoration: none;
}

.read-more:hover { color: var(--pink-mid); }

/* Single post */
.single-post { max-width: 720px; margin: 120px auto 80px; padding: 0 40px; }
.single-post h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 5vw, 3rem); font-weight: 300; margin-bottom: 16px; }
.post-meta { font-size: 0.8rem; color: var(--muted); margin-bottom: 40px; }
.post-content p { color: var(--muted); font-weight: 300; margin-bottom: 20px; line-height: 1.8; }
.post-content h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 400; margin: 40px 0 16px; }
.post-thumbnail { border-radius: 16px; overflow: hidden; margin-bottom: 40px; }
.post-thumbnail img { width: 100%; height: auto; }

/* =============================================
   CONTACT
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info p { color: var(--muted); font-weight: 300; margin-bottom: 32px; }

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding: 16px 20px;
  background: var(--pink-light);
  border-radius: 12px;
}

.contact-detail-icon {
  width: 40px; height: 40px;
  background: white;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.contact-detail-text { font-size: 0.88rem; }
.contact-detail-text strong { display: block; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--pink-mid); margin-bottom: 2px; }

.contact-form-wrap {
  background: white;
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--border);
}

.contact-form-wrap h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 24px;
}

/* WP Contact Form 7 overrides */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea,
.wpcf7 select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--cream);
  outline: none;
  transition: border-color 0.2s;
  margin-bottom: 16px;
  appearance: none;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus { border-color: var(--green); }

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

.wpcf7 input[type="submit"] {
  width: 100%;
  padding: 14px;
  background: var(--green-dark);
  color: white;
  border: none;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
}

.wpcf7 input[type="submit"]:hover { background: var(--green); transform: translateY(-2px); }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 48px 40px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: white;
  margin-bottom: 8px;
}

.footer-logo span { color: var(--pink); }

.footer-nav { display: flex; justify-content: center; gap: 24px; list-style: none; margin: 16px 0; flex-wrap: wrap; }
.footer-nav a { color: rgba(255,255,255,0.4); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.2s; }
.footer-nav a:hover { color: var(--pink); }

.footer-copy { font-size: 0.82rem; margin-top: 20px; }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s, transform 0.7s; }
.reveal.visible { opacity: 1; transform: none; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  .site-header { padding: 0 20px; }
  .main-nav { display: none; }
  .section-wrap, .full-width-section { padding: 70px 24px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { aspect-ratio: 3/2; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:first-child { grid-column: span 2; }
  .gallery-item:last-child { grid-column: span 2; }
  .puppies-banner { padding: 40px 24px; }
  .contact-form-wrap { padding: 28px 24px; }
  .single-post { padding: 0 20px; }
}
