/* Proud-Hart Gift Company - Blue Kitty-Inspired Theme */

:root {
  --bg: #f3f7ff;
  --bg-alt: #e3efff;
  --card: #ffffff;
  --card-soft: #eef5ff;
  --accent: #8ec5ff;
  --accent-soft: rgba(142, 197, 255, 0.18);
  --accent-strong: #5a9bff;
  --text: #12324d;
  --muted: #5b7394;
  --border-subtle: rgba(18, 50, 77, 0.14);
  --shadow-soft: 0 12px 32px rgba(41, 86, 133, 0.18);
  --radius-lg: 24px;
  --radius-pill: 999px;
  --transition-fast: 0.18s ease-out;
}

/* RESET-ish */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #f7fbff 0, #e5f0ff 55%, #d7e8ff 100%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent-strong);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* LAYOUT */

.container {
  width: min(1120px, 100% - 3rem);
  margin-inline: auto;
}

.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: radial-gradient(circle at top left, rgba(142, 197, 255, 0.18), transparent 60%);
}

.section-heading {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.section-heading h1,
.section-heading h2 {
  font-size: clamp(2rem, 2.6vw, 2.6rem);
  margin-bottom: 0.5rem;
}

.section-heading p {
  color: var(--muted);
  margin: 0;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: #24425e;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
}

.header-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.header-heart-link {
  display: inline-flex;
  align-items: center;
}

.header-heart {
  width: 24px;
  height: 24px;
}

.site-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: #ffffff;
  text-decoration: none;
}

.logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-img {
  width: 240px;
  height: 240px;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.15);
}

.logo-text {
  font-weight: 600;
  font-family: 'Dancing Script', cursive;
  font-size: 1.44rem;
}

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

.nav-link {
  font-size: 0.9rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  color: #ffffff;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  transform: translateY(-1px);
}

.nav-link.active {
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
}

.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 12px 25px rgba(90, 155, 255, 0.32);
}

.nav-cta:hover {
  text-decoration: none;
  transform: translateY(-1px) scale(1.02);
}

/* HERO */

.hero {
  position: relative;
  padding: 4rem 0 4.5rem;
  overflow: hidden;
}

.hero-logo {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 5;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.6rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin: 0 0 0.75rem;
}

.hero-subtitle {
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 1.5rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  color: var(--accent-strong);
  margin-bottom: 0.65rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero-social {
  font-size: 0.9rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
}

.hero-social a {
  text-decoration: underline;
}

.hero-social .dot {
  opacity: 0.6;
}

.hero-card-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.hero-card {
  background: radial-gradient(circle at top left, rgba(142, 197, 255, 0.25), #ffffff);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}

.hero-logo {
  position: static;
  text-align: center;
}

.hero-card-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.hero-card-body {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.hero-card-link {
  font-size: 0.9rem;
  font-weight: 500;
}

/* BLOBS */

.hero-blob {
  position: absolute;
  filter: blur(70px);
  opacity: 0.9;
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero-blob-left {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(142, 197, 255, 0.55), transparent 60%);
  top: -120px;
  left: -160px;
}

.hero-blob-right {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(174, 214, 255, 0.45), transparent 60%);
  bottom: -140px;
  right: -100px;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #0f2b46;
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(90, 155, 255, 0.35);
}

.btn-primary:hover {
  text-decoration: none;
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 18px 38px rgba(90, 155, 255, 0.45);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
}

.btn-ghost:hover {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.95);
}

.btn-block {
  width: 100%;
}

/* CARDS / GRID */

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 3fr);
  gap: 2.5rem;
  align-items: start;
}

.about-placeholders {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.placeholder-box {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(142, 197, 255, 0.25), rgba(90, 155, 255, 0.15));
  border: 1px dashed var(--border-strong);
  box-shadow: 0 10px 20px rgba(41, 86, 133, 0.12);
}

.about-card-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}

.pill-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.4rem;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 12px 28px rgba(41, 86, 133, 0.15);
}

.pill-card h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.pill-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  justify-items: center;
}

.feature-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  padding: 1.2rem 1.3rem;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 10px 26px rgba(41, 86, 133, 0.16);
  font-size: 0.9rem;
}

.feature-card h3 {
  margin-top: 0;
  margin-bottom: 0.45rem;
  font-size: 1rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.section-cta {
  text-align: center;
  margin-top: 2.2rem;
}

.section-cta-note {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.9rem;
}

/* SOCIAL STRIP */

.social-strip {
  padding: 3rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: radial-gradient(circle at center, rgba(142, 197, 255, 0.2), #f3f8ff);
}

.social-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.social-strip h2 {
  margin: 0 0 0.4rem;
  font-size: 1.4rem;
}

.social-strip p {
  margin: 0;
  color: var(--muted);
}

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

/* GALLERY */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 0.75rem;
}

.gallery-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 12px 24px rgba(41, 86, 133, 0.18);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease-out;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  left: 0.7rem;
  bottom: 0.6rem;
  right: 0.7rem;
  padding: 0.3rem 0.5rem;
  border-radius: 999px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.9), rgba(229, 242, 255, 0.92));
  font-size: 0.75rem;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gallery-chip {
  font-size: 0.7rem;
  padding: 0.05rem 0.5rem;
  border-radius: 999px;
  background: rgba(142, 197, 255, 0.25);
  color: var(--accent-strong);
}

/* CONTACT */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 3fr);
  gap: 2.5rem;
  align-items: start;
}

.contact-text h1 {
  font-size: clamp(1.8rem, 2.4vw, 2.2rem);
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.contact-details p {
  margin: 0.25rem 0;
}

.small {
  font-size: 0.85rem;
  color: var(--muted);
}

.contact-form-wrap {
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-lg);
  padding: 1.7rem 1.6rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
}

.contact-form .form-group {
  margin-bottom: 1rem;
}

.contact-form label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(90, 155, 255, 0.35);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  padding: 0.55rem 0.7rem;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 2px rgba(142, 197, 255, 0.35);
  background: #ffffff;
}

.form-status {
  margin-top: 0.75rem;
  font-size: 0.9rem;
}

.form-status[data-state="success"] {
  color: #0f9d58;
}

.form-status[data-state="error"] {
  color: #d93025;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
}

/* FOOTER */

.site-footer {
  padding: 1.8rem 0 2.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #24425e;
  color: #ffffff;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 2.5fr) minmax(0, 2fr) minmax(0, 1.5fr);
  gap: 1rem;
  align-items: center;
  font-size: 0.85rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #e9f1f9;
}

.footer-logo {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: radial-gradient(circle, var(--accent-strong), var(--accent));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #020617;
  font-size: 0.8rem;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.footer-links a {
  color: #e9f1f9;
}

.footer-meta {
  text-align: right;
  color: #e9f1f9;
}

/* INLINE LINKS */

.link-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.9rem;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    order: -1;
  }

  .two-column,
  .contact-layout,
  .footer-inner,
  .social-strip-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .social-strip-inner,
  .footer-inner {
    display: grid;
  }

  .footer-meta {
    text-align: left;
  }

  .main-nav {
    gap: 0.35rem;
  }

  .nav-link {
    padding-inline: 0.5rem;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 3rem;
  }

  .hero-inner {
    gap: 2rem;
  }

  .header-inner {
    flex-direction: column;
    gap: 0.6rem;
  }

  .social-buttons {
    justify-content: flex-start;
  }
}
