:root {
  --pink: #ff2d75;
  --yellow: #ffb800;
  --cyan: #00e5ff;
  --lime: #8cff00;
  --dark: #0f0f12;
  --dark-2: #17171c;
  --light: #f5f5f7;
  --grad: linear-gradient(135deg, var(--pink), var(--yellow), var(--cyan));
}

html { scroll-behavior: smooth; }

body {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--dark);
  color: var(--light);
}

h1, h2, h3, h4, .display-1, .display-2, .display-3, .display-4 {
  font-family: "Bangers", Impact, "Arial Black", sans-serif;
  letter-spacing: 1.5px;
}

.text-grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bg-dark-2 { background: var(--dark-2); }

/* Navbar */
.navbar {
  background: rgba(15, 15, 18, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid transparent;
  border-image: var(--grad) 1;
}
.navbar-brand img { height: 48px; width: auto; }
.navbar .nav-link {
  color: var(--light);
  font-weight: 600;
  position: relative;
  margin: 0 0.35rem;
}
.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--grad);
  transition: width 0.3s;
}
.navbar .nav-link:hover::after,
.navbar .nav-link.active::after { width: 100%; }
.navbar .nav-link.active { color: var(--yellow); }
.navbar-toggler { border-color: var(--pink); }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%23ff2d75' stroke-width='3' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Buttons */
.btn-grad {
  background: var(--grad);
  color: #111;
  font-weight: 700;
  border: none;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-grad:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 45, 117, 0.35);
  color: #111;
}
.btn-outline-light-grad {
  border: 2px solid var(--cyan);
  color: var(--cyan);
  border-radius: 50px;
  padding: 0.7rem 1.7rem;
  font-weight: 700;
}
.btn-outline-light-grad:hover { background: var(--cyan); color: #111; }

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 45, 117, 0.35), transparent 40%),
    radial-gradient(circle at 85% 30%, rgba(0, 229, 255, 0.3), transparent 40%),
    radial-gradient(circle at 50% 90%, rgba(255, 184, 0, 0.3), transparent 45%),
    var(--dark);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0 2px, transparent 2px 14px);
  pointer-events: none;
}
.hero h1 { font-size: clamp(2.6rem, 7vw, 5.5rem); line-height: 1.05; }
.hero .lead { font-size: clamp(1rem, 2vw, 1.3rem); color: #cfcfd6; }

.splat {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.85;
  animation: float 6s ease-in-out infinite;
}
.splat-1 { width: 90px; height: 90px; background: var(--pink); top: 15%; left: 8%; }
.splat-2 { width: 60px; height: 60px; background: var(--yellow); top: 70%; left: 15%; animation-delay: 1s; }
.splat-3 { width: 110px; height: 110px; background: var(--cyan); top: 25%; right: 10%; animation-delay: 2s; }
.splat-4 { width: 50px; height: 50px; background: var(--lime); bottom: 15%; right: 20%; animation-delay: 3s; }
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.08); }
}

/* Page header */
.page-header {
    padding: 8rem 0 4rem;
    margin-top: 3rem;

    background:
        radial-gradient(circle at 20% 50%, rgba(255, 45, 117, 0.3), transparent 45%),
        radial-gradient(circle at 80% 50%, rgba(0, 229, 255, 0.3), transparent 45%),
        linear-gradient(rgba(10, 10, 20, 0.65), rgba(10, 10, 20, 0.65)),
        url("../images/gallery/painting8.jpeg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    text-align: center;
}
.page-header h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
.breadcrumb { justify-content: center; }
.breadcrumb a { color: var(--cyan); text-decoration: none; }
.breadcrumb-item.active { color: #aaa; }
.breadcrumb-item + .breadcrumb-item::before { color: #666; }

/* Section */
section { padding: 5rem 0; }
.section-title { font-size: clamp(2rem, 4.5vw, 3.2rem); }
.section-sub { color: #a9a9b3; max-width: 640px; margin: 0 auto; }
.title-bar {
  width: 90px; height: 5px;
  background: var(--grad);
  border-radius: 3px;
  margin: 0.75rem auto 0;
}

/* Cards */
.card-dark {
  background: var(--dark-2);
  border: 1px solid #26262e;
  border-radius: 18px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  height: 100%;
}
.card-dark:hover {
  transform: translateY(-8px);
  border-color: var(--pink);
  box-shadow: 0 15px 40px rgba(255, 45, 117, 0.2);
}
.icon-box {
  width: 70px; height: 70px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 2rem;
  background: var(--grad);
  color: #111;
}
.card-dark p { color: #b5b5bf; }

/* Stats */
.stat h3 { font-size: 3rem; }
.stat p { color: #aaa; text-transform: uppercase; letter-spacing: 2px; font-size: 0.85rem; }

/* Gallery */
.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .overlay { opacity: 1; }
.overlay h5 { margin: 0; color: #fff; }
.overlay small { color: var(--yellow); }
.filter-btn {
  border: 2px solid #333;
  color: #ccc;
  background: transparent;
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
  font-weight: 600;
  margin: 0.25rem;
  transition: all 0.25s;
}
.filter-btn.active, .filter-btn:hover {
  border-color: var(--pink);
  color: #fff;
  background: rgba(255, 45, 117, 0.15);
}
.gallery-item.hide { display: none; }

/* Process steps */
.step-num {
  font-family: "Bangers", Impact, sans-serif;
  font-size: 3.5rem;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Testimonials */
.testimonial {
  background: var(--dark-2);
  border-left: 5px solid var(--yellow);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
}
.testimonial p { color: #cfcfd6; font-style: italic; }
.testimonial .name { color: var(--cyan); font-weight: 700; }

/* Forms */
.form-control, .form-select {
  background: #1e1e25;
  border: 1px solid #333;
  color: #fff;
  padding: 0.85rem 1rem;
  border-radius: 10px;
}
.form-control:focus, .form-select:focus {
  background: #1e1e25;
  color: #fff;
  border-color: var(--pink);
  box-shadow: 0 0 0 0.2rem rgba(255, 45, 117, 0.25);
}
.form-control::placeholder { color: #777; }
.contact-info i {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--grad);
  color: #111;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.map-wrap iframe {
  width: 100%; height: 100%; min-height: 320px;
  border: 0; border-radius: 16px;
  filter: grayscale(1) invert(0.9) contrast(0.9);
}

/* CTA */
.cta {
  background: var(--grad);
  color: #111;
  border-radius: 24px;
}
.cta h2 { color: #111; }
.cta .btn-dark { border-radius: 50px; padding: 0.75rem 2rem; font-weight: 700; }

/* Footer */
footer {
  background: #0a0a0c;
  border-top: 2px solid transparent;
  border-image: var(--grad) 1;
  padding: 4rem 0 1.5rem;
}
footer a { color: #aaa; text-decoration: none; transition: color 0.2s; }
footer a:hover { color: var(--yellow); }
footer h5 { color: #fff; }
.social a {
  width: 42px; height: 42px;
  display: inline-grid; place-items: center;
  border-radius: 50%;
  border: 1px solid #333;
  margin-right: 0.5rem;
}
.social a:hover { background: var(--grad); color: #111; border-color: transparent; }

/* Back to top / WhatsApp */
#backToTop {
  position: fixed;
  right: 1.25rem; bottom: 5.5rem;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--grad);
  color: #111;
  border: none;
  display: none;
  place-items: center;
  z-index: 999;
}
#backToTop.show { display: grid; }
.whatsapp-float {
  position: fixed;
  right: 1.25rem; bottom: 1.25rem;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid; place-items: center;
  font-size: 1.7rem;
  z-index: 999;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}
.whatsapp-float:hover { color: #fff; transform: scale(1.08); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* Responsive tweaks */
@media (max-width: 991.98px) {
  .navbar-collapse { padding: 1rem 0; }
  .navbar .nav-link { margin: 0.25rem 0; }
  .hero { min-height: 85vh; text-align: center; }
  .hero .btn { margin-bottom: 0.75rem; }
}
@media (max-width: 575.98px) {
  section { padding: 3.5rem 0; }
  .page-header { padding: 6.5rem 0 3rem; }
  .navbar-brand img { height: 40px; }
  .splat-3, .splat-4 { display: none; }
  .stat h3 { font-size: 2.3rem; }
}

body { overflow-x: hidden; }
.hero .badge { white-space: normal; line-height: 1.4; }
.hero .lead { overflow-wrap: anywhere; }
