/* ════════════════════════════════════════════════════════════
   L & J Pets — Main Stylesheet
   Shared across all pages via <link rel="stylesheet" href="../css/styles.css">
   ════════════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --sun:       #FFD93D;
  --coral:     #FF6B6B;
  --mint:      #6BCB77;
  --sky:       #4D96FF;
  --lavender:  #C77DFF;
  --cream:     #FFF8F0;
  --ink:       #2D2D2D;
  --soft:      #6B6B6B;
  --white:     #FFFFFF;
  --card-r:    18px;
  --shadow:    0 6px 30px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 50px rgba(0,0,0,.14);
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── HEADER ─────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 3px solid var(--sun);
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
}
.header-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
}
.logo-wrap { display: flex; align-items: center; gap: 12px; }
.logo-img  { width: 52px; height: 52px; object-fit: contain; border-radius: 12px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.7rem; font-weight: 700;
  color: var(--coral);
  letter-spacing: .5px;
}
.logo-main .amp { color: var(--sky); }
.logo-sub { font-size: .75rem; font-weight: 700; color: var(--soft); letter-spacing: .5px; text-transform: uppercase; }

.main-nav { display: flex; gap: 6px; }
.main-nav a {
  font-weight: 700; font-size: .95rem;
  padding: 8px 16px; border-radius: 50px;
  transition: background .2s, color .2s;
  color: var(--ink);
}
.main-nav a:hover { background: var(--sun); color: var(--ink); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 3px;
  background: var(--ink); border-radius: 2px;
  transition: .3s;
}

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  min-height: 88vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, #fff5c2 0%, #ffd6d6 40%, #d0f0ff 100%);
}
.hero::before {
  content: '';
  position: absolute; top: -120px; right: -120px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,107,.25) 0%, transparent 70%);
  animation: blobFloat 8s ease-in-out infinite alternate;
}
.hero::after {
  content: '';
  position: absolute; bottom: -100px; left: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77,150,255,.2) 0%, transparent 70%);
  animation: blobFloat 10s ease-in-out infinite alternate-reverse;
}
@keyframes blobFloat {
  from { transform: translateY(0) scale(1); }
  to   { transform: translateY(30px) scale(1.08); }
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: 1100px; margin: 0 auto;
  padding: 60px 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.hero-text { animation: fadeUp .9s ease both; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-block;
  background: var(--sun); color: var(--ink);
  font-weight: 800; font-size: .8rem; letter-spacing: 1px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px;
  margin-bottom: 18px;
  box-shadow: 0 2px 10px rgba(255,217,61,.5);
}
.hero h1 {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 700; line-height: 1.1;
  color: var(--ink);
  margin-bottom: 18px;
}
.hero h1 em     { font-style: normal; color: var(--coral); }
.hero h1 strong { color: var(--sky); font-style: normal; }
.hero-sub {
  font-size: 1.15rem; font-weight: 600; color: var(--soft);
  max-width: 460px; line-height: 1.6;
  margin-bottom: 32px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: 'Fredoka', sans-serif;
  font-size: 1.1rem; font-weight: 600;
  padding: 14px 34px; border-radius: 50px;
  transition: transform .2s, box-shadow .2s;
  cursor: pointer; border: none;
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn-primary   { background: var(--coral); color: var(--white); box-shadow: 0 4px 20px rgba(255,107,107,.4); }
.btn-secondary { background: var(--white); color: var(--coral); border: 2.5px solid var(--coral); }

/* ── HERO IMAGE & STICKERS ──────────────────────────────── */
.hero-image {
  animation: fadeUp .9s .2s ease both;
  position: relative;
}
.hero-image img {
  width: 100%; border-radius: 28px;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}
.sticker {
  position: absolute;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600; font-size: .95rem;
  padding: 10px 18px; border-radius: 50px;
  box-shadow: 0 4px 14px rgba(0,0,0,.15);
  animation: wiggle 3s ease-in-out infinite;
}
.sticker-1 { background: var(--mint);    color: var(--white); top: -16px;  left: 20px;   animation-delay: 0s; }
.sticker-2 { background: var(--lavender);color: var(--white); bottom: 20px;right: -14px; animation-delay: .8s; }
.sticker-3 { background: var(--sun);     color: var(--ink);   bottom:-16px;left: 30px;   animation-delay: 1.6s; }
@keyframes wiggle {
  0%,100% { transform: rotate(-2deg); }
  50%     { transform: rotate(2deg); }
}

/* ── SECTION SHARED ─────────────────────────────────────── */
section { padding: 80px 24px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  display: inline-block;
  font-size: .8rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700; line-height: 1.15;
  margin-bottom: 16px;
}
.section-desc { font-size: 1.05rem; color: var(--soft); max-width: 560px; line-height: 1.7; }

/* ── SERVICES ───────────────────────────────────────────── */
#services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 22px; margin-top: 48px;
}
.service-card {
  background: var(--cream);
  border-radius: var(--card-r);
  padding: 32px 24px;
  text-align: center;
  border: 2.5px solid transparent;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  cursor: default;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card:nth-child(1):hover { border-color: var(--coral); }
.service-card:nth-child(2):hover { border-color: var(--sky); }
.service-card:nth-child(3):hover { border-color: var(--mint); }
.service-card:nth-child(4):hover { border-color: var(--lavender); }
.service-card:nth-child(5):hover { border-color: var(--sun); }
.service-icon {
  font-size: 3rem; margin-bottom: 14px;
  display: block;
  animation: bounce 2.5s ease-in-out infinite;
}
.service-card:nth-child(2) .service-icon { animation-delay: .4s; }
.service-card:nth-child(3) .service-icon { animation-delay: .8s; }
.service-card:nth-child(4) .service-icon { animation-delay: 1.2s; }
.service-card:nth-child(5) .service-icon { animation-delay: 1.6s; }
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-6px); }
}
.service-card h3 {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.3rem; font-weight: 600; margin-bottom: 8px;
}
.service-card p { font-size: .9rem; color: var(--soft); line-height: 1.5; }

/* ── WHY US ─────────────────────────────────────────────── */
#why { background: linear-gradient(135deg, #fff5c2 0%, #fce8ff 100%); }
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center; margin-top: 48px;
}
.why-image { position: relative; }
.why-image img {
  width: 100%; border-radius: 28px;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}
.why-list { display: flex; flex-direction: column; gap: 20px; }
.why-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: rgba(255,255,255,.7);
  border-radius: var(--card-r); padding: 18px 20px;
  backdrop-filter: blur(6px);
  border: 1.5px solid rgba(255,255,255,.9);
  transition: transform .2s;
}
.why-item:hover { transform: translateX(6px); }
.why-item-icon {
  font-size: 1.8rem; flex-shrink: 0;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
}
.wi-1 { background: #FFE8E8; }
.wi-2 { background: #E8F4FF; }
.wi-3 { background: #E8FFE8; }
.wi-4 { background: #F0E8FF; }
.why-item-text h4 {
  font-family: 'Fredoka', sans-serif; font-size: 1.15rem; font-weight: 600;
  margin-bottom: 4px;
}
.why-item-text p { font-size: .9rem; color: var(--soft); line-height: 1.5; }

/* ── ABOUT ──────────────────────────────────────────────── */
#about { background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center; margin-top: 48px;
}
.about-text .section-label { color: var(--lavender); }
.about-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.about-photo {
  border-radius: var(--card-r); overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 3/4; object-fit: cover;
  transition: transform .3s;
}
.about-photo:hover { transform: scale(1.03) rotate(1deg); }
.about-photo:nth-child(2) { margin-top: 28px; transform: rotate(1.5deg); }
.about-photo:nth-child(2):hover { transform: scale(1.03) rotate(-.5deg); }

.owner-cards { display: flex; gap: 14px; margin-top: 24px; flex-wrap: wrap; }
.owner-card {
  flex: 1; min-width: 160px;
  background: var(--cream); border-radius: var(--card-r);
  padding: 18px; text-align: center;
  border: 2.5px solid var(--sun);
}
.owner-avatar {
  width: 64px; height: 64px;
  border-radius: 50%; overflow: hidden;
  margin: 0 auto 10px;
  background: var(--sun);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
}
.owner-avatar img { width: 100%; height: 100%; object-fit: cover; }
.owner-card h4 { font-family: 'Fredoka', sans-serif; font-size: 1.1rem; font-weight: 600; }
.owner-card p  { font-size: .82rem; color: var(--soft); }

/* ── CONTACT ────────────────────────────────────────────── */
#contact { background: linear-gradient(135deg, #d0f0ff 0%, #ffe8f0 100%); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: start; margin-top: 48px;
}
.contact-card {
  background: var(--white); border-radius: 24px;
  padding: 36px; box-shadow: var(--shadow);
}
.contact-card h3 {
  font-family: 'Fredoka', sans-serif; font-size: 1.5rem; margin-bottom: 20px;
}
.contact-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0; border-bottom: 1.5px solid var(--cream);
}
.contact-item:last-child { border-bottom: none; }
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 12px; font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ci-phone  { background: #e8ffe8; }
.ci-phone2 { background: #e8f4ff; }
.ci-loc    { background: #fff5c2; }
.contact-item-text p:first-child { font-weight: 700; font-size: .85rem; color: var(--soft); text-transform: uppercase; letter-spacing: .5px; }
.contact-item-text a,
.contact-item-text span { font-weight: 700; font-size: 1rem; color: var(--ink); }
.contact-item-text a:hover { color: var(--coral); }
.contact-message p { font-size: 1.1rem; color: var(--soft); line-height: 1.7; margin-bottom: 24px; }
.contact-message .btn { display: block; text-align: center; }

/* ── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--ink); color: var(--white);
  padding: 60px 24px 0;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1.5px solid rgba(255,255,255,.1);
}
.footer-logo {
  font-family: 'Fredoka', sans-serif;
  font-size: 2rem; font-weight: 700; color: var(--sun);
  display: block; margin-bottom: 10px;
}
.footer-logo .amp { color: var(--coral); }
.footer-tagline { color: rgba(255,255,255,.6); font-size: .95rem; line-height: 1.6; max-width: 240px; }
.footer-links h4,
.footer-contact h4 {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.1rem; color: var(--sun); margin-bottom: 14px;
}
.footer-links a {
  display: block; color: rgba(255,255,255,.7);
  font-size: .9rem; font-weight: 600;
  padding: 4px 0; transition: color .2s;
}
.footer-links a:hover { color: var(--white); }
.footer-contact p   { font-size: .9rem; color: rgba(255,255,255,.7); margin-bottom: 10px; line-height: 1.5; }
.footer-contact a   { color: var(--sun); font-weight: 700; }
.footer-contact a:hover { color: var(--white); }
.footer-area { color: rgba(255,255,255,.5) !important; font-size: .82rem !important; margin-top: 6px; }
.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  padding: 20px 0;
  font-size: .85rem; color: rgba(255,255,255,.4);
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-inner, .why-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .main-nav {
    display: none; flex-direction: column;
    position: absolute; top: 80px; left: 0; right: 0;
    background: var(--white); padding: 16px; box-shadow: var(--shadow); z-index: 99;
  }
  .main-nav.open { display: flex; }
  .main-nav a    { padding: 12px 20px; border-radius: 10px; }
  .hamburger     { display: flex; }
  .hero-image    { order: -1; }
  .sticker-2     { right: 0; }
  .about-grid .about-photos { order: -1; }
}
