@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* PinkÃ¢â‚¬â€œWhite Theme Tokens */
:root{
  --pink-900:#7a1045;
  --pink-700:#d61a7f;
  --pink-600:#ff2e88;
  --pink-500:#ff4fa3;
  --pink-400:#ff89c6;
  --pink-200:#ffd1e7;
  --ink:#111114;
  --muted:#64748b;
  --stroke:rgba(255, 99, 163, 0.25);
}

*{ margin:0; padding:0; box-sizing:border-box; font-family:'Poppins',sans-serif; }

body{
  color:var(--ink);
  background:
    radial-gradient(1200px 800px at 10% -10%, var(--pink-200) 0%, transparent 60%),
    linear-gradient(135deg, #ffffff 0%, #fff6fb 40%, #ffe8f5 70%, #ffffff 100%);
  background-attachment: fixed;
}

/* Header: light bar */
.header{
  position:fixed; top:0; left:0; width:100%; padding:16px 10%; z-index:100;
  background:#ffffffcc; backdrop-filter: blur(8px);
  display:flex; justify-content:space-between; align-items:center;
  border-bottom:1px solid var(--stroke);
}
.logo{ font-size:25px; color:var(--ink); text-decoration:none; font-weight:700; cursor:default; opacity:1; }
.navbar a{ font-size:18px; color:var(--ink); text-decoration:none; font-weight:600; margin-left:28px; transition:.2s; opacity:1; }
.navbar a:hover,.navbar a.active{ color:var(--pink-600); }

/* Home */
.home{ min-height:100vh; display:flex; align-items:center; padding:0 10%; position:relative; background: url("Harshita.jpg") no-repeat right center/cover; }
.hero-mobile{ display:none; }
.hero-mobile img{ width:100%; height:auto; display:block; border-radius:50%; }
/* If you want full-bleed background photo, keep this; else remove */
/* Optional hero background image: replace with your file or keep clean */
/* .home{ background: url("harshita-hero.jpg") no-repeat right center/cover; } */

.home-content{ max-width:600px; }
.home-content h1{ font-size:56px; font-weight:800; line-height:1.1; }
.home-content h3{ font-size:32px; font-weight:800; color:var(--ink); }
.home-content h3 span{ color:var(--pink-600); }
/* Force typed role text + cursor to white */
.home-content h3 .text{ color:#ffffff !important; }
.typed-cursor{ color: var(--pink-600) !important; }
.home-content h3:nth-of-type(2){ margin-bottom:22px; }
.home-content p{ font-size:16px; margin:16px 0 28px; color:#374151; }

/* Hero intro animations (like previous banner) */
.home-content h3:first-of-type{ opacity:0; animation: slideBottom 1s ease forwards; animation-delay:.4s; }
.home-content h1{ opacity:0; animation: slideRight 1s ease forwards; animation-delay:.6s; }
.home-content h3:nth-of-type(2){ opacity:0; animation: slideTop 1s ease forwards; animation-delay:.8s; }
.home-content p{ opacity:0; animation: slideLeft 1s ease forwards; animation-delay:1s; }
.home-content .btn-box{ opacity:0; animation: slideBottom 1s ease forwards; animation-delay:1.2s; }

/* Buttons */
.home-content .btn-box{ display:flex; justify-content:flex-start; gap:16px; width:auto; height:50px; }
.about .btn-box{ display:flex; gap:16px; height:48px; }
.btn-box a{
  position:relative; z-index:0; overflow:hidden; display:inline-flex; justify-content:center; align-items:center;
  min-width:150px; padding:0 20px; height:100%;
  background: linear-gradient(135deg, var(--pink-600), var(--pink-400));
  border:2px solid transparent; border-radius:20px; font-size:18px; color:#fff; text-decoration:none; font-weight:700; letter-spacing:.3px; transition:.25s;
}
/* animated fill overlay */
.btn-box a::before{ content:""; position:absolute; inset:0; background:rgba(255,255,255,.15); transform:scaleX(0); transform-origin:left; transition:transform .5s ease; }
.btn-box a:hover::before{ transform:scaleX(1); }
/* glow on hover (pink) */
.btn-box a:hover{ transform: translateY(-1px); box-shadow: 0 0 6px var(--pink-400), 0 0 16px var(--pink-400), 0 0 32px var(--pink-600), 0 0 64px var(--pink-600); }
/* outline button behavior */
.btn-box a:nth-child(2){ background:transparent; border-color:var(--pink-600); color:var(--pink-600); }
.btn-box a:nth-child(2):hover{ color:#fff; border-color:transparent; background: linear-gradient(135deg, var(--pink-600), var(--pink-400)); box-shadow: 0 0 6px var(--pink-400), 0 0 16px var(--pink-400), 0 0 32px var(--pink-600), 0 0 64px var(--pink-600); }

/* Social Icons */
.home-sci{ position:absolute; bottom:40px; display:flex; gap:12px; }
.home-sci a{
  position:relative; width:40px; height:40px; display:grid; place-items:center; border-radius:999px;
  background:#fff; border:1px solid var(--stroke); color:var(--pink-600); text-decoration:none;
  transition:.25s ease; box-shadow:0 6px 14px rgba(255,79,163,.2);
  opacity:0; animation: slideLeft 1s ease forwards; animation-delay: calc(.15s * var(--i, 1));
}
/* icon fill overlay */
.home-sci a::before{ content:""; position:absolute; inset:0; border-radius:inherit; background: linear-gradient(135deg, var(--pink-600), var(--pink-400)); transform:scaleX(0); transform-origin:left; transition:transform .4s ease; z-index:-1; }
.home-sci a:hover::before{ transform:scaleX(1); }
.home-sci a:hover{ transform: translateY(-2px); color:#fff; border-color:transparent; box-shadow: 0 0 6px var(--pink-400), 0 0 16px var(--pink-400), 0 0 32px var(--pink-600); }

/* About */
.about{ display:grid; grid-template-columns: repeat(2,1fr); align-items:center; gap:1.5rem; padding:2rem 10% 1.5rem; }
.about-img{ display:grid; place-items:center; }
.about-img img{
  max-width:520px; width:100%; height:auto;
  /* Remove rectangular box around transparent PNG */
  border:none; box-shadow:none; background:transparent;
  /* Make image truly circular and keep a soft glow */
  border-radius:50%;
  filter: drop-shadow(0 18px 36px rgba(255,47,136,.18));
}
.about-text h2{ font-size:60px; margin:0 0 6px 0; }
.about-text h2 span{ color:var(--pink-600); }
.about-text .about-role{ font-size:29px; font-weight:700; color:var(--ink); line-height:1.7; margin:10px 0 12px; display:inline-block; }
.about-text p{ color:#374151; font-size:18px; line-height:1.6; margin:0 0 1.6rem; }
.btn-box1 a{
  display:inline-flex; justify-content:center; align-items:center; width:200px; height:48px;
  background: linear-gradient(135deg, var(--pink-600), var(--pink-400)); border:2px solid transparent; border-radius:20px;
  font-size:18px; color:#fff; text-decoration:none; font-weight:700; letter-spacing:.3px; transition:.25s;
}
.btn-box1 a:hover{ box-shadow:0 10px 26px rgba(255,47,136,.25); transform: translateY(-1px); }

/* Containers & headings */
.container{ padding:60px 10%; }
.sub-title{ text-align:center; font-size:48px; padding-bottom:28px; }
.sub-title span{ color:var(--pink-600); }

/* Skills */
.skills{ margin-top:8px; }
.skills .container{ padding-top:10px; padding-bottom:30px; }
.skills-group{ margin-bottom: 28px; }
.sub-title.small{ font-size: 28px; padding-bottom: 16px; }
.skills .skills-grid{ display:grid; grid-template-columns: repeat(5, minmax(140px,1fr)); gap:36px 46px; justify-items:center; perspective:900px; }
.skill{ display:flex; flex-direction:column; align-items:center; gap:10px; transform: translate(var(--fromX,0), var(--fromY,0)) rotate(var(--fromR,0)); opacity:0; transition: transform .9s cubic-bezier(.2,.65,.2,1), opacity .6s ease; }
.skill.in{ transform: none; opacity:1; transition-delay: var(--delay,0ms); }
.skill .meteor{ width:95px; height:95px; border-radius:16px; display:grid; place-items:center; background: #ffffff; border:1px solid rgba(0,0,0,.08); box-shadow: inset 0 6px 12px rgba(0,0,0,0.05), inset 0 -6px 12px rgba(0,0,0,0.08), 0 6px 18px rgba(0,0,0,0.12); transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease; }
.skill:hover .meteor{ box-shadow: inset 0 6px 12px rgba(0,0,0,0.06), inset 0 -6px 12px rgba(0,0,0,0.09), 0 12px 26px rgba(0,0,0,0.16); border-color: var(--pink-400); transform: scale(1.03); }
.skill .meteor img{ width:56%; height:56%; object-fit:contain; filter: drop-shadow(0 1px 1px rgba(0,0,0,0.15)); }
.skill .skill-name{ font-size:14px; font-weight:700; color:#fff; background: var(--pink-600); border:2px solid var(--pink-600); border-radius:999px; padding:6px 12px; line-height:1; }

/* Experience Cards */
.experience-cards{ margin-top:14px; }
.experience-cards .container{ padding-top:20px; padding-bottom:24px; }
.exp-grid{ display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:18px; }
.exp-card{ background:#fff; border:1px solid var(--stroke); border-radius:14px; padding:14px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; color:var(--ink); }
.exp-card:hover{ transform: translateY(-4px); box-shadow: 0 10px 24px rgba(255,47,136,.15); border-color: var(--pink-400); }
.exp-header{ display:grid; grid-template-columns:52px 1fr; gap:12px; align-items:center; margin-bottom:8px; }
.exp-logo{ width:52px; height:52px; border-radius:10px; background:#ffffff; border:1px solid rgba(0,0,0,0.08); display:grid; place-items:center; overflow:hidden; position:relative; }
.exp-logo img{ width:100%; height:100%; object-fit:contain; padding:6px; background:#ffffff; }
.exp-initial{ font-weight:800; color: var(--pink-600); }
.exp-title h3{ font-size:18px; margin:0 0 2px 0; }
.exp-title p{ font-size:13px; color:var(--muted); margin:0; }
.exp-card ul{ padding-left:18px; margin:8px 0 0 0; }
.exp-card li{ margin:4px 0; }

@media (max-width:700px){ .exp-grid{ grid-template-columns:1fr; } }

/* Projects */
.projects-showcase{ margin-top:16px; }
.projects-showcase .container{ padding-top:10px; }
.proj-filters{ display:flex; flex-wrap:wrap; gap:10px; justify-content:center; margin-bottom:24px; }
.proj-filter{ background:#fff; color:var(--pink-600); border:2px solid var(--pink-600); border-radius:999px; padding:8px 14px; font-weight:700; cursor:pointer; transition:.25s ease; }
.proj-filter:hover,.proj-filter.active{ background:var(--pink-600); color:#fff; }
.proj-grid{ display:grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap:18px; }
.proj-card{ color:var(--ink); text-decoration:none; border-radius:16px; overflow:hidden; background:#ffffff; border:1px solid var(--stroke); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.proj-card:hover{ transform: translateY(-4px); box-shadow: 0 10px 24px rgba(255,47,136,.15); border-color: var(--pink-400); }
.proj-thumb{ display:grid; place-items:center; height:140px; background: linear-gradient(135deg, rgba(255,137,198,0.18), rgba(255,137,198,0.06)); }
.proj-thumb img{ width:72px; height:72px; object-fit:contain; filter: drop-shadow(0 2px 2px rgba(0,0,0,0.25)); }
.proj-body{ padding:12px 14px 14px; }
.proj-body h3{ margin:0 0 6px 0; font-size:18px; }
.proj-body .tags{ margin:0; font-size:13px; color:var(--muted); }
.proj-card{ opacity:1; transform:none; }

/* Responsive tweaks */
@media (max-width:1200px){ .skills .skills-grid{ grid-template-columns: repeat(4, minmax(130px,1fr)); gap:32px 36px; } }
@media (max-width:900px){ .skills .skills-grid{ grid-template-columns: repeat(3, minmax(120px,1fr)); gap:28px 32px; } }
@media (max-width:600px){ .skills .skills-grid{ grid-template-columns: repeat(2, minmax(110px,1fr)); gap:24px 28px; } .navbar{display:none;} }

/* Keyframes reused from original */
@keyframes slideRight{
  0%{ transform: translateX(-100px); opacity:0; }
  100%{ transform: translateX(0); opacity:1; }
}
@keyframes slideTop{
  0%{ transform: translateY(100px); opacity:0; }
  100%{ transform: translateY(0); opacity:1; }
}
@keyframes slideBottom{
  0%{ transform: translateY(-100px); opacity:0; }
  100%{ transform: translateY(0); opacity:1; }
}
@keyframes slideLeft{
  0%{ transform: translateX(100px); opacity:0; }
  100%{ transform: translateX(0); opacity:1; }

/* Slow rotating ring for avatar */
@keyframes spin-slow{
  to{ transform: rotate(360deg); }
}

}

/* Align home social icons below buttons */
.home .home-content .home-sci{ position:static; margin-top:12px; display:flex; gap:12px; }


/* Layout: About section */
.about{ display:grid; grid-template-columns: 320px 1fr; gap:24px; align-items:center; padding: 40px 10% 10px; }
.about-img img{ width:100%; height:auto; display:block; border-radius:16px; }

/* Tablet tweaks */
@media (max-width:1024px){
  .header{ padding:12px 6%; }
  .home{ padding:0 6%; background-position: right 20% center; }
  .home-content h1{ font-size:46px; }
  .home-content h3{ font-size:26px; }
  .home-content p{ font-size:15px; }
  .skills .container{ padding-left:6%; padding-right:6%; }
  .projects-showcase .container, .experience-cards .container{ padding-left:6%; padding-right:6%; }
  .about{ grid-template-columns: 280px 1fr; padding: 36px 6% 10px; }
}

/* Mobile tweaks */
@media (max-width:700px){
  /* Use round banner image above content; remove bg to avoid side gaps */
  .home{ min-height:auto; padding:92px 6% 40px; background:none; flex-direction: column; align-items: center; }
  .home::after{ display:none; }
  .hero-mobile{ display:flex; justify-content:center; margin:0 auto 16px; position:relative; }
  .hero-mobile .avatar{ position:relative; width:min(86vw, 420px); aspect-ratio:1/1; border-radius:50%; overflow:hidden; display:block; box-shadow: 0 6px 18px rgba(255,47,136,.15); background:transparent; border:2px solid #fff; }
  .hero-mobile .avatar::before,
  .hero-mobile .avatar::after{ content:none !important; }
  .hero-mobile img{ width:100%; height:100%; aspect-ratio:1/1; object-fit:cover; object-position: center 16%; border-radius:50%; display:block; box-shadow:none; content-visibility:auto; transform: scale(1.18); will-change: transform; }
  .home-content{ max-width:100%; width:100%; }
  .home-content h1{ font-size:36px; }
  .home-content h3{ font-size:22px; }
  .home-content p{ font-size:15px; }
  .home .home-content .btn-box{ flex-wrap:wrap; height:auto; }
  .home .home-content .btn-box a{ min-width:100%; height:48px; font-size:16px; border-radius:16px; }
  .home .home-content .home-sci{ margin-top:22px; }
  .about{ grid-template-columns:1fr; padding:30px 6% 10px; }
  .about .btn-box{ flex-wrap:wrap; height:auto; }
  .about .btn-box a{ min-width:100%; height:46px; font-size:16px; border-radius:16px; }
  .proj-thumb{ height:120px; }
}

/* Small phones */
@media (max-width:420px){
  .home-content h1{ font-size:32px; }
  .home-content h3{ font-size:20px; }
  .home .home-content .home-sci a{ width:36px; height:36px; }
}
/* Hero readability overlay and layout tweaks */
.home{ position:relative; }
.home::after{ content:""; position:absolute; inset:0; z-index:0; pointer-events:none; background: linear-gradient(90deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.72) 40%, rgba(255,255,255,0.0) 70%); }
.home-content{ position:relative; z-index:1; }

/* Tablet banner refinement */
@media (max-width:1024px){
  .home{ background-position: 80% center; }
  .home-content h1{ font-size:44px; }
  .home-content h3{ font-size:24px; }
}

/* Mobile banner refinement (keep desktop-like feel) */
@media (max-width:700px){
  /* legacy banner tweaks disabled; banner handled above */
  /* .home{ padding-top:90px; padding-bottom:44px; background-position:center top; } */
  /* .home::after{ background: linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.82) 35%, rgba(255,255,255,0.0) 80%); } */
  .home-content h1{ font-size:34px; line-height:1.15; }
  .home-content h3{ font-size:21px; }
  .home .home-content .btn-box{ gap:12px; height:auto; flex-wrap:wrap; }
  .home .home-content .btn-box a{ flex:1 1 48%; min-width:0; height:46px; font-size:16px; border-radius:16px; }
  .home .home-content .home-sci{ margin-top:22px; }
}

/* Very small phones */
@media (max-width:380px){
  .home-content h1{ font-size:30px; }
  .home .home-content .btn-box a{ flex-basis:100%; }
}
/* Mobile menu toggle */
.menu-toggle{ display:none; border:none; background:transparent; font-size:28px; color:var(--ink); cursor:pointer; line-height:1; }

@media (max-width:900px){
  .menu-toggle{ display:block; }
  .header{ gap:10px; }
  .header .logo{ flex:0 0 auto; }
  .header .navbar{ position:absolute; top:100%; right:10%; background:#fff; border:1px solid var(--stroke); border-radius:12px; padding:10px; display:none; flex-direction:column; gap:8px; z-index:200; box-shadow: 0 10px 24px rgba(255,47,136,.15); }
  .header .navbar a{ margin:0; padding:8px 10px; border-radius:8px; }
  .header .navbar a:hover{ background: rgba(255,137,198,0.12); }
}

@media (max-width:600px){
  .header .navbar{ right:6%; left:6%; }
}

/* Open state */
body.nav-open .header .navbar{ display:flex !important; }
/* Fix mobile right-side overflow and image scaling */
html, body{ max-width:100%; overflow-x:hidden; }
img, svg, video{ max-width:100%; height:auto; }

/* Improve mobile nav sizing + animation */
@media (max-width:900px){
  .header{ z-index:210; }
  .header .navbar{
    left:6%; right:6%;
    opacity:0; transform: translateY(-8px);
    pointer-events:none;
    transition: opacity .22s ease, transform .22s ease;
  }
  .header .navbar a{ font-weight:600; }
}

/* Open state + backdrop overlay */
body.nav-open{ overflow:hidden; }
body.nav-open::before{
  content:""; position:fixed; inset:0; z-index:150;
  background: rgba(17,17,20,0.28); backdrop-filter: blur(2px);
}
body.nav-open .header .navbar{ opacity:1; transform: translateY(0); pointer-events:auto; }

/* Extra text wrapping safety on small screens */
@media (max-width:700px){ .home-content p{ overflow-wrap:anywhere; } }


/* Force typed.js role to pink (override) */
.home .home-content h3 .text,
.home-content h3 .text{ color: var(--pink-600) !important; }
.typed-cursor{ color: var(--pink-600) !important; }

/* About image size fix on desktop */
@media (min-width:1025px){
  .about{ grid-template-columns: 520px 1fr; }
  .about-img img{ max-width:520px; border-radius:50%; }
}



/* Social Media Posts Gallery */
.smposts-gallery .container{ padding-top:10px; padding-bottom:24px; }
.smp-grid{ display:flex; gap:16px; overflow-x:auto; scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch; padding-bottom:4px; }
.smp-grid::-webkit-scrollbar{ display:none; }
.smp-grid{ -ms-overflow-style:none; scrollbar-width:none; }
.smp-item{  display:block; position:relative; overflow:hidden; border-radius:16px; background:#fff; border:1px solid var(--stroke); box-shadow: 0 10px 24px rgba(255,47,136,.08); flex:0 0 31%; scroll-snap-align:start; }
.smp-item img{ width:100%; height:100%; aspect-ratio: 4 / 5; object-fit: cover; transition: transform .25s ease; }
.smp-item:hover img{ transform: scale(1.03); }

@media (max-width:700px){
  .smp-grid{ display:flex; gap:16px; overflow-x:auto; scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch; padding-bottom:4px; }
.smp-grid::-webkit-scrollbar{ display:none; }
.smp-grid{ -ms-overflow-style:none; scrollbar-width:none; }
  .smp-item img{ width:100%; height:100%; aspect-ratio: 4 / 5; object-fit: cover; transition: transform .25s ease; }
}

/* Place SMP grid within projects container */
.projects-showcase #smp-grid{ margin-top:18px; }



/* Stories carousel: 22px radius + same slider behavior */
.stories-grid{ display:flex; gap:16px; overflow-x:auto; scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch; padding-bottom:4px; }
.stories-grid::-webkit-scrollbar{ display:none; }
.stories-item{ display:block; position:relative; overflow:hidden; border-radius:22px; background:#fff; border:1px solid var(--stroke); box-shadow: 0 10px 24px rgba(255,47,136,.08); flex:0 0 19%; scroll-snap-align:start; }
.stories-item img{ width:100%; height:100%; aspect-ratio: 9 / 16; object-fit: cover; transition: transform .25s ease; }




/* Coursole carousel: single image per view */
.coursole-grid{ display:flex; gap:16px; overflow-x:auto; scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch; padding-bottom:4px; }
.coursole-grid::-webkit-scrollbar{ display:none; }
.coursole-item{ display:block; position:relative; overflow:hidden; border-radius:16px; background:#fff; border:1px solid var(--stroke); box-shadow: 0 10px 24px rgba(255,47,136,.08); flex:0 0 100%; scroll-snap-align:start; }
.coursole-item img{ width:100%; height:100%; object-fit: cover; }
/* Thumbnail carousel (1 per view, 16:9) */
.thumbnail-grid{ display:flex; gap:16px; overflow-x:auto; scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch; padding-bottom:4px; }
.thumbnail-grid::-webkit-scrollbar{ display:none; }
.thumbnail-item{ display:block; position:relative; overflow:hidden; border-radius:16px; background:#fff; border:1px solid var(--stroke); box-shadow: 0 10px 24px rgba(255,47,136,.08); flex:0 0 100%; scroll-snap-align:start; }
.thumbnail-item img{ width:100%; height:100%; aspect-ratio: 16 / 9; object-fit: cover; transition: transform .25s ease; }
/* YouTube Banner carousel (1 per view, 16:9) */
.ytbanner-grid{ display:flex; gap:16px; overflow-x:auto; scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch; padding-bottom:4px; }
.ytbanner-grid::-webkit-scrollbar{ display:none; }
.ytbanner-item{ display:block; position:relative; overflow:hidden; border-radius:16px; background:#fff; border:1px solid var(--stroke); box-shadow: 0 10px 24px rgba(255,47,136,.08); flex:0 0 100%; scroll-snap-align:start; }
.ytbanner-item img{ width:100%; height:100%; aspect-ratio: 16 / 9; object-fit: cover; transition: transform .25s ease; }
/* Display Standee: 1 per view, tall */
.standee-grid{ display:flex; gap:16px; overflow-x:auto; scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch; padding-bottom:4px; }
.standee-grid::-webkit-scrollbar{ display:none; }
.standee-item{ display:block; position:relative; overflow:hidden; border-radius:22px; background:#fff; border:1px solid var(--stroke); box-shadow: 0 10px 24px rgba(255,47,136,.08); flex:0 0 19%; scroll-snap-align:start; }
.standee-item img{ width:100%; height:100%; aspect-ratio: 9 / 16; object-fit: cover; }

/* Brochure: 2-up static with captions */
.brochure-grid{ display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:16px; }
.brochure-item{ background:#fff; border:1px solid var(--stroke); border-radius:16px; overflow:visible; box-shadow: 0 10px 24px rgba(255,47,136,.08); display:flex; flex-direction:column; align-items:center; }
.brochure-item img{ width:100%; height:100%; aspect-ratio: 4 / 3; object-fit: cover; display:block; border-top-left-radius:16px; border-top-right-radius:16px; }
.brochure-item .caption{ display:block; text-align:center; font-weight:700; padding:8px 10px; color:var(--ink); }

/* Brochure captions styled like pink buttons (non-clickable) */
.brochure-item{ background:#fff; border:1px solid var(--stroke); border-radius:16px; overflow:visible; box-shadow: 0 10px 24px rgba(255,47,136,.08); display:flex; flex-direction:column; align-items:center; }
.brochure-item .caption{
  display:inline-block; margin:10px auto 12px; padding:8px 14px; line-height:1;
  background: linear-gradient(135deg, var(--pink-600), var(--pink-400));
  color:#fff; font-weight:700; border-radius:20px; border:2px solid transparent;
  cursor: default; user-select: none; text-transform:none; letter-spacing:.3px;
}

/* All-mix gallery */
.allmix-grid{ display:grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap:16px; }
.allmix-item{ position:relative; border-radius:16px; overflow:hidden; background:#fff; border:1px solid var(--stroke); box-shadow: 0 10px 24px rgba(255,47,136,.08); }
.allmix-item img{ width:100%; height:100%; aspect-ratio: 4 / 5; object-fit: cover; display:block; }

/* IG Managed (scoped, no JS dependencies) */
.ig-managed .container{ padding-top:10px; padding-bottom:24px; padding-left:6%; padding-right:6%; }
.ig-grid{ display:grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap:16px; }
.ig-card{ display:grid; grid-template-columns:62px 1fr; gap:12px; align-items:center; text-decoration:none; color:var(--ink); background:#fff; border:1px solid var(--stroke); border-radius:16px; padding:14px; transition:.2s ease; }
.ig-card:hover{ transform: translateY(-3px); box-shadow: 0 10px 24px rgba(255,47,136,.12); border-color: var(--pink-400); }
.ig-avatar{ width:62px; height:62px; border-radius:50%; display:grid; place-items:center; background: radial-gradient(circle at 30% 30%, #ff9ad2, #ff2e88); color:#fff; }
.ig-avatar i{ font-size:30px; filter: drop-shadow(0 2px 2px rgba(0,0,0,.25)); }
.ig-body{ display:flex; flex-direction:column; gap:6px; }
.ig-name{ margin:0; font-size:16px; line-height:1.2; overflow-wrap:anywhere; }
.ig-btn{ display:inline-block; font-weight:700; color:var(--pink-600); border:2px solid var(--pink-600); border-radius:999px; padding:6px 10px; font-size:12px; }
.ig-card:hover .ig-btn{ background:var(--pink-600); color:#fff; }

/* Contact */
.contact{ padding:70px 0; }
.contact .container{ padding-left:6%; padding-right:6%; }
.contact .sub-title{ margin-bottom:24px; }
.contact-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:18px; align-items:stretch; }
.contact-card{ background:#fff; border:1px solid var(--stroke); border-radius:16px; padding:20px; box-shadow: 0 10px 24px rgba(255,47,136,.08); height:100%; display:flex; flex-direction:column; }
.contact-card h3{ font-size:22px; margin-bottom:8px; }
.contact-card p{ color:#374151; margin-bottom:16px; }
.contact-card .btn-box{ margin-bottom:10px; }
.contact-list{ list-style:none; display:flex; flex-direction:column; gap:8px; margin-top:10px; }
.contact-list i{ color:var(--pink-600); margin-right:8px; vertical-align:middle; }
.contact-list a{ color:var(--ink); text-decoration:none; font-weight:600; }
.contact-list a:hover{ color:var(--pink-600); }

.contact-form{ background:#fff; border:1px solid var(--stroke); border-radius:16px; padding:20px; box-shadow: 0 10px 24px rgba(255,47,136,.08); display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:16px; height:100%; }
.contact-form .field{ display:flex; flex-direction:column; gap:6px; }
.contact-form .field.full{ grid-column: 1 / -1; }
.contact-form label{ font-weight:600; font-size:14px; color:#111827; }
.contact-form input,
.contact-form textarea{ width:100%; padding:12px 14px; border:1px solid var(--stroke); border-radius:12px; background:#fff; color:#111827; outline:none; transition:.2s; box-shadow: inset 0 0 0 rgba(0,0,0,0); }
.contact-form input:focus,
.contact-form textarea:focus{ border-color: var(--pink-500); box-shadow: 0 0 0 4px rgba(255,79,163,.12); }
.contact-form .actions{ grid-column: 1 / -1; display:flex; justify-content:flex-end; }
.btn-primary{ appearance:none; border:none; border-radius:12px; padding:12px 18px; font-weight:700; color:#fff; cursor:pointer; background: linear-gradient(135deg, var(--pink-600), var(--pink-400)); box-shadow: 0 8px 18px rgba(255,79,163,.25); transition:.25s; }
.btn-primary:hover{ transform: translateY(-1px); box-shadow: 0 0 6px var(--pink-400), 0 0 16px var(--pink-400), 0 0 32px var(--pink-600), 0 0 64px var(--pink-600); }
.form-note{ grid-column:1 / -1; font-size:12px; color:#6b7280; margin-top:-6px; }
.form-status{ grid-column:1 / -1; font-size:13px; margin-top:6px; }
.form-status.ok{ color:#059669; }
.form-status.err{ color:#dc2626; }

@media (max-width: 900px){
  .contact-grid{ grid-template-columns: 1fr; }
}

/* Media Showcase */
.media-showcase .container{ padding-top:10px; padding-bottom:24px; padding-left:6%; padding-right:6%; }
.media-showcase .sub-title.small{ text-align:left; padding:10px 0; font-size:24px; }
.reels-strip{ display:flex; gap:16px; overflow-x:auto; scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch; padding-bottom:4px; }
.reels-strip::-webkit-scrollbar{ display:none; }
.reel-item{ display:block; position:relative; overflow:hidden; border-radius:16px; background:#fff; border:1px solid var(--stroke); box-shadow: 0 10px 24px rgba(255,47,136,.08); flex:0 0 19%; scroll-snap-align:start; aspect-ratio: 9 / 16; }
.reel-item img{ width:100%; height:100%; object-fit:cover; }

.yt-strip{ display:flex; gap:16px; overflow-x:auto; scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch; padding-bottom:4px; }
.yt-strip::-webkit-scrollbar{ display:none; }
.yt-item{ flex:0 0 calc(50% - 8px); background:#fff; border:1px solid var(--stroke); border-radius:16px; overflow:hidden; scroll-snap-align:start; box-shadow: 0 10px 24px rgba(255,47,136,.08); }
.yt-item iframe{ width:100%; aspect-ratio: 16 / 9; display:block; border:0; }

@media (max-width: 900px){
  .reel-item{ flex-basis: 28%; }
  .yt-item{ flex-basis: 80%; }
}
@media (max-width: 600px){
  .reel-item{ flex-basis: 36%; }
  .yt-item{ flex-basis: 88%; }
}

.reel-item video{ width:100%; height:100%; object-fit:cover; display:block; }

.yt-item video{ width:100%; aspect-ratio:16/9; display:block; }

@media (max-width:700px){
  .contact-card .btn-box{ gap:12px; flex-wrap:wrap; height:auto; }
  .contact-card .btn-box a{ flex:1 1 48%; min-width:0; height:46px; border-radius:16px; }
  .contact-list{ margin-top:14px; }
}


@media (max-width:700px){
  .contact-card .btn-box{ gap:12px; flex-wrap:wrap; height:auto; }
  .contact-card .btn-box a{ flex:1 1 48%; min-width:0; height:46px; border-radius:16px; }
  .contact-list{ margin-top:14px; }
}

