/* =============================================
   Pink Balloon Dog — style.css
   Mobile-first. Pink + sky blue palette.
   ============================================= */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --sky:         #8ED4E8;
  --sky-light:   #B8E4F0;
  --sky-dark:    #6ABCD8;
  --pink:        #F080B0;
  --hot-pink:    #E8409A;
  --deep-pink:   #C0186E;
  --teal:        #3CC4BC;
  --teal-dark:   #28A8A0;
  --white:       #FFFFFF;
  --cream:       #FFF5FA;
  --text:        #3A1830;
  --text-mid:    #6B3058;
  --text-light:  #9B6080;

  --font-display: 'Bubblegum Sans', cursive;
  --font-script:  'Dancing Script', cursive;
  --font-body:    'Nunito', sans-serif;

  --radius-sm: 14px;
  --radius:    22px;
  --radius-lg: 32px;
  --shadow:    0 6px 24px rgba(200, 80, 140, 0.18);
  --shadow-sm: 0 3px 12px rgba(200, 80, 140, 0.13);
}

/* ---- BASE ---- */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--sky);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 14px rgba(200, 80, 140, 0.15);
}

.header-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.logo-link {
  display: block;
  flex-shrink: 0;
}

.logo-img {
  height: 88px;
  width: auto;
}

/* ---- Hamburger ---- */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--hot-pink);
  border-radius: 3px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ---- Nav ---- */
.main-nav {
  /* Mobile: hidden dropdown */
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 3px solid var(--pink);
  box-shadow: 0 8px 24px rgba(200, 80, 140, 0.18);
  flex-direction: column;
  padding: 0.75rem 1.25rem 1.25rem;
  gap: 0;
}

.main-nav.is-open {
  display: flex;
}

.main-nav a {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--hot-pink);
  text-decoration: none;
  padding: 0.55rem 0;
  border-bottom: 1px solid #fde0ef;
  transition: color 0.2s;
}

.main-nav a:last-child {
  border-bottom: none;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--teal);
}

/* ---- Desktop nav ---- */
@media (min-width: 680px) {
  .nav-toggle {
    display: none;
  }

  .main-nav {
    display: flex !important;   /* override is-open/hidden */
    position: static;
    flex-direction: row;
    background: transparent;
    border-top: none;
    box-shadow: none;
    padding: 0;
    gap: 1.75rem;
    align-items: center;
  }

  .main-nav a {
    font-size: 1.2rem;
    border-bottom: none;
    padding: 0;
  }
}

/* =============================================
   SHARED SECTION STYLES
   ============================================= */
section {
  padding: 2.5rem 1.25rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--hot-pink);
  text-align: center;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.45);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  padding-top: 2rem;
  padding-bottom: 1rem;
}

.hero-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

/* Text card */
.hero-text-col {
  width: 100%;
  max-width: 540px;
}

.hero-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem 2rem;
  box-shadow: var(--shadow);
}

.bio {
  font-size: 0.975rem;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.bio:last-of-type {
  margin-bottom: 1.75rem;
}

.btn-primary {
  display: inline-block;
  background: var(--hot-pink);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.15rem;
  padding: 0.6rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(232, 64, 154, 0.4);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(60, 196, 188, 0.45);
}

/* Image + callout */
.hero-image-col {
  width: 100%;
  max-width: 380px;
}

.hero-img-wrap {
  position: relative;
}

.hero-img-inner {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(230, 80, 150, 0.28);
}

.hero-img-inner img {
  width: 100%;
  height: auto;
  display: block;
}

.dresses-callout {
  position: absolute;
  bottom: 0.5rem;
  right: -0.5rem;
  background: var(--white);
  border: 3px solid var(--teal);
  border-radius: 50%;
  width: 148px;
  height: 148px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.75rem;
  box-shadow: var(--shadow-sm);
  line-height: 1.3;
}

.dresses-callout p {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--text-mid);
}

.dresses-callout a {
  text-decoration: none;
}

.dresses-callout a:hover strong {
  text-decoration: underline;
}

.dresses-callout strong {
  font-family: var(--font-script);
  font-size: 0.9rem;
  color: var(--hot-pink);
  display: block;
  margin-top: 0.2rem;
}

/* Desktop hero layout */
@media (min-width: 720px) {
  .hero-inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 3rem;
  }

  .hero-text-col {
    flex: 1;
    max-width: 480px;
  }

  .hero-image-col {
    flex-shrink: 0;
    max-width: 320px;
    align-self: center;
  }
}

/* =============================================
   SERVICES
   ============================================= */
.services {
  max-width: 1060px;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.services h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--hot-pink);
  text-align: center;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.45);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 0.875rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.service-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.service-img-wrap img {
  max-height: 140px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--hot-pink);
  margin-bottom: 0.35rem;
}

.service-card p {
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.55;
}

.coming-soon-badge {
  display: inline-block;
  background: var(--teal);
  color: var(--white) !important;
  font-family: var(--font-script);
  font-size: 1.1rem !important;
  padding: 0.15rem 0.9rem;
  border-radius: 50px;
  box-shadow: 0 3px 10px rgba(60, 196, 188, 0.35);
}

@media (min-width: 680px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }

  .service-img-wrap img {
    max-height: 180px;
  }
}

/* =============================================
   GALLERY
   ============================================= */
.gallery {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  margin-top: 1rem;
}

.gallery h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--hot-pink);
  text-align: center;
  margin-bottom: 0.4rem;
  text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.5);
}

.gallery-tagline {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-mid);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}

.gallery-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  padding-bottom: 0.25rem;
}


.gallery-thumb {
  width: 130px;
  height: 130px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--sky-light), var(--teal));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0.5rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  position: relative;
}

/* When real <img> tags replace the placeholders, they fill the thumb */
.gallery-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumb span {
  position: relative;
  z-index: 1;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--white);
  text-align: center;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
  line-height: 1.3;
}

.gallery-note {
  text-align: center;
  font-style: italic;
  color: var(--text-light);
  font-size: 0.875rem;
  margin-top: 1rem;
}

/* =============================================
   CONTACT
   ============================================= */
.contact {
  padding: 0;
}

/* Two-panel grid: stacks on mobile, side-by-side on wide screens */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-panel {
  padding: 2.5rem 1.5rem;
}

.contact-panel--info {
  background: linear-gradient(160deg, #fde8f4 0%, #fef3f9 100%);
}

.contact-panel--follow {
  background: linear-gradient(160deg, #fce4f5 0%, #f3e4fc 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  border-top: 3px solid rgba(232, 64, 154, 0.15);
}

@media (min-width: 768px) {
  .contact-panel--follow {
    border-top: none;
    border-left: 3px solid rgba(232, 64, 154, 0.15);
  }
}

/* ---- Contact info side ---- */
.contact-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  height: 100%;
  justify-content: center;
}

@media (min-width: 500px) {
  .contact-inner {
    flex-direction: row;
    text-align: left;
    gap: 2rem;
  }
}

.contact-img-col img {
  max-width: 200px;
  margin: 0 auto;
  display: block;
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(230, 80, 150, 0.3);
}

@media (min-width: 500px) {
  .contact-img-col img {
    margin: 0;
  }
}

.contact-info-col h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--hot-pink);
  margin-bottom: 0.5rem;
}

.contact-name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--teal-dark);
  margin-bottom: 0.5rem;
}

.contact-detail {
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 0.35rem;
}

.contact-detail a {
  color: var(--hot-pink);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-detail a:hover {
  color: var(--teal-dark);
}

/* ---- Follow Me side ---- */
.follow-heading {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--hot-pink);
  text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.45);
}

.follow-sub {
  color: var(--text-mid);
  font-size: 0.95rem;
  margin-top: -0.5rem;
}

.instagram-feed-slot {
  width: 100%;
  max-width: 380px;
}

/* Instagram profile button */
.instagram-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
  font-family: var(--font-display);
  font-size: 1.1rem;
  padding: 0.65rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(220, 39, 67, 0.35);
  transition: opacity 0.2s, transform 0.15s;
  margin-top: 0.5rem;
}

.instagram-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.instagram-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* =============================================
   COLORING PAGES
   ============================================= */
.coloring {
  text-align: center;
  padding-bottom: 3rem;
}

.coloring h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--hot-pink);
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.45);
}

.coloring-sub {
  color: var(--text-mid);
  font-size: 0.975rem;
  margin-bottom: 1.75rem;
}

.coloring-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 860px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .coloring-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.coloring-card {
  display: block;
  text-decoration: none;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  width: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.coloring-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.coloring-thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f8f8f8;
}

.coloring-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.3s ease;
}

.coloring-card:hover .coloring-thumb img {
  transform: scale(1.03);
}

.coloring-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--hot-pink);
  padding: 0.75rem 1rem;
  background: var(--white);
}

.coloring-label svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--hot-pink);
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
  padding: 1.25rem 1rem;
  font-size: 0.85rem;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
}
