:root {
  --bg:#fbfaf8;
  --muted:#6b6b6b;
  --accent:#111;
  --card: floralwhite;
  --glass: rgba(255,255,255,0.6);
}

/* Base */
html, body {
  height:100%;
  margin:0;
  background: url("hallway.jpg") center/cover;
  font-family:Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}
/* background fixed */
.hero-wrapper {
  position: relative;
  background: url("thrift-shop.jpg") center/cover no-repeat;
  background-attachment: fixed; /* optional: creates parallax-like effect */
  color: #fff; /* makes text readable */
}

.hero-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35); /* transparent dark overlay */
  z-index: 0;
}

.hero-wrapper header,
.hero-wrapper .hero {
  position: relative;
  z-index: 1;
}

/* Header */
header {
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:22px 28px;
  max-width:1200px;
  margin:0 auto;
}

.brand {
  font-family:'Georgia', serif;
  font-weight:700;
  letter-spacing:1px;
  font-size:20px;
  color: floralwhite;
}

nav {
  display:flex;
  gap:18px;
  align-items:center;
}

nav a {
  color:var(--card);
  text-decoration:none;
  font-weight:800;
  padding: 8px 14px;
}

/* Hover background for menu links */
nav a:hover {
  border:1px solid #9ef08a;
  border-radius:3px;
  background:linear-gradient(to right,#f8b9c4,hsl(52, 24%, 71%));
  padding:5px;
  width:fit-content;
}

/* NAV ITEM for icons */
.nav-item {
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:8px 14px;
}

/* Floating icon above link */
.hover-icon {
  position:absolute;
  bottom:-32px;
  right:-8px;
  width:26px;
  opacity:0;
  pointer-events:none;
  transform:translateY(-10px) rotate(-6deg);
  transition:all .35s ease;
  z-index:3;
  border-radius: 50%;
}

/* The little string */
.hover-icon::before {
  content:"";
  position:absolute;
  top:-18px;
  left:50%;
  width:2px;
  height:18px;
  background:rgba(0,0,0,0.55);
  transform:translateX(-50%);
  border-radius:1px;
}

/* Reveal icon on hover + bounce */
.nav-item:hover .hover-icon {
  opacity:1;
  transform:translateY(0) rotate(0deg);
  animation:swing .6s ease-in-out infinite;
}

@keyframes swing {
  0% {transform:translateY(0) rotate(-2deg);}
  50% {transform:translateY(2px) rotate(2deg);}
  100% {transform:translateY(0) rotate(-2deg);}
}

/* Animated title glow */
#main-title {
  color: floralwhite;
  font-weight:800;
  text-shadow:0 3px 2px seagreen;
  animation:tshdw 1s infinite;
}

@keyframes tshdw {
  0% {color:#efe1d8;text-shadow:0 3px 2px #5ff00b;}
  25% {text-shadow:0 3px 2px #1ad8df;}
  50% {text-shadow:0 3px 2px #baf713;}
  100% {color:hsl(72,77%,76%);text-shadow:0 3px 2px #e47d08;}
}
.caption h3 {
  color: #000;
  font-weight: 900;
  text-shadow: 0 3px 2px hwb(115 17% 21%);
}
.caption .muted-small {
  color: #128C7E;
}
#sty { color:oklab(86.13499999999999% -0.05575 0.13437); }

/* Hero */
.hero {
  max-width:1200px;
  margin:10px auto 40px;
  padding:24px;
}

.hero-title {
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  padding:8px 20px;
}

.hero-title h1 {
  font-size:56px;
  margin:0;
  line-height:1;
  color:var(--accent);
  letter-spacing:-1px;
}

.hero-title p {
  margin:0;
  color:var(--muted);
  font-size:20px;
}

/* Mannequin Grid */
.showroom {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:28px;
  align-items:end;
}

.panel {
  background:var(--card);
  border-radius:8px;
  overflow:hidden;
  box-shadow:0 6px 24px rgba(18,18,18,0.06);
  position:relative;
  min-height:520px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-end;
  padding:18px;
}

.scene {
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  filter:contrast(0.98) saturate(0.98);
  z-index:0;
}

.panel-content {
  position:relative;
  z-index:2;
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
}

/* Mannequin styling */
.mannequin-wrap {
  width:100%;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  height:420px;
  perspective:1400px;
}

.mannequin {
  width:54%;
  max-width:260px;
  min-width:180px;
  height:100%;
  transform-style:preserve-3d;
  transition:transform 900ms cubic-bezier(.2,.9,.3,1), opacity 400ms ease;
  display:block;
  object-fit:contain;
  border-radius:6px;
  background:linear-gradient(#fff,#fbfbfb);
  box-shadow:0 8px 30px rgba(0,0,0,0.08);
}

.caption {
  margin-top:14px;
  text-align:center;
}

.caption h3 { margin:0;font-size:18px; }
.caption p { margin:4px 0 0;color:var(--muted);font-size:14px; }

.spin { transform:rotateY(90deg) scale(0.98); opacity:0.96; }
.spin-back { transform:rotateY(0deg) scale(1); opacity:1; }

/* CTA Button */
.cta { display:flex; justify-content:center; margin:28px 0; }
.btn {
  padding:14px 26px;
  border:2px solid var(--accent);
  background:linear-gradient(to right,#2b272b,#f52cc9);
  color:#fff;
  font-weight:800;
  border-radius:6px;
  cursor:pointer;
}
.btn:focus {
border-color: #5ff00b;
}
.btn:hover { background:linear-gradient(to left,#2b272b,#f52cc9); }

/* Categories Carousel */
.category-showcase { padding:50px 20px; text-align:center; }
.section-title { font-size:1.6rem; font-weight:700; margin-bottom:20px; color:#333; }

.category-slider {
  display:flex;
  gap:15px;
  overflow-x:auto;
  scroll-behavior:smooth;
  padding-bottom:10px;
}
.category-slider::-webkit-scrollbar { display:none; }

.cat-card {
  min-width:160px;
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 4px 12px rgba(0,0,0,0.08);
  text-align:center;
  cursor:pointer;
  transition:transform .3s ease;
}

.cat-card img {
  width:100%;
  height:180px;
  object-fit:cover;
  border-radius:50%;
}

.cat-card span {
  display:block;
  padding:10px;
  font-size:.9rem;
  font-weight:600;
  color:#444;
}

.cat-card:hover { transform:translateY(-5px); }

/* Footer */
.about-footer {
  background: linear-gradient(to top, hsla(159, 10%, 34%, 0.8), #39303d80);
  color: #fefefe;
  padding: 50px 20px 20px;
  font-family: 'Inter', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-section, .footer-links, .socials-section {
  flex: 1;
  min-width: 240px;
}

.about-section h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #ffde59;
}

.about-section p {
  color: #ddd;
  font-size: 14px;
  line-height: 1.6;
}

.footer-links h4, .socials-section h4 {
  color: #ffde59;
  margin-bottom: 12px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color .3s ease;
}

.footer-links a:hover {
  color: #ffde59;
}
.social-icons img {
  width: 30px;
  border-radius: 50%;
}
.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  transition: transform .3s ease, background .3s ease;
}

.social-icons a:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: #aaa;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 12px;
}


.to-top {
  position:fixed;
  right:18px;
  bottom:20px;
  background:var(--accent);
  color:#fff;
  border-radius:50%;
  width:44px;
  height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  box-shadow:0 8px 24px rgba(0,0,0,0.12);
}

/* Responsive */
@media (max-width:1000px){
  .hero-title h1{font-size:44px}
  .showroom{grid-template-columns:1fr}
  .panel{min-height:420px}
}
@media (min-width:1600px){
  .hero-title h1{font-size:72px}
}

.map-block {
  margin-top: 20px;
  padding: 18px;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(12px);
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.map-title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
  color: #222;
}

.map-box {
  position: relative;
  width: 100%;
  height: 260px;
  border-radius: 10px;
  overflow: hidden;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Cute drop-shaped pin hovering above */
.map-pin {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 14px;
  height: 22px;
  background: red;
  border-radius: 50% 50% 50% 0;
  transform: translate(-50%, -60%) rotate(-45deg);
  animation: gentleFloat 1.9s ease-in-out infinite;
}

/* soft float animation */
@keyframes gentleFloat {
  0% { transform: translate(-50%, -60%) rotate(-45deg); }
  50% { transform: translate(-50%, -70%) rotate(-45deg); }
  100% { transform: translate(-50%, -60%) rotate(-45deg); }
}

.map-note {
  margin-top: 8px;
  font-size: 13px;
  color: #555;
  font-style: italic;
}


.cat-card-rotator{
  background:#fff;
  padding:16px;
  border-radius:12px;
  box-shadow:0 8px 20px rgba(0,0,0,0.05);
  text-align:center;
}

.cat-img-frame{
  width:130px;
  height:130px;
  margin:auto;
  border-radius:50%;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
}

.cat-img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:50%;
  transition:transform .7s ease;
}

.cat-img.zoom {
  transform:scale(1.18);
}

/* testmonials */
/* Testimonial card */
.contact-testimonial .testimonial-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  min-height: 200px;
  position: relative;
}

.testimonial {
  animation: fadeIn 0.6s ease forwards;
}

.testimonial-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(0,0,0,0.08);
  margin-bottom: 8px;
}

.testimonial-text {
  max-width: 260px;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: #333;
  font-style: italic;
  margin-bottom: 4px;
}

.testimonial-name {
  font-weight: 700;
  color: #111;
  font-size: 0.9rem;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.contact-title{
text-align: center;
font-size: 18px;
font-weight: 800;
color: hwb(342 27% 9%);
text-shadow: 0 3px 2px green;

}
.contact-badge {
text-align: center;
font-weight: 700;
color: #000;
margin-bottom: 60px;


}
.contact-badge:hover{
text-decoration: underline;
}
.feedback {
  background: linear-gradient(to left, #555, powderblue);
  border-radius: 5px;
  height: 120px;
}
#feedId,#btnn {
  margin-bottom: 100px;
  margin-left: 20px;
}
#feedId {
  width: 60%;
  height: 20%;
  padding: 5px 10px;
  border-radius: 4px;
  border: 0;

}
#btnn {
  width: 50px;
  background: linear-gradient(to right, #a6e93b,seagreen);
  padding: 5px 10px;
  text-align: center;
  font-weight: 700;
  border-radius: 4px;
  color: hsl(0, 4%, 5%);
  border: 0;
  cursor: pointer;
}
#btnn img {
  width: 20px;
  cursor: pointer;
  border-radius: 50%;
}
::placeholder {
  font-style: italic;
}
/* whatsapp card */
.whatsapp-card {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  max-width: 400px;
}

.contact-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.whatsapp-form {
  margin-top: 1rem;
  display: flex;
  gap: 10px;
}

.whatsapp-form input {
  flex: 1;
  padding: 10px;
  border-radius: 10px;
  border: none;
  outline: none;
}

.whatsapp-form button {
  background: #fff;
  color: #128C7E;
  border: none;
  padding: 10px 16px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.2s ease-in-out;
}

.whatsapp-form button:hover {
  background: #c9f5dc;
}
