/* ShatterCraft Studio: brand layer (loads after style.css) */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600&display=swap");

:root {
  --scs-primary: #f39002;
  --scs-primary-deep: #c76807;
  --scs-gold: #d4af37;
  --scs-white: #ffffff;
  --scs-charcoal: #1a1a1a;
  --scs-warm-paper: #fdf8f3;
  --scs-gold-glow: rgba(212, 175, 55, 0.35);
}

body {
  font-family: "Outfit", "Roboto", sans-serif;
  color: var(--scs-charcoal);
  background-color: var(--scs-white);
  -webkit-font-smoothing: antialiased;
}

.btn {
  font-family: "Outfit", "Montserrat", sans-serif;
  letter-spacing: 0.04em;
}

.heading {
  font-family: "Cormorant Garamond", "Montserrat", serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* Navigation */
.navbar {
  background-color: rgba(253, 248, 243, 0.92) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 26, 26, 0.06);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar .navbar-nav .nav-link {
  color: var(--scs-charcoal);
}

.navbar .navbar-nav .nav-link.first-child {
  color: var(--scs-charcoal) !important;
}

.sidemenu_btn span {
  background: var(--scs-charcoal);
}

.navbar-fixed-top.scrolled {
  box-shadow: 0 12px 40px -18px rgba(26, 26, 26, 0.18);
}

/* Navbar logo: soft gold lift — shadows follow the PNG shape (no boxes, bezels, or mats) */
.navbar .navbar-brand {
  display: inline-block;
}

.navbar .navbar-brand img {
  display: block;
  transition: filter 0.35s ease;
  filter:
    drop-shadow(0 2px 5px rgba(26, 26, 26, 0.1))
    drop-shadow(0 0 0.5px rgba(212, 175, 55, 0.45))
    drop-shadow(0 0 22px rgba(212, 175, 55, 0.12));
}

.navbar .navbar-brand:hover img,
.navbar .navbar-brand:focus-visible img {
  filter:
    drop-shadow(0 5px 14px rgba(26, 26, 26, 0.12))
    drop-shadow(0 0 0.5px rgba(255, 236, 179, 0.65))
    drop-shadow(0 0 34px rgba(243, 144, 2, 0.2));
}

.navbar .navbar-brand:focus-visible {
  outline: 2px solid var(--scs-gold);
  outline-offset: 6px;
  border-radius: 999px;
}

@media (prefers-reduced-motion: reduce) {
  .navbar .navbar-brand img {
    transition: none;
  }
}

.navbar .social-icons ul li a {
  color: var(--scs-charcoal);
}

/* Modern Instagram icon treatment */
a.instagram-hover {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

a.instagram-hover i {
  font-size: 19px;
}

a.instagram-hover::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, #feda75 0%, #fa7e1e 28%, #d62976 58%, #962fbf 78%, #4f5bd5 100%);
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: -1;
}

a.instagram-hover::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(214, 41, 118, 0.35) 0%, rgba(79, 91, 213, 0.2) 45%, transparent 72%);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.35s ease, transform 0.35s ease;
  z-index: -2;
}

a.instagram-hover:hover,
a.instagram-hover:focus-visible {
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px -14px rgba(150, 47, 191, 0.85), 0 8px 18px -14px rgba(214, 41, 118, 0.95);
}

a.instagram-hover:hover::before,
a.instagram-hover:focus-visible::before {
  opacity: 1;
  transform: scale(1);
}

a.instagram-hover:hover::after,
a.instagram-hover:focus-visible::after {
  opacity: 1;
  transform: scale(1);
}

a.instagram-hover:focus-visible {
  outline: 2px solid rgba(214, 41, 118, 0.7);
  outline-offset: 3px;
}

/* Side panel: warm luxury gradient */
.side-menu {
  background: linear-gradient(
    165deg,
    #1a1410 0%,
    var(--scs-primary-deep) 42%,
    var(--scs-primary) 100%
  ) !important;
}

#close_side_menu {
  background-color: rgba(26, 26, 26, 0.55);
}

/* Hero */
.about-section {
  background: linear-gradient(
    180deg,
    var(--scs-warm-paper) 0%,
    var(--scs-white) 55%
  );
}

.caption .heading,
.about-section .caption .text {
  color: var(--scs-charcoal);
}

.caption .heading {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1.05;
}

.caption .heading::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin-top: 1.25rem;
  background: linear-gradient(90deg, var(--scs-gold), var(--scs-primary));
  border-radius: 2px;
}

/* Primary CTAs: deep fill reads stronger for commerce */
.btn.btn-black {
  border-color: var(--scs-charcoal);
  color: var(--scs-charcoal);
}

.btn.btn-hvr-pink:hover,
.btn.btn-hvr-pink:focus {
  border-color: var(--scs-primary);
  color: var(--scs-white);
}

.btn.btn-hvr-pink .btn-hvr-pink {
  background: linear-gradient(135deg, var(--scs-primary-deep), var(--scs-primary));
  border-color: transparent;
}

.btn-hvr-effect {
  background: linear-gradient(135deg, var(--scs-primary-deep), var(--scs-primary));
  border-color: transparent;
}

/* Portfolio overlay: faint warm tint */
.cbp-caption-zoom .cbp-caption-activeWrap {
  background: rgba(253, 248, 243, 0.92);
}

.cbp-l-grid-mosaic-flat .cbp-caption-activeWrap p,
.cbp-l-grid-mosaic-flat .cbp-l-caption-title {
  color: var(--scs-charcoal);
}

.cbp-l-grid-mosaic-flat .work-icon {
  border: 1px solid var(--scs-primary);
  background: linear-gradient(145deg, var(--scs-primary-deep), var(--scs-primary));
  box-shadow: 0 8px 24px rgba(199, 104, 7, 0.35);
}

.cbp-l-grid-mosaic-flat .cbp-l-caption-title::after {
  background: linear-gradient(90deg, var(--scs-gold), var(--scs-primary)) !important;
}

/* Stats */
.counter-section .count-title,
.counter-section .count-text {
  color: var(--scs-charcoal);
}

.counter-section .num_counter i {
  color: var(--scs-primary-deep);
}

/* Testimonials */
.testimonial-section .heading,
.testimonial-section .testimonial-text i {
  color: var(--scs-charcoal);
}

.testimonial-section .testimonial-text i {
  color: var(--scs-gold);
  opacity: 0.85;
}

/* Contact */
.contact-section .address-section .subheading,
.contact-section .address-section h5 {
  color: var(--scs-primary-deep);
}

.contact-section .address-section .subheading {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

.contact-section .contact-address-region {
  margin-bottom: 1.5rem;
}

.contact-section .address-section .media-body a {
  color: inherit;
}

.contact-section .address-section .media-body a:hover {
  color: var(--scs-primary);
}

.contact-section .form-section .form-control:focus {
  border-color: rgba(243, 144, 2, 0.55);
  box-shadow: 0 0 0 3px rgba(243, 144, 2, 0.12);
}

/* Map: warm monochrome */
.map {
  filter: grayscale(100%) sepia(0.12) contrast(1.05);
}

/* Editorial block before footer */
.studio-closing-statement {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  background:
    radial-gradient(ellipse 120% 80% at 50% 0%, rgba(243, 144, 2, 0.06) 0%, transparent 55%),
    linear-gradient(180deg, #faf7f4 0%, var(--scs-warm-paper) 45%, #f3f0ec 100%);
  border-top: 1px solid rgba(26, 26, 26, 0.06);
}

.studio-closing-statement__card {
  position: relative;
  margin: 0 auto;
  max-width: 42rem;
  padding: clamp(2rem, 5vw, 3rem) clamp(1.75rem, 4vw, 2.75rem) clamp(2rem, 5vw, 3rem) clamp(2rem, 5vw, 2.85rem);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 16px;
  border: 1px solid rgba(26, 26, 26, 0.07);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 20px 50px -24px rgba(26, 26, 26, 0.12),
    0 8px 24px -16px rgba(199, 104, 7, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.studio-closing-statement__card::before {
  content: "";
  position: absolute;
  left: 1.15rem;
  top: 1.75rem;
  bottom: 1.75rem;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--scs-gold), var(--scs-primary));
  opacity: 0.95;
}

.studio-closing-statement__eyebrow {
  font-family: "Outfit", "Roboto", sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--scs-primary-deep);
  margin: 0 0 1rem;
}

.studio-closing-statement__lead {
  font-family: "Cormorant Garamond", "Montserrat", serif;
  font-size: clamp(1.35rem, 2.8vw, 1.7rem);
  font-weight: 600;
  line-height: 1.45;
  color: var(--scs-charcoal);
  margin: 0 0 1.35rem;
  letter-spacing: -0.02em;
}

.studio-closing-statement__graf {
  font-family: "Outfit", "Roboto", sans-serif;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.82;
  color: rgba(26, 26, 26, 0.88);
  margin: 0 0 1.25rem;
  text-align: left;
  letter-spacing: 0.01em;
}

.studio-closing-statement__graf:last-of-type {
  margin-bottom: 0;
}

.studio-closing-statement__graf--note {
  margin-top: 0.35rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(26, 26, 26, 0.72);
}

@supports (text-wrap: pretty) {
  .studio-closing-statement__lead,
  .studio-closing-statement__graf {
    text-wrap: pretty;
  }
}

@media (min-width: 992px) {
  .studio-closing-statement__card {
    max-width: 44rem;
    padding: 3rem 3rem 3rem 3.1rem;
  }

  .studio-closing-statement__card::before {
    left: 1.35rem;
    top: 2rem;
    bottom: 2rem;
  }

  .studio-closing-statement__graf {
    font-size: 1.09375rem;
    line-height: 1.8;
  }
}

.scroll-top-arrow {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: none;
  text-align: center;
  line-height: 50px;
  font-size: 1.35rem;
  color: #fff;
  background: linear-gradient(145deg, var(--scs-primary-deep), var(--scs-primary));
  box-shadow: 0 12px 30px -14px rgba(26, 26, 26, 0.5), 0 8px 20px -14px rgba(199, 104, 7, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.35);
  z-index: 1100;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.scroll-top-arrow:hover {
  color: #fff;
  transform: translateY(-3px);
  filter: brightness(1.06);
  box-shadow: 0 18px 36px -16px rgba(26, 26, 26, 0.48), 0 10px 24px -16px rgba(199, 104, 7, 0.95);
}

.scroll-top-arrow:focus-visible {
  outline: 2px solid var(--scs-gold);
  outline-offset: 3px;
}

/* Footer */
footer {
  background: linear-gradient(180deg, #141210 0%, var(--scs-charcoal) 100%);
}

footer p a {
  color: var(--scs-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

footer p a:hover {
  color: #ffffff;
}

.whatsapp-quote-panel .subheading {
  color: var(--scs-primary-deep);
}

.whatsapp-quote-note {
  margin-bottom: 1.25rem;
}

.whatsapp-quote-note .fab.fa-whatsapp {
  margin-right: 0.35rem;
  color: var(--scs-primary-deep);
}

.footer-social-icons ul li a:hover {
  box-shadow: 0 0 0 1px var(--scs-gold-glow);
}

/* Loader */
.preloader {
  background: var(--scs-charcoal);
}

/* Scrollbar */
::-webkit-scrollbar-track {
  background: var(--scs-warm-paper);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--scs-primary-deep), var(--scs-primary));
}

::-webkit-scrollbar-thumb:hover {
  background: var(--scs-primary);
}

/* Responsive polish */
@media (max-width: 991.98px) {
  .navbar {
    height: 76px;
  }

  .navbar .container {
    display: flex;
    justify-content: flex-end;
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }

  .navbar-brand {
    margin-left: auto;
    margin-right: 0;
  }

  .navbar-brand img {
    max-height: 42px;
    width: auto;
  }

  .sidemenu_btn {
    top: 14px;
    left: 6px;
  }

  .navbar .social-icons {
    right: 84px;
    top: 22px;
  }

  .navbar .social-icons ul li a {
    width: 34px;
    height: 34px;
    line-height: 34px;
  }

  .navbar .social-icons ul li i,
  a.instagram-hover i {
    font-size: 17px !important;
  }

  .side-menu {
    width: 86%;
  }

  .about-section {
    height: auto;
    min-height: 0;
    padding-top: 7.2rem;
    padding-bottom: 3rem;
  }

  .about-section .caption {
    padding-top: 0;
  }

  .caption .heading {
    font-size: clamp(2rem, 8vw, 2.7rem);
    margin-bottom: 1.25rem;
  }

  .about-section .caption .text {
    font-size: 1rem;
    line-height: 1.75;
    padding-right: 0;
    text-align: left;
    margin-bottom: 1.5rem;
  }

  .about-button {
    margin-top: 0.75rem;
    margin-left: 0;
  }

  .about-section img {
    margin-left: 0;
    margin-top: 1.5rem;
  }

  .testimonial-section {
    padding: 4.5rem 0;
  }

  .testimonial-section .testimonial-text {
    position: static;
    left: auto;
    top: auto;
    margin-bottom: 1.25rem;
  }

  .testimonial-section .heading {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .testimonial-section .testimonial-carousel .name {
    padding-left: 0;
    margin-bottom: 0.75rem;
  }

  .testimonial-section .testimonial-carousel .item .text {
    padding-right: 0;
    font-size: 1rem;
  }

  .contact-section {
    padding: 4.5rem 0;
  }

  .contact-section .address-section {
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .contact-section .address-section .heading {
    font-size: clamp(2rem, 8vw, 2.6rem);
    margin-bottom: 1rem;
  }

  .whatsapp-quote-panel {
    margin-top: 1rem;
    padding: 1.4rem 1.2rem;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(26, 26, 26, 0.08);
    border-radius: 14px;
  }

  .whatsapp-quote-panel .about-button {
    margin-top: 1rem;
  }

  .whatsapp-quote-panel .btn.button {
    width: 100%;
    text-align: center;
  }

  .map {
    min-height: 320px;
  }

  .studio-closing-statement {
    padding: 3.5rem 0;
  }

  .studio-closing-statement__card {
    max-width: 100%;
    padding: 1.6rem 1.1rem 1.6rem 1.4rem;
    border-radius: 14px;
  }

  .studio-closing-statement__card::before {
    left: 0.7rem;
    top: 1.1rem;
    bottom: 1.1rem;
  }

  .studio-closing-statement__eyebrow,
  .studio-closing-statement__lead,
  .studio-closing-statement__graf {
    padding-left: 0.35rem;
  }

  .studio-closing-statement__lead {
    font-size: clamp(1.2rem, 6vw, 1.45rem);
    line-height: 1.45;
    margin-bottom: 1rem;
  }

  .studio-closing-statement__graf {
    font-size: 0.98rem;
    line-height: 1.72;
    margin-bottom: 0.95rem;
  }

  .studio-closing-statement__graf--note {
    margin-top: 0.25rem;
    padding-top: 0.9rem;
  }

  footer {
    padding: 4.2rem 0;
  }

  .footer-social-icons ul {
    text-align: center;
    margin-bottom: 1rem;
  }

  footer p {
    text-align: center;
    margin-top: 0 !important;
    line-height: 1.6;
  }
}

@media (max-width: 575.98px) {
  .navbar .social-icons {
    right: 76px;
  }

  .navbar .social-icons ul li a {
    width: 32px;
    height: 32px;
    line-height: 32px;
  }

  .scroll-top-arrow {
    width: 44px;
    height: 44px;
    line-height: 44px;
    font-size: 1.15rem;
    right: 0.9rem;
    bottom: 0.9rem;
  }
}
