:root {
  --pink-50: #fff1f6;
  --pink-100: #ffd7e5;
  --pink-200: #f9bed5;
  --pink-300: #f7a6c4;
  --pink-400: #ef89b0;
  --pink-500: #e46ca1;
  --gold-300: #f7e7a9;
  --gold-600: #d4af37;
  --ink: #1e1b1c;
  --muted: #6f6a6b;
  --white: #ffffff;
  --bg: #ffffff;
  --container: 1120px;

  --header-height: 220px;
  --header-height-shrink: 220px;
  --nav-overlap: 160px;
  --curve-depth: 38px;

  --shadow-soft: 0 4px 20px rgba(228, 108, 161, 0.18);
}

/* Base reset */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  padding-left: calc(20px + env(safe-area-inset-left));
  padding-right: calc(20px + env(safe-area-inset-right));
}

.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;
}

.skip-link {
  position: absolute; left: 12px; top: -40px;
  background: var(--pink-400); color: #fff;
  padding: 8px 12px; border-radius: 999px;
  transition: top .2s ease;
  z-index: 1000;
}
.skip-link:focus { top: 12px; }

/* Header & Curved Nav */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-height);
}

.site-header .header-bg {
  position: absolute; inset: 0 0 auto 0;
  height: var(--header-height);
  pointer-events: none;
}

.nav-curve-svg { display: block; filter: none; }
.site-header::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px; background: rgba(0,0,0,0.06); }

.site-header .header-content {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  align-items: start; /* lift nav to top */
  gap: 0;
  height: calc(var(--header-height) - 10px);
  padding-top: 0;
  padding-left: 20px; /* standard container padding */
}
.header-bg::after { content: ""; position: absolute; inset: 0; pointer-events: none; mix-blend-mode: multiply; opacity: 0.25; background-image: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.15), rgba(255,255,255,0) 50%), repeating-linear-gradient(135deg, rgba(255,255,255,0.06) 0 2px, rgba(0,0,0,0.02) 2px 3px); }
/* Allow logo to sit outside container at far-left */


.logo { display: inline-block; line-height: 1; position: absolute; top: 5px; left: 15px; right: auto; margin: 0; margin-top: -40px; z-index: 3; }
.logo-svg { display: block; max-width: 400px; height: 200px; width: auto; overflow: visible; }
.logo-initial { display: none; }

/* Signature animations */
.flourish-path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.9);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 3px 8px rgba(228, 108, 161, 0.35));
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: draw 1.6s ease-out 0.3s forwards;
}

.shimmer { animation: shimmer 2.8s ease-in-out 0.6s infinite; }
.sparkle { animation: twinkle 2.6s ease-in-out 1.2s infinite; transform-origin: center; }

@keyframes draw {
  to { stroke-dashoffset: 0; }
}

@keyframes shimmer {
  0% { transform: translateX(0); opacity: 0; }
  20% { opacity: 1; }
  60% { opacity: 1; }
  100% { transform: translateX(1400px); opacity: 0; }
}

@keyframes twinkle {
  0%, 100% { transform: scale(0.8) rotate(0deg); opacity: 0.0; }
  30% { transform: scale(1.1) rotate(12deg); opacity: 1; }
  70% { transform: scale(0.9) rotate(-12deg); opacity: 0.4; }
}

@media (prefers-reduced-motion: reduce) {
  .flourish-path, .shimmer, .sparkle { animation: none !important; }
}

.primary-nav {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  padding-top: 0; margin-left: 0; z-index: 2;
}
.primary-nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: clamp(8px, 1.6vw, 22px);
  align-items: center;
}
.primary-nav a {
  display: inline-block;
  padding: 12.5px 16px;
  font-size: 16px;
  font-weight: 600;
  color: #3e0f23;
  border-radius: 999px;
  transition: background-color .2s ease, transform .2s ease;
  white-space: nowrap;
}
.primary-nav a:hover { background: rgba(255, 255, 255, 0.35); text-decoration: none; }
.primary-nav a { position: relative; }
.primary-nav a::after { content: ""; position: absolute; left: 50%; right: 50%; bottom: 6px; height: 2px; background: #8a305a; border-radius: 2px; transition: left .2s ease, right .2s ease; }
.primary-nav a:hover::after { left: 10%; right: 10%; }
.primary-nav a.cta { background: var(--white); color: var(--ink); box-shadow: var(--shadow-soft); }
.primary-nav a.cta:hover { transform: translateY(-1px); }

.nav-toggle { display: none; }

/* Hero */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-image:  url('/images/Banner.webp');
  background-size: cover; background-position: center top; background-repeat: no-repeat; background-attachment: scroll;
  color: #fff;
  margin-top: calc(var(--nav-overlap) * -1); /* pull hero up under curved nav */
}

.hero-top-overlay { 
  position: absolute; 
  inset: 0 0 auto 0; 
  height: 160px; 
  pointer-events: none; 
  background: linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0)); 
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  padding-left: calc(20px + env(safe-area-inset-left));
  padding-right: calc(20px + env(safe-area-inset-right));
}

.hero-text {
  max-width: 900px;
  padding: 80px 0;
}

.hero-title { 
  font-family: "Cormorant Garamond", serif; 
  font-size: clamp(48px, 8vw, 96px); 
  font-weight: 700;
  margin: 0 0 20px; 
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-subtitle { 
  font-size: clamp(18px, 3vw, 24px); 
  opacity: 0.95; 
  margin: 0 0 32px; 
  line-height: 1.4;
  font-weight: 300;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-cta {
  display: inline-block;
  margin-bottom: 40px;
  font-size: 18px;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.95);
  color: #2b0a18;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  backdrop-filter: blur(10px);
}

.hero-cta:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  text-decoration: none;
}

.hero-social {
  display: flex;
  gap: 16px;
  align-items: center;
}

.hero-social .social-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-social .social-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.hero-social .social-btn.youtube:hover {
  background: #ff0000;
  border-color: #ff0000;
}

.hero-social .social-btn.facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
}

.hero-social .social-btn.twitter:hover {
  background: #000000;
  border-color: #000000;
}

.btn { display: inline-block; padding: 12px 18px; border-radius: 999px; font-weight: 700; }
.btn.primary { background: var(--pink-300); color: #2b0a18; }
.btn.secondary { background: #ffffff; color: #2b0a18; }
.btn.tertiary { background: transparent; border: 2px solid var(--pink-300); color: #8a305a; }
.btn:hover { text-decoration: none; filter: brightness(1.03); }

.hero-bottom-curve { position: absolute; left: 0; right: 0; bottom: -1px; height: 220px; }

.more-news{
	margin-top: 6px;
}

/* iPad Portrait (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .hero {
    min-height: 75vh;
    background-position: center center;
  }
  
  .hero-text {
    max-width: 700px;
    padding: 100px 0 60px;
    text-align: left;
  }
  
  .hero-title {
    font-size: clamp(56px, 7vw, 72px);
    margin-bottom: 24px;
    line-height: 1.05;
  }
  
  .hero-subtitle {
    font-size: clamp(20px, 2.8vw, 26px);
    margin-bottom: 36px;
    line-height: 1.3;
  }
  
  .hero-cta {
    font-size: 18px;
    padding: 16px 36px;
    margin-bottom: 44px;
  }
  
  .hero-social {
    gap: 18px;
  }
  
  .hero-social .social-btn {
    width: 52px;
    height: 52px;
  }
  
  .hero-social .social-btn svg {
    width: 22px;
    height: 22px;
  }
  
  .hero-content {
    padding: 0 40px;
  }
}

/* iPad Landscape (1024px - 1366px) */
@media (min-width: 1024px) and (max-width: 1366px) and (orientation: landscape) {
  .hero {
    min-height: 85vh;
    background-position: center center;
  }
  
  .hero-text {
    max-width: 800px;
    padding: 120px 0 80px;
  }
  
  .hero-title {
    font-size: clamp(64px, 6vw, 84px);
    margin-bottom: 28px;
  }
  
  .hero-subtitle {
    font-size: clamp(22px, 2.5vw, 28px);
    margin-bottom: 40px;
  }
  
  .hero-cta {
    font-size: 20px;
    padding: 18px 40px;
    margin-bottom: 48px;
  }
  
  .hero-social {
    gap: 20px;
  }
  
  .hero-social .social-btn {
    width: 56px;
    height: 56px;
  }
  
  .hero-social .social-btn svg {
    width: 24px;
    height: 24px;
  }
  
  .hero-content {
    padding: 0 60px;
  }
}

/* iPad Pro 12.9" (1024px - 1366px) */
@media (min-width: 1024px) and (max-width: 1366px) and (min-height: 1024px) {
  .hero {
    min-height: 80vh;
  }
  
  .hero-text {
    padding: 140px 0 100px;
  }
  
  .hero-title {
    font-size: clamp(72px, 5.5vw, 88px);
    margin-bottom: 32px;
  }
  
  .hero-subtitle {
    font-size: clamp(24px, 2.2vw, 30px);
    margin-bottom: 44px;
  }
  
  .hero-cta {
    font-size: 22px;
    padding: 20px 44px;
    margin-bottom: 52px;
  }
  
  .hero-social .social-btn {
    width: 60px;
    height: 60px;
  }
  
  .hero-social .social-btn svg {
    width: 26px;
    height: 26px;
  }
}

/* iPad Mini (768px - 1024px) với chiều cao nhỏ hơn */
@media (min-width: 768px) and (max-width: 1024px) and (max-height: 1024px) and (orientation: landscape) {
  .hero {
    min-height: 90vh;
  }
  
  .hero-text {
    padding: 80px 0 60px;
  }
  
  .hero-title {
    font-size: clamp(48px, 5vw, 64px);
    margin-bottom: 20px;
  }
  
  .hero-subtitle {
    font-size: clamp(18px, 2.2vw, 22px);
    margin-bottom: 28px;
  }
  
  .hero-cta {
    font-size: 16px;
    padding: 14px 32px;
    margin-bottom: 36px;
  }
  
  .hero-social .social-btn {
    width: 48px;
    height: 48px;
  }
  
  .hero-social .social-btn svg {
    width: 20px;
    height: 20px;
  }
}

/* Touch-friendly adjustments for iPad */
@media (min-width: 768px) and (max-width: 1366px) {
  .hero-cta {
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
  }
  
  .hero-social .social-btn {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  
  .hero-social .social-btn:active {
    transform: scale(0.95);
  }
  
  .hero-cta:active {
    transform: scale(0.98);
  }
}

@media (max-width: 769px) {
  .hero {
    background-position: right;
    background-size: cover;
    background-image: url('/images/BannerM.webp');
    margin-top: -90px;
    min-height: 80vh;
  }
  
  .hero-text {
    padding: 60px 0 40px;
    text-align: center;
  }
  
  .hero-title {
    font-size: clamp(36px, 12vw, 64px);
    margin-bottom: 16px;
  }
  
  .hero-subtitle {
    font-size: clamp(16px, 4vw, 20px);
    margin-bottom: 24px;
  }
  
  .hero-cta {
    font-size: 16px;
    padding: 14px 28px;
    margin-bottom: 32px;
  }
  
  .hero-social {
    justify-content: center;
    gap: 12px;
  }
  
  .hero-social .social-btn {
    width: 44px;
    height: 44px;
  }
  
  .hero-social .social-btn svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 769px) {
  .hero-text {
    padding: 40px 0 30px;
  }
  
  .hero-title {
    font-size: clamp(28px, 10vw, 48px);
  }
  
  .hero-subtitle {
    font-size: clamp(14px, 3.5vw, 18px);
  }
  
  .hero-cta {
    font-size: 15px;
    padding: 12px 24px;
  }
  
  .hero-social .social-btn {
    width: 40px;
    height: 40px;
  }
  
  .hero-social .social-btn svg {
    width: 16px;
    height: 16px;
  }
}

/* News section */
.news-section { padding: 0px 0 80px; }
.news-section h2 { font-family: "Cormorant Garamond", serif; font-size: clamp(24px, 4vw, 40px); margin: 0 0 24px; }
.news-list { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
.news-card { grid-column: span 12; border: 1px solid #f2e0e8; border-radius: 16px; padding: 18px; box-shadow: 0 6px 24px rgba(0,0,0,0.04); background: #fff; transition: transform .2s ease; }
.news-card.with-thumb { display: grid; grid-template-columns: 120px 1fr; gap: 14px; }
.news-thumb { width: 120px; height: 90px; border-radius: 10px; object-fit: cover; background: #f6f0f3; }
.news-card:hover { transform: translateY(-2px); }
.news-card h3 { margin: 0 0 8px; font-size: 20px; }
.news-meta { color: var(--muted); font-size: 14px; margin-bottom: 8px; }
.news-excerpt { margin: 0; color: #2f2a2b; }
.news-tags { margin-top: 10px; display: flex; gap: 8px; flex-wrap: wrap; }
.tag { font-size: 12px; background: var(--pink-50); color: #8a305a; padding: 4px 10px; border-radius: 999px; border: 1px solid #f0d0de; }

.site-footer { padding: 48px 0; background: #faf7f9; color: #4a4144; }


/* Performance dates */
.perf-section { padding: 20px 0 80px; }
.perf-section h2 { font-family: "Cormorant Garamond", serif; font-size: clamp(24px, 4vw, 40px); margin: 0 0 16px; }
.perf-list { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.perf-card { grid-column: span 12; display: grid; grid-template-columns: 120px 1fr auto; gap: 16px; align-items: center; padding: 14px 16px; border: 1px solid #f2e0e8; border-radius: 14px; background: #fff; box-shadow: 0 4px 22px rgba(0,0,0,0.04); }
.perf-date { text-align: center; }
.perf-date .month { display: block; font-weight: 800; color: #7a244d; }
.perf-date .day { display: block; font-size: 28px; font-weight: 800; color: #3a2a30; line-height: 1; }
.perf-details .name { margin: 0 0 4px; font-weight: 700; font-size: 18px; }
.perf-details .venue { margin: 0; color: #6b5a60; }
.perf-cta { display: flex; gap: 10px; }
.perf-cta .btn { padding: 8px 12px; }
.perf-note { color: #7b6b72; font-size: 14px; margin-top: 12px; }

@media (max-width: 769px) {
  .perf-card { grid-template-columns: 1fr; text-align: center; }
  .perf-cta { justify-content: center; }
	.hero-bottom-curve { position: absolute; left: 0; right: 0; bottom: -1px; height: 128px; }
	#news {padding: 56px 15px 80px 15px}
	#performances {padding: 20px 15px 80px}
	.perf-date .day {font-size: 50px}
	.news-heading, #perf-heading, #about-heading {font-size: 40px; margin-bottom: 20px; line-height: 1}
	.primary-nav {z-index: 999999}
}

/* Enhanced footer */
.site-footer {
  background: linear-gradient(180deg, #fff7fb 0%, #fdeaf2 100%);
  border-top: 1px solid #f2d5e3;
}
.site-footer .container {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 28px; row-gap: 24px; align-items: start;
}
.footer-brand { grid-column: span 4; }
.footer-brand .logo-mini { max-width: 220px; display: block; margin-bottom: 12px; }
.footer-brand p { margin: 6px 0 0; line-height: 1.7; }
.footer-nav { grid-column: span 4; display: grid; grid-template-columns: repeat(2, minmax(120px, 1fr)); gap: 16px; }
.footer-nav h4 { margin: 0 0 8px; font-size: 14px; color: #7a244d; }
.footer-nav a { color: #6a2a47; font-weight: 600; opacity: 0.9; line-height: 1.9; display: inline-block; padding: 2px 0; }
.footer-nav a:hover { opacity: 1; text-decoration: none; }
.footer-social { grid-column: span 4; display: flex; gap: 12px; justify-content: flex-end; align-items: center; }
.social-btn { width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; background: #ffffffb8; border: 1px solid #f0d0de; transition: transform .15s ease; }
.social-btn:hover { transform: translateY(-1px); }
.footer-bottom { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; border-top: 1px dashed #f0d0de; padding-top: 16px; margin-top: 14px; font-size: 13px; color: #6c5b61; }
.newsletter { grid-column: 1 / -1; display: flex; gap: 10px; align-items: center; }
.newsletter-input { flex: 1; min-width: 220px; padding: 12px 14px; border-radius: 999px; border: 1px solid #f0d0de; }
.newsletter-btn { white-space: nowrap; }

@media (max-width: 769px) {
  .site-footer .container { grid-template-columns: 1fr; gap: 22px; row-gap: 20px; }
  .footer-social { justify-content: flex-start; }
}

/* Sticky mobile CTA */
.sticky-cta { display: none; }
@media (max-width: 769px) {
  .sticky-cta { position: sticky; bottom: 0; left: 0; right: 0; display: block; background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #fff6fb 30%); padding: 10px 0 calc(10px + env(safe-area-inset-bottom)); border-top: 1px solid #f0d0de; z-index: 90; backdrop-filter: blur(8px); }
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }
  .sticky-cta .container { display: flex; justify-content: center; }
  .sticky-cta .btn { min-width: 220px; text-align: center; }
}

/* Tighten mobile card spacing */
@media (max-width: 769px) {
  .news-list { gap: 12px; }
  .news-card { padding: 14px; }
  .perf-list { gap: 12px; }
  .perf-card { padding: 12px; }
	.footer-brand p {  grid-column: span 0; text-align: start!important; width: 80vw!important}
}

/* Responsive nav */
@media (max-width: 900px) {
  :root { --header-height: 128px; --header-height-shrink: 92px; }
  .site-header .header-content { grid-template-columns: auto 1fr auto; column-gap: 12px; padding-left: 160px; align-items: start; }
  .site-header .header-content.container { padding-left: 85%; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; background: transparent; border: 0; border-radius: 8px; }
  .burger { width: 22px; height: 2px; background: #3e0f23; position: relative; display: inline-block; }
  .burger::before, .burger::after { content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: #3e0f23; transform-origin: center; transition: transform .2s ease, top .2s ease, opacity .2s ease; }
  .burger::before { top: -7px; }
  .burger::after { top: 7px; }
  .primary-nav { position: fixed; left: 0; right: 0; top: var(--header-height); background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); border-bottom: 1px solid #f0d0de; transform: translateY(-12px); opacity: 0; visibility: hidden; transition: opacity .2s ease, transform .2s ease, visibility .2s ease; max-height: calc(100vh - var(--header-height)); overflow-y: auto; padding-bottom: env(safe-area-inset-bottom); margin-left: 0; }
  .primary-nav ul { padding: 14px 20px; flex-direction: column; align-items: flex-start; }
  .site-header.open .primary-nav { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-header.open .burger { background: transparent; }
  .site-header.open .burger::before { top: 0; transform: rotate(45deg); }
  .site-header.open .burger::after { top: 0; transform: rotate(-45deg); }
  .logo { top: 8px; left: 12px; margin-top: 0 !important }
	.hero { min-height: 70vh !important}
  .logo-svg { max-width: min(260px, 60vw); height: 140px; width: auto; }
}

@media screen and (min-width: 700px) and (max-width: 900px) {
  .site-header .header-content.container { padding-left: 90%; }
}

/* Swap to initial-only logo when very narrow */
@media (max-width: 767px) {
  .logo-full { display: none; }
	.site-footer p { text-align: center; }
  .logo-initial { display: block; max-width: 220px; height: 120px; }
	/*.footer-nav { grid-column: span 2!important;}*/
	.footer-nav,
	.footer-social,
	.footer-brand { max-width: 22rem !important; }
	.primary-nav a.cta { box-shadow: none; }
			  .site-header {overflow: visible; }
			  .site-header.open {background-color: rgba(255, 255, 255, 0.95)}
}

/* Introduce Home */
.intro-section {
  /*padding: 3rem 1.5rem;*/
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.intro-title {
  font-size: 2rem;
  margin-top: 0px;
  margin-bottom: 1.5rem;
  color: #5a1831;
}

.intro-text {
  margin-bottom: 1rem;
  line-height: 1.6;
  font-size: 1rem;
  color: #333;
}

.sparkle {
  font-weight: 600;
  color: #b4376b;
}
.about-section h2 { font-family: "Cormorant Garamond", serif; font-size: clamp(24px, 4vw, 40px); margin: 0 0 24px; }
@media (min-width: 768px) {
  .intro-title {
    font-size: 2.5rem;
  }
  .intro-text {
    font-size: 1.1rem;
  }
}

.footer-nav {
  grid-column: span 4;
  display: grid;
  grid-auto-rows: 1fr;         
  gap: 16px;
}

.footer-nav > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.footer-nav a{
	font-size: 15px;
}

.instagram-feed {
  display: flex;
  flex-wrap: wrap;  
  justify-content: center;
  gap: 20px;     
  margin: 20px auto;
  max-width: 1200px;
}

.instagram-feed .instagram-media {
  flex: 1 1 300px;  
  max-width: 350px;   
  min-width: 280px;  
}


/* Shrink on scroll */

/* Focus styles */
:focus-visible { outline: 3px solid var(--pink-300); outline-offset: 2px; border-radius: 4px; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
