/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Pirata One', cursive;
  background-color: #000;
  color: #eee;
  line-height: 1.6;
}


.logo img {
  height: 40px; /* adjust size as needed */
  width: auto;
  margin-right: 10px;
  vertical-align: middle;
}


h1, h2, h3, h4, h5, h6 {
  font-family: 'Pirata One', cursive;
}

a {
  color: #e50914;
  text-decoration: none;
}

a:hover {
  opacity: 0.8;
}

header {
  background: #000;
  padding: 20px 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  color: #fff;
}

nav a {
  margin-left: 20px;
  font-weight: bold;
}

.container {
  width: 95%;
  max-width: 1400px; /* stretched wider for big screens */
  margin: 0 auto;
}

/* === HERO SECTION IMPROVED === */

.hero {
  position: relative;
  background: url('images/bgggg.jpg') center/cover no-repeat;
  padding: 120px 0;
  color: #fff;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7); /* Dark overlay for text */
  z-index: 1;
}

.hero-flex {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 2; /* Content above overlay */
}

.hero-content {
  max-width: 600px;
}

.hero-title {
  font-family: 'Pirata One', cursive;
  font-size: 3.5rem;
  color: #fff;
  text-shadow: 0 0 10px #e50914, 0 0 20px #e50914;
}

.hero-subtitle, .hero-location {
  color: #ddd;
}

.spin-logo-3D {
  width: 200px;
  animation: spin 10s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}


.hero-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 60px;
}

.hero-content {
  max-width: 600px;
}

.hero-content h1 {
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.hero-content .hero-location {
  font-size: 1rem;
  color: #aaa;
  margin-bottom: 30px;
}

.hero-btn {
  display: inline-block;
  background: #e50914;
  color: #fff;
  padding: 14px 36px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.hero-btn:hover {
  background: #b00610;
}

.hero-socials {
  margin-top: 20px;
}

.hero-socials a {
  color: #e50914;
  font-weight: bold;
}

.hero-socials a:hover {
  text-decoration: underline;
}

.hero-logo img {
  max-width: 350px;
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .hero-flex {
    flex-direction: column;
    text-align: center;
  }
  .hero-logo {
    margin-top: 40px;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
}


.btn {
  display: inline-block;
  background: #e50914;
  color: #fff;
  padding: 12px 30px;
  border-radius: 4px;
  transition: background 0.3s;
}

.btn:hover {
  background: #b00610;
}

.about,
.services,
.gallery,
.contact {
  padding: 80px 0;
}

.services .service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.services .card {
  background: #222;
  border: 2px solid #333;
  padding: 30px;
  flex: 1 1 calc(33.333% - 20px);
  border-radius: 6px;
  transition: border-color 0.3s;
  min-width: 250px;
}

.services .card:hover {
  border-color: #e50914;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.gallery-grid img {
  width: 100%;
  display: block;
  border-radius: 6px;
}

footer {
  background: #000;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}

.artist-profile {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.artist-profile img {
  max-width: 400px;
  border-radius: 8px;
}

.artist-info h3 {
  color: #e50914;
  margin-bottom: 20px;
}

.artist-info p {
  max-width: 600px;
}

.contact {
  position: relative;
  background: url('images/contact-bg.jpg') center/cover no-repeat; /* your bg image here */
  padding: 100px 0;
  overflow: hidden;
}

.contact-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 1;
}

.contact-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.glitch-contact {
  font-family: 'Pirata One', cursive;
  font-size: 3rem;
  color: #e50914;
  position: relative;
}

.glitch-contact::before,
.glitch-contact::after {
  content: "Contact Us";
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  color: #fff;
  clip: rect(0, 900px, 0, 0);
}

.glitch-contact::before {
  animation: glitchTop 2s infinite linear alternate-reverse;
}

.glitch-contact::after {
  animation: glitchBottom 2s infinite linear alternate-reverse;
}

.contact-tagline {
  color: #aaa;
  margin: 10px 0 40px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 40px;
  color: #eee;
  text-align: left;
}

.glass-card a {
  color: #e50914;
  text-decoration: none;
}

.glass-card a:hover {
  text-decoration: underline;
}

.map iframe {
  border-radius: 10px;
  width: 100%;
}

@keyframes glitchTop {
  0% { clip: rect(0, 9999px, 0, 0); }
  10% { clip: rect(10px, 9999px, 50px, 0); transform: translate(-2px, -2px); }
  20% { clip: rect(60px, 9999px, 120px, 0); transform: translate(2px, 2px); }
  100% { clip: rect(0, 9999px, 0, 0); }
}

@keyframes glitchBottom {
  0% { clip: rect(0, 9999px, 0, 0); }
  10% { clip: rect(10px, 9999px, 50px, 0); transform: translate(2px, 2px); }
  20% { clip: rect(60px, 9999px, 120px, 0); transform: translate(-2px, -2px); }
  100% { clip: rect(0, 9999px, 0, 0); }
}

@media(max-width: 768px) {
  .glitch-contact {
    font-size: 2rem;
  }
}


.map {
  margin-top: 40px;
}
/* === SUPERCHARGED BOOKING PAGE === */
.booking {
  position: relative;
  background: #000;
  color: #eee;
  padding: 120px 20px;
  overflow: hidden;
}

.booking::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('images/ink-smoke.jpg') center/cover no-repeat;
  opacity: 0.1;
  z-index: 0;
  animation: smokeFlow 30s infinite linear alternate;
}

@keyframes smokeFlow {
  0% { background-position: 0 0; }
  100% { background-position: 100% 100%; }
}

.booking * {
  position: relative;
  z-index: 1;
}

.booking-title {
  font-family: 'Pirata One', cursive;
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 0 0 10px #e50914, 0 0 20px #e50914, 0 0 40px #e50914;
}

.booking-title.glitch::before,
.booking-title.glitch::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
}

.booking-title.glitch::before {
  left: 2px;
  text-shadow: -2px 0 #0ff;
  animation: glitch 2s infinite linear alternate-reverse;
}

.booking-title.glitch::after {
  left: -2px;
  text-shadow: -2px 0 #f0f;
  animation: glitch 3s infinite linear alternate-reverse;
}

@keyframes glitch {
  0% { clip: rect(0, 9999px, 0, 0); }
  5% { clip: rect(0, 9999px, 100%, 0); }
  10% { clip: rect(0, 9999px, 0, 0); }
  15% { clip: rect(0, 9999px, 100%, 0); }
  20% { clip: rect(0, 9999px, 0, 0); }
  100% { clip: rect(0, 9999px, 100%, 0); }
}

.booking-subtitle {
  text-align: center;
  margin-bottom: 40px;
  color: #bbb;
  font-size: 1.2rem;
}

.booking-form {
  max-width: 650px;
  margin: 0 auto;
  display: grid;
  gap: 25px;
  background: rgba(0, 0, 0, 0.5);
  padding: 40px;
  border: 2px solid #e50914;
  border-radius: 12px;
  box-shadow: 0 0 40px rgba(229, 9, 20, 0.4);
  backdrop-filter: blur(10px);
}

.booking-form input,
.booking-form textarea {
  padding: 16px 20px;
  border: 2px solid #333;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: #eee;
  font-size: 1rem;
  transition: all 0.3s;
}

.booking-form input:focus,
.booking-form textarea:focus {
  border-color: #e50914;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
  box-shadow: 0 0 10px #e50914;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: #999;
}

.booking-form .btn {
  background: #e50914;
  border: none;
  padding: 16px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 10px #e50914, 0 0 20px #e50914;
}

.booking-form .btn:hover {
  background: #b00610;
  transform: scale(1.05);
  box-shadow: 0 0 20px #e50914, 0 0 40px #e50914;
}


/* Fix subtitle color to be easier to read */
.booking-subtitle {
  color: #ddd;
}

/* Style upload image input nicely */
.upload-label {
  display: block;
  border: 2px dashed #e50914;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #bbb;
}

.upload-label span {
  display: block;
  margin-bottom: 10px;
}

.upload-label:hover {
  background: rgba(229, 9, 20, 0.1);
  border-color: #b00610;
}

.upload-label input[type="file"] {
  display: none;
}

/* Improve placeholder clarity for date/time fields */
.booking-form input::placeholder {
  color: #aaa;
}

.payment-info {
  max-width: 650px;
  margin: 50px auto 0;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid #e50914;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 0 20px rgba(229, 9, 20, 0.3);
}

.payment-info h3 {
  margin-bottom: 15px;
  color: #e50914;
  font-size: 1.5rem;
}

.payment-info p {
  margin-bottom: 15px;
  color: #ccc;
}

.payment-info ul {
  list-style: none;
  padding: 0;
}

.payment-info li {
  margin: 10px 0;
  color: #fff;
}

.payment-info strong {
  color: #0ff;
}


.payment-info {
  max-width: 600px;
  margin: 50px auto 0;
  background: #111;
  border: 2px solid #333;
  border-radius: 8px;
  padding: 30px;
  color: #eee;
}

.payment-info h3 {
  margin-bottom: 15px;
  color: #e50914;
}

.payment-info p {
  margin-bottom: 15px;
}

.payment-info ul {
  list-style: none;
  padding: 0;
}

.payment-info li {
  margin: 10px 0;
}


.payment-info {
  margin-top: 40px;
}

.payment-info ul {
  list-style: none;
  padding: 0;
}

.payment-info li {
  margin: 10px 0;
}

/* Responsive tweaks */
@media (max-width: 1024px) {
  .hero-text h2 {
    font-size: 3rem;
  }

  .hero-text p {
    font-size: 1.1rem;
  }

  .hero-logo img {
    max-width: 300px;
  }

  .services .card {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    text-align: center;
  }

  nav {
    margin-top: 10px;
  }

  nav a {
    margin: 10px;
    display: inline-block;
  }

  
  

  .services .service-cards {
    flex-direction: column;
  }

  .artist-profile {
    flex-direction: column;
    text-align: center;
  }

  .contact-grid {
    flex-direction: column;
  }

  .services .card {
    flex: 1 1 100%;
  }
}


/* Gallery Section */

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  color: #aaa;
  margin-bottom: 40px;
  font-size: 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease, opacity 0.4s ease;
  border-radius: 8px;
}

.gallery-item:hover img {
  transform: scale(1.05);
  opacity: 0.9;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  .gallery-item img {
    max-height: 400px;
    object-fit: cover;
  }
}


.social-icons {
  margin-top: 20px;
}

.social-icons a {
  color: #eee;
  margin-right: 15px;
  font-size: 1.5rem;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #e50914;
}


/* Modal Styles */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.8);
}

.modal-content {
  background: #111;
  color: #eee;
  margin: 10% auto;
  padding: 40px;
  border-radius: 8px;
  max-width: 500px;
  position: relative;
}

.modal-header {
  text-align: center;
  margin-bottom: 20px;
}

.modal-logo {
  max-width: 80px;
  margin-bottom: 10px;
}

.modal-title {
  font-size: 1.8rem;
  color: #e50914;
  margin: 0;
}


.modal-content h2 {
  text-align: center;
  margin-bottom: 20px;
}

.modal-row {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.modal-content input,
.modal-content textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  background: #222;
  border: none;
  border-radius: 4px;
  color: #eee;
}

.modal-content input::placeholder,
.modal-content textarea::placeholder {
  color: #aaa;
}

.modal-content label {
  display: inline-block;
  margin-right: 20px;
}

.modal-content .btn {
  display: inline-block;
  background: #e50914;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  border-radius: 4px;
}

.close {
  color: #eee;
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 28px;
  cursor: pointer;
}

.close:hover {
  color: #e50914;
}

@media (max-width: 600px) {
  .modal-row {
    flex-direction: column;
  }
}

.booking-form input[type="file"] {
  background: #222;
  color: #eee;
  padding: 10px;
  border-radius: 4px;
  border: none;
}






.footer {
  background: #000;
  color: #eee;
  padding: 60px 0 30px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-col {
  flex: 1;
  min-width: 220px;
}

.footer-logo {
  font-size: 1.8rem;
  color: #e50914;
  margin-bottom: 15px;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #fff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #eee;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #e50914;
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  margin: 0 0 10px;
}

.footer-socials {
  margin-top: 10px;
}

.footer-socials a {
  color: #eee;
  margin: 0 10px;
  transition: 0.3s;
}

.footer-socials a:hover {
  color: #e50914;
}


@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

.gallery {
  padding: 80px 0;
}

.gallery h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.gallery-grid img {
  width: 100%;
  height: 500px; /* adjust to match your first image’s height */
  object-fit: cover;
  display: block;
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}




















.horizontal-carousel {
  display: flex;
  flex-direction: column;
  gap: 30px;
  overflow: hidden;
  background: #111;
  padding: 40px 0;
}

.carousel-track {
  display: flex;
  width: fit-content;
  animation: scrollLeft 30s linear infinite;
}

.carousel-track img {
  width: 200px;
  height: 250px;
  object-fit: cover;
  margin-right: 20px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.carousel-track.row2 {
  animation: scrollRight 40s linear infinite;
}

.carousel-track.row3 {
  animation: scrollLeft 50s linear infinite;
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
  0% { transform: translateX(0); }
  100% { transform: translateX(50%); }
}

/* Responsive: smaller images on mobile */
@media (max-width: 768px) {
  .carousel-track img {
    width: 150px;
    height: 200px;
  }
}








/* Keyframes for infinite 3D spin */
@keyframes spin3D {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}

/* Apply to your logo image */
.spin-logo-3D {
  animation: spin3D 5s linear infinite;  /* adjust speed if you want */
  transform-style: preserve-3d;
  display: inline-block;
}






/* === SERVICES PAGE UPGRADE === */
.services-section {
  text-align: center;
  padding: 80px 20px;
}

.services-section h2 {
  font-size: 3rem;
  margin-bottom: 60px;
  color: #e50914;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: #111;
  border: 2px solid #333;
  padding: 40px 30px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #e50914;
}

.service-card p {
  font-size: 1rem;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: radial-gradient(circle, rgba(229, 9, 20, 0.15) 0%, transparent 80%);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.5s ease;
  z-index: 0;
}

.service-card:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

.service-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 40px rgba(229, 9, 20, 0.2);
}

.service-card * {
  position: relative;
  z-index: 1;
}

/* Common bg setup for all cards */
.service-card {
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
  isolation: isolate;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7); /* dark overlay for readability */
  z-index: 0;
  transition: background 0.3s ease;
}

.service-card:hover::after {
  background: rgba(0,0,0,0.5); /* slightly lighter on hover */
}

.service-card * {
  position: relative;
  z-index: 1;
}

/* Specific BGs */
.bg-portrait {
  background-image: url('images/portrait.jpg');
}

.bg-religious {
  background-image: url('images/religious.jpg');
}

.bg-blackgray {
  background-image: url('images/BGCoverUp.jpg');
}

.bg-coverup {
  background-image: url('images/coverup.jpg');
}

.bg-piercing {
  background-image: url('images/piercing.jpg');
}

.bg-aftercare {
  background-image: url('images/aftercare.jpg');
}

















/* === Book Your Session Section === */

/* === Book Your Session Section === */

.book-session {
  background: #111; /* dark background */
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.book-session::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(229,9,20,0.2) 0%, transparent 70%);
  animation: pulseGlow 6s infinite;
  pointer-events: none; /* ✅ FIXES CLICK ISSUE */
}

@keyframes pulseGlow {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.book-session h2 {
  font-family: 'Pirata One', cursive;
  font-size: 3rem;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(229,9,20,0.7);
}

.book-session p {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 30px;
}

.book-session .btn {
  background: #e50914;
  color: #fff;
  padding: 16px 40px;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(229,9,20,0.6);
}

.book-session .btn:hover {
  background: #b00610;
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(229,9,20,0.8);
}














/* === ABOUT HERO === */

/* === ABOUT HERO SECTION === */

.about-hero {
  position: relative;
  background: url('images/ink-bg.jpg') center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-hero .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(2px);
}

.about-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  max-width: 1200px;
  padding: 40px;
}

.artist-photo img {
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 0 40px rgba(229, 9, 20, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.artist-photo:hover img {
  transform: rotateZ(2deg) scale(1.05);
  box-shadow: 0 0 60px rgba(229, 9, 20, 0.6);
}

.artist-info h2 {
  color: #e50914;
  font-size: 3rem;
  position: relative;
  margin-bottom: 20px;
}

.glitch {
  position: relative;
  color: #e50914;
  font-family: 'Pirata One', cursive;
  font-size: 3rem;
}

.glitch::before,
.glitch::after {
  content: "Dope";
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  color: #fff;
  clip: rect(0, 900px, 0, 0);
}

.glitch::before {
  animation: glitchTop 2s infinite linear alternate-reverse;
}

.glitch::after {
  animation: glitchBottom 2s infinite linear alternate-reverse;
}

@keyframes glitchTop {
  0% { clip: rect(0, 9999px, 0, 0); }
  10% { clip: rect(10px, 9999px, 60px, 0); transform: translate(-3px, -3px); }
  20% { clip: rect(85px, 9999px, 140px, 0); transform: translate(3px, 3px); }
  100% { clip: rect(0, 9999px, 0, 0); }
}

@keyframes glitchBottom {
  0% { clip: rect(0, 9999px, 0, 0); }
  10% { clip: rect(10px, 9999px, 60px, 0); transform: translate(3px, 3px); }
  20% { clip: rect(85px, 9999px, 140px, 0); transform: translate(-3px, -3px); }
  100% { clip: rect(0, 9999px, 0, 0); }
}

.artist-info p {
  color: #eee;
  font-size: 1.2rem;
  line-height: 1.7;
  max-width: 600px;
  animation: fadeInUp 1s ease forwards;
}

.artist-quote {
  margin: 30px 0;
  font-style: italic;
  color: #aaa;
  border-left: 4px solid #e50914;
  padding-left: 20px;
}

.artist-socials a {
  color: #eee;
  font-size: 2rem;
  margin-right: 20px;
  transition: transform 0.3s, color 0.3s;
}

.artist-socials a:hover {
  color: #e50914;
  transform: scale(1.3);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .artist-photo img {
    max-width: 300px;
  }

  .artist-info h2 {
    font-size: 2.5rem;
  }
}




















.services-grid .service-card {
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* 1st Card */
.services-grid .service-card:nth-child(1) {
  background-image: url('images/armband/a1.jpg');
}

/* 2nd Card */
.services-grid .service-card:nth-child(2) {
  background-image: url('images/coverup.jpg');
}

/* 3rd Card */
.services-grid .service-card:nth-child(3) {
  background-image: url('images/Calligraphy/c7.jpg');
}

/* 4th Card */
.services-grid .service-card:nth-child(4) {
  background-image: url('images/religious.jpg');
}

/* 5th Card */
.services-grid .service-card:nth-child(5) {
  background-image: url('images/piercing.jpg');
}

/* 6th Card */
.services-grid .service-card:nth-child(6) {
  background-image: url('images/potraits/p2.jpg');
}
.services-grid .service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6); /* 60% black overlay */
  z-index: 0;
}

.services-grid .service-card * {
  position: relative;
  z-index: 1;
}









/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25D366; /* WhatsApp green */
  color: #fff;
  font-size: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.7);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulse 2s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.9);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0px rgba(37, 211, 102, 0.7);
  }
  50% {
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.9);
  }
  100% {
    box-shadow: 0 0 0px rgba(37, 211, 102, 0.7);
  }
}

/* Make sure Font Awesome is linked for the WhatsApp icon */














.floating-gun {
  position: fixed;
  top: 0;
  left: 0;
  width: 50px; /* adjust the size */
  height: auto;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: transform 0.1s ease-out;
  opacity: 0.8;
  filter: drop-shadow(0 0 10px #e50914);
}

@media (max-width: 768px) {
  .floating-gun {
    display: none; /* hide on mobile */
  }
}








.hero .booking-slots {
  text-align: center;
  font-size: 1.4rem;
  color: #e50914;
  background: rgba(229, 9, 20, 0.1);
  padding: 12px 20px;
  border: 2px solid #e50914;
  border-radius: 8px;
  margin: 25px 0;
  display: inline-block;
  box-shadow: 0 0 15px rgba(229, 9, 20, 0.4);
}

.hero .booking-slots strong {
  text-transform: uppercase;
  letter-spacing: 1px;
}






















.easter-egg-toggle {
  position: fixed;
  bottom: 20px;
  left: 20px;
  font-size: 1.8rem;
  cursor: pointer;
  opacity: 0.2;
  transition: all 0.3s ease;
  z-index: 9999;
}

.easter-egg-toggle:hover {
  opacity: 1;
  transform: rotate(10deg) scale(1.3);
}

.blacklight-mode {
  background: #000 !important;
  color: #0ff !important;
}

.blacklight-mode .contact *,
.blacklight-mode input,
.blacklight-mode textarea {
  color: #0ff !important;
  text-shadow: 0 0 5px #0ff, 0 0 20px #0ff;
}

.blacklight-mode a {
  color: #f0f !important;
}

.blacklight-mode .contact-overlay {
  background: url('images/uv-grunge.png') repeat center/cover;
  opacity: 0.1;
}

.blacklight-mode footer,
.blacklight-mode header {
  background: #000 !important;
  border-top: 2px solid #0ff;
  border-bottom: 2px solid #0ff;
}











.home-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.home-gallery img {
  width: 100%;
  display: block;
  border-radius: 8px;
  transition: transform 0.5s ease, filter 0.5s ease;
  cursor: pointer;
}

/* Blur & dim all */
.home-gallery:hover img {
  filter: blur(2px) brightness(0.7);
}

/* But hovered one is clear & zoomed */
.home-gallery img:hover {
  transform: scale(1.05);
  filter: blur(0) brightness(1);
  z-index: 2;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}


















.gallery {
  background: #000;
  color: #eee;
  padding: 100px 20px;
  text-align: center;
}

.gallery-title {
  font-family: 'Pirata One', cursive;
  font-size: 3rem;
  margin-bottom: 50px;
  color: #e50914;
  text-shadow: 0 0 10px #e50914;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05) rotate(-1deg);
  filter: brightness(1.2) saturate(1.5);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, transparent 60%, rgba(229, 9, 20, 0.4));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border: 5px solid #e50914;
  box-shadow: 0 0 20px #e50914;
}

.lightbox .close {
  position: absolute;
  top: 30px;
  right: 50px;
  font-size: 3rem;
  color: #fff;
  cursor: pointer;
}













/*portrait page*/
.portrait-hero {
  background: #000 url('images/porthero.jpg') center/cover no-repeat;
  padding: 120px 20px;
  color: #eee;
  text-align: center;
  position: relative;
}

.portrait-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}

.portrait-hero * {
  position: relative;
  z-index: 1;
}

.portrait-hero h1 {
  font-family: 'Pirata One', cursive;
  font-size: 3.5rem;
  color: #fff;
  text-shadow: 0 0 10px #e50914, 0 0 20px #e50914;
}

.portrait-hero p {
  max-width: 700px;
  margin: 20px auto 0;
  line-height: 1.6;
  color: #ddd;
}

.portrait-gallery {
  background: #111;
  padding: 80px 20px;
}

.portrait-gallery h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #e50914;
}

.portrait-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.portrait-grid img {
  width: 100%;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portrait-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #e50914;
}

.back-links {
  background: #000;
  text-align: center;
  padding: 40px 20px;
}

.back-links .btn {
  background: #e50914;
  color: #fff;
  padding: 14px 30px;
  margin: 10px;
  display: inline-block;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.back-links .btn:hover {
  background: #b00610;
  transform: scale(1.05);
}











/* === Religious Tattoos Hero === */
.religious-hero {
  background: #000 url('images/notdone.jpg') center/cover no-repeat;
  padding: 120px 20px;
  color: #eee;
  text-align: center;
  position: relative;
}

.religious-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}

.religious-hero * {
  position: relative;
  z-index: 1;
}

.religious-hero h1 {
  font-family: 'Pirata One', cursive;
  font-size: 3.5rem;
  color: #fff;
  text-shadow: 0 0 10px #e50914, 0 0 20px #e50914;
}

.religious-hero p {
  max-width: 700px;
  margin: 20px auto 0;
  line-height: 1.6;
  color: #ddd;
}

/* === Religious Tattoos Gallery === */
.religious-gallery {
  background: #111;
  padding: 80px 20px;
}

.religious-gallery h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #e50914;
}

.religious-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.religious-grid img {
  width: 100%;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.religious-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #e50914;
}

/* === Back Links === */
.back-links {
  background: #000;
  text-align: center;
  padding: 40px 20px;
}

.back-links .btn {
  background: #e50914;
  color: #fff;
  padding: 14px 30px;
  margin: 10px;
  display: inline-block;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.back-links .btn:hover {
  background: #b00610;
  transform: scale(1.05);
}















/* Aftercare page */
.aftercare-hero {
  background: #000 url('images/Calligraphy/c6c.jpg') center/cover no-repeat;
  padding: 120px 20px;
  color: #eee;
  text-align: center;
  position: relative;
}

.aftercare-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}

.aftercare-hero * {
  position: relative;
  z-index: 1;
}

.aftercare-hero h1 {
  font-family: 'Pirata One', cursive;
  font-size: 3.5rem;
  color: #fff;
  text-shadow: 0 0 10px #e50914, 0 0 20px #e50914;
}

.aftercare-hero p {
  max-width: 700px;
  margin: 20px auto 0;
  line-height: 1.6;
  color: #ddd;
}

.aftercare-gallery {
  background: #111;
  padding: 80px 20px;
}

.aftercare-gallery h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #e50914;
}

.aftercare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.aftercare-grid img {
  width: 100%;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.aftercare-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #e50914;
}










/* Black & Gray Cover Up page */
.bgcover-hero {
  background: #000 url('images/bgcpog.jpg') center/cover no-repeat;
  padding: 120px 20px;
  color: #eee;
  text-align: center;
  position: relative;
}

.bgcover-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}

.bgcover-hero * {
  position: relative;
  z-index: 1;
}

.bgcover-hero h1 {
  font-family: 'Pirata One', cursive;
  font-size: 3.5rem;
  color: #fff;
  text-shadow: 0 0 10px #e50914, 0 0 20px #e50914;
}

.bgcover-hero p {
  max-width: 700px;
  margin: 20px auto 0;
  line-height: 1.6;
  color: #ddd;
}

.bgcover-gallery {
  background: #111;
  padding: 80px 20px;
}

.bgcover-gallery h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #e50914;
}

.bgcover-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.bgcover-grid img {
  width: 100%;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bgcover-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #e50914;
}





















/* Cover Up page */
.coverup-hero {
  background: #000 url('images/cp.jpg') center/cover no-repeat;
  padding: 120px 20px;
  color: #eee;
  text-align: center;
  position: relative;
}

.coverup-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}

.coverup-hero * {
  position: relative;
  z-index: 1;
}

.coverup-hero h1 {
  font-family: 'Pirata One', cursive;
  font-size: 3.5rem;
  color: #fff;
  text-shadow: 0 0 10px #e50914, 0 0 20px #e50914;
}

.coverup-hero p {
  max-width: 700px;
  margin: 20px auto 0;
  line-height: 1.6;
  color: #ddd;
}

.coverup-gallery {
  background: #111;
  padding: 80px 20px;
}

.coverup-gallery h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #e50914;
}

.coverup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.coverup-grid img {
  width: 100%;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coverup-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #e50914;
}













/* Piercing page */
.piercing-hero {
  background: #000 url('images/lipsppp.jpg') center/cover no-repeat;
  padding: 120px 20px;
  color: #eee;
  text-align: center;
  position: relative;
}

.piercing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}

.piercing-hero * {
  position: relative;
  z-index: 1;
}

.piercing-hero h1 {
  font-family: 'Pirata One', cursive;
  font-size: 3.5rem;
  color: #fff;
  text-shadow: 0 0 10px #e50914, 0 0 20px #e50914;
}

.piercing-hero p {
  max-width: 700px;
  margin: 20px auto 0;
  line-height: 1.6;
  color: #ddd;
}

.piercing-gallery {
  background: #111;
  padding: 80px 20px;
}

.piercing-gallery h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #e50914;
}

.piercing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.piercing-grid img {
  width: 100%;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.piercing-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #e50914;
}







/*glitch OUR SERVICES HOMEPAGE*/
.glitch-os {
  font-family: 'Pirata One', cursive;
  font-size: 3rem;
  color: #e50914;
  position: relative;
}

.glitch-os::before,
.glitch-os::after {
  content: "Our Services";
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  color: #fff;
  clip: rect(0, 900px, 0, 0);
}

.glitch-os::before {
  animation: glitchTop 2s infinite linear alternate-reverse;
}

.glitch-os::after {
  animation: glitchBottom 2s infinite linear alternate-reverse;
}


/*gallery glitch*/

.glitch-gallery {
  font-family: 'Pirata One', cursive;
  font-size: 3rem;
  color: #e50914;
  position: relative;
}

.glitch-gallery::before,
.glitch-gallery::after {
  content: "Gallery";
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  color: #fff;
  clip: rect(0, 900px, 0, 0);
}

.glitch-gallery::before {
  animation: glitchTop 2s infinite linear alternate-reverse;
}

.glitch-gallery::after {
  animation: glitchBottom 2s infinite linear alternate-reverse;
}



/*About Glitch*/
.glitch-ab {
  font-family: 'Pirata One', cursive;
  font-size: 3rem;
  color: #e50914;
  position: relative;
}

.glitch-ab::before,
.glitch-ab::after {
  content: "Richard P. (BOB)";
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  color: #fff;
  clip: rect(0, 900px, 0, 0);
}

.glitch-ab::before {
  animation: glitchTop 2s infinite linear alternate-reverse;
}

.glitch-ab::after {
  animation: glitchBottom 2s infinite linear alternate-reverse;
}




/*portrait glitch*/
.glitch-port {
  font-family: 'Pirata One', cursive;
  font-size: 3rem;
  color: #e50914;
  position: relative;
}

.glitch-port::before,
.glitch-port::after {
  content: "Portrait Tattoos";
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  color: #fff;
  clip: rect(0, 900px, 0, 0);
}

.glitch-port::before {
  animation: glitchTop 2s infinite linear alternate-reverse;
}

.glitch-::after {
  animation: glitchBottom 2s infinite linear alternate-reverse;
}






/*Religious Glitch*/
.glitch-rg {
  font-family: 'Pirata One', cursive;
  font-size: 3rem;
  color: #e50914;
  position: relative;
}

.glitch-rg::before,
.glitch-rg::after {
  content: "Religious And Cultural Tattoos";
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  color: #fff;
  clip: rect(0, 900px, 0, 0);
}

.glitch-rg::before {
  animation: glitchTop 2s infinite linear alternate-reverse;
}

.glitch-rg::after {
  animation: glitchBottom 2s infinite linear alternate-reverse;
}



/*Black Gray cp glitch*/
.glitch-bgcp {
  font-family: 'Pirata One', cursive;
  font-size: 3rem;
  color: #e50914;
  position: relative;
}

.glitch-bgcp::before,
.glitch-bgcp::after {
  content: "Arm Band Tattoos";
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  color: #fff;
  clip: rect(0, 900px, 0, 0);
}

.glitch-bgcp::before {
  animation: glitchTop 2s infinite linear alternate-reverse;
}

.glitch-bgcp::after {
  animation: glitchBottom 2s infinite linear alternate-reverse;
} 





/*cover up Glitch*/
.glitch-cu {
  font-family: 'Pirata One', cursive;
  font-size: 3rem;
  color: #e50914;
  position: relative;
}

.glitch-cu::before,
.glitch-cu::after {
  content: "Cover-Up Tattoos";
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  color: #fff;
  clip: rect(0, 900px, 0, 0);
}

.glitch-cu::before {
  animation: glitchTop 2s infinite linear alternate-reverse;
}

.glitch-cu::after {
  animation: glitchBottom 2s infinite linear alternate-reverse;
}





/*piercing Glitch*/
.glitch-pier {
  font-family: 'Pirata One', cursive;
  font-size: 3rem;
  color: #e50914;
  position: relative;
}

.glitch-pier::before,
.glitch-pier::after {
  content: "Piercing";
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  color: #fff;
  clip: rect(0, 900px, 0, 0);
}

.glitch-pier::before {
  animation: glitchTop 2s infinite linear alternate-reverse;
}

.glitch-pier::after {
  animation: glitchBottom 2s infinite linear alternate-reverse;
}







/*Religious Glitch*/
.glitch-af {
  font-family: 'Pirata One', cursive;
  font-size: 3rem;
  color: #e50914;
  position: relative;
}

.glitch-af::before,
.glitch-af::after {
  content: "Calligraphy";
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  color: #fff;
  clip: rect(0, 900px, 0, 0);
}

.glitch-af::before {
  animation: glitchTop 2s infinite linear alternate-reverse;
}

.glitch-af::after {
  animation: glitchBottom 2s infinite linear alternate-reverse;
}








/*Booking Glitch*/
.glitch-bk {
  font-family: 'Pirata One', cursive;
  font-size: 3rem;
  color: #e50914;
  position: relative;
}

.glitch-bk::before,
.glitch-bk::after {
  content: "Book an Appointment";
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  color: #fff;
  clip: rect(0, 900px, 0, 0);
}

.glitch-bk::before {
  animation: glitchTop 2s infinite linear alternate-reverse;
}

.glitch-bk::after {
  animation: glitchBottom 2s infinite linear alternate-reverse;
}