@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

:root {
    --pink: #f9c4c4;
    --pink-light: #fde8e8;
    --pink-medium: #f5a8a8;
    --navy: #1a1f3a;
    --green-accent: #8ecfaa;
    --cream: #fef9f6;
    --text: #1a1f3a;
    --text-muted: #5a5f7a;
    --text-highlighted: #9fa5c7;
    --link-active: #a85f5f;
    --link-hover: #773535;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
}

/* ── NOISE TEXTURE ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
}

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 3rem;
    background: rgba(254, 249, 246, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(249, 196, 196, 0.3);
  }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }

  .nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--navy); }
  .nav-links a.active { color: var(--navy); border-bottom: 2px solid var(--pink-medium); padding-bottom: 2px; }

  .nav-socials {
    display: flex;
    gap: 1rem;
    align-items: center;
  }

  .nav-socials a {
    display: flex;
    align-items: center;
    color: var(--text-muted);
    transition: color 0.2s;
  }

  .nav-socials a:hover { color: var(--navy); }

  .nav-socials svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
  }

/* ── HERO ── */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;

}
.hero img {
    width: 520px;
    height: auto;
    margin: 5% 0% 0%;
}
.home {
  align-items: center;
  text-align: center;
  padding: 1.5rem 3rem;
  line-height: 3em;
}
a.home-link:link, a.home-link:visited { color: var(--link-active); }
a.home-link:hover { color: var(--link-hover); }
/* ── GALLERY ── */
section { padding: 3rem 3rem; max-width: 1200px; margin: 0 auto; }

.section-label { color: var(--pink-medium); font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 0.8rem; }
.section-title { font-family: 'DM Serif Display', serif; font-size: 2.5rem; color: var(--navy); margin-bottom: 1rem; }
.section-divider { width: 100%; height: 1px; background: linear-gradient(to right, var(--pink-light), transparent); margin-bottom: 3rem; }

.filter-buttons { margin-bottom: 3rem; display: flex; gap: 0.5rem; flex-wrap: wrap; }
.filter-btn {
    background: white; border: 1.5px solid var(--pink); border-radius: 999px;
    padding: 0.5rem 1.5rem; cursor: pointer; color: var(--text-muted); transition: 0.3s;
}
.filter-btn.active, .filter-btn:hover { background: var(--pink-light); color: var(--navy); border-color: var(--pink-medium); }

.gallery-grid {
  column-count: 3; 
  column-gap: 2rem;
  width: 100%;
}

.gallery-item {
  display: inline-block;
  width: 100%;
  margin-bottom: 2rem; 
  break-inside: avoid;
}
.gallery-item p{
  text-align: center;
  padding: 2% 0%;
}
.gallery-item img {
  width: 100%;
  height: auto; 
  display: block;
  border-radius: 50px;
}
.gallery-item.hidden {
  display: none;
}

/* ── MEDIA ── */
#media {
  margin-bottom: 5%;
}
.vid-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2rem;
}

.vid-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: white;
  border: 1.5px solid rgba(249,196,196,0.35);
  border-radius: 14px;
  padding: 1.2rem 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.vid-item:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 30px rgba(249,196,196,0.2);
}

.vid-item iframe {
  width: 525px;
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: 25px;
  margin-right: 2.5%;
}
.vid-item strong {
  font-size: 1.5em;
  line-height: 1.5em;
}



/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: white;
  padding: 4rem 3rem;
  margin: 0;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.footer-brand {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
  color: white;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink-medium);
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: white; }

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
}

.footer-socials a:hover {
  background: var(--pink-medium);
  color: white;
}

.footer-socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-bottom {
  max-width: 1100px;
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-highlighted);
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
