:root {
  --obsidian: #050505;
  --silver: #c0c0c0;
}

body {
  background-color: var(--obsidian);
  color: white;
  font-family: "Inter", sans-serif;
  scroll-behavior: smooth;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
}
.glass {
  background: rgba(26, 26, 26, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-video-overlay {
  background: linear-gradient(to bottom, rgba(5, 5, 5, 0.4), rgba(5, 5, 5, 1));
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.tracking-widest li a {
  font-size: 15px;
}
.tracking-widest li a:hover {
  color: #d2d2d2;
}
.header-logo {
  max-width: 213px;
}
.hero-content {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
}
.hero-content h1{
    font-size: 3.5rem;
}
.custom-cta-btns a {
border-radius: 50px;
}
/* Add to your existing CSS */
#about img {
    aspect-ratio: 4/5;
    object-fit: cover;
    width: 100%;
}

#about .italic {
    font-family: "Cormorant Garamond", serif;
}
/* Services Grid Styling */
#services .grid {
    /* This creates the thin white lines between cards */
    gap: 1px; 
}

#services i {
    stroke-width: 1px; /* Keeps the Lucide icons looking elegant and thin */
}
#services .group h3 {
    font-family: "Cormorant Garamond", serif;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

#services .group {
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.05);
}

/* Optional: Add a subtle border glow on hover */
#services .group:hover {
    border-color: rgba(255,255,255,0.3);
    transition: border-color 0.5s ease;
}
#reviews .group:hover h4 {
    color: #c0c0c0; /* Subtle color change on the text */
}

#reviews a {
    cursor: none; /* If you add a custom cursor later, otherwise remove this line */
}

/* Smooth scaling for the video cards */
#reviews .aspect-video {
    background-color: #1a1a1a;
}
.section-bg{
    background-color: #292929;
}
.social-icons a{
    font-size: 1.8rem;
}
.copyright-text{
    font-size: 15px;
     color: #a6a6a6 !important;
} 
.piercing-section img{
    aspect-ratio: 1;
    object-fit: cover;
}
.piercing-section .inner-box{
    border: 5px double white;
    border-radius: 10px;
    overflow: hidden;
}
.gallery-section img{
    aspect-ratio: 1;
    object-fit: cover;
}
.gallery-section .inner-box{
    border: 5px double white;
    border-radius: 10px;
    overflow: hidden;
}
.tattoo-section img{
    aspect-ratio: 1;
    object-fit: cover;
}
.tattoo-section .inner-box{
    border: 5px double white;
    border-radius: 10px;
    overflow: hidden;
}
/* Wrapper */
.wk-float-wrap {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  gap: 14px;
}

/* =========================
   WhatsApp Hover Container
========================= */
.wk-wa-container {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

/* Info Box */
.wk-wa-box {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 260px;
  background: #16ad4e;
  color: #fff;
  padding: 14px;
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.wk-wa-box h4 {
    margin: 0 0 6px;
    font-size: 17px;
    border-bottom: 1px solid #ededed;
    padding-bottom: 6px;

}

.wk-wa-box p {
  margin: 0;
  font-size: 15px;
  color: black;
}

.wk-wa-box span {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  opacity: 0.9;
      color: black;
}

/* WhatsApp Button */
.wk-wa-btn {
  background: #25d366;
  color: #fff;
  height: 52px;
  width: 52px;
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
  transition: all 0.35s ease;
}

.wk-wa-btn i {
  font-size: 24px;
  min-width: 24px;
}

.wk-wa-text {
  white-space: nowrap;
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.2s ease;
  display: none;
}

/* Hover Effects */
.wk-wa-container:hover .wk-wa-btn {
  width: 170px;
  padding: 0 18px;
}

.wk-wa-container:hover .wk-wa-text {
 display: block;
}

.wk-wa-container:hover .wk-wa-text {
  opacity: 1;
}

.wk-wa-container:hover .wk-wa-box {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* =========================
   Call Button
========================= */
.wk-call-btn {
  width: 52px;
  height: 52px;
  background: #0b5ed7;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.wk-call-btn:hover {
  transform: scale(1.08);
}
@media (max-width: 768px) {
  #navbar {
    justify-content: center !important;
  }
}
.about-us-section span{
  font-size: 25px;
}
.review-video iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 9/16; /* Reel/Shorts ratio */
}

.review-video {
  max-width: 380px;
  margin: auto;
}