body{
  background:#000;
  color:#fff;
  font-family:Arial, Helvetica, sans-serif;
  margin:0;
}

/* TITLE */
.center{
  text-align:center;
  margin:30px 0;
}

/* FILTER BUTTONS */
.filters{
  text-align:center;
  margin-bottom:30px;
}
.filters button{
  background:#222;
  color:#fff;
  padding:8px 18px;
  margin:4px;
  border:none;
  border-radius:20px;
  cursor:pointer;
  transition:.3s;
}
.filters button.active{
  background:#fff;
  color:#000;
}

/* GALLERY SECTION */
.tattoo-gallery{
  padding:40px 6%;
  background:#fff;
}

/* GRID */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
  gap:28px;
}

/* CARD */
.gallery-item{
  height:360px;
  border-radius:18px;
  overflow:hidden;
  background:#000;
  cursor:pointer;
  opacity:1;
  transform:scale(1);
  transition:opacity .3s ease, transform .3s ease;
}

/* FADE OUT */
.gallery-item.hide{
  opacity:0;
  pointer-events:none;
  position:absolute;
}

/* IMAGE */
.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .4s ease;
}
.gallery-item:hover img{
  transform:scale(1.06);
}

/* MODAL */
#modal{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.95);
  justify-content:center;
  align-items:center;
  z-index:9999;
}
#modal img{
  max-width:90%;
  max-height:90%;
  border-radius:12px;
}

/* ARROWS */
.modal-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  font-size:40px;
  color:#fff;
  cursor:pointer;
  user-select:none;
}
.modal-arrow.left{ left:30px; }
.modal-arrow.right{ right:30px; }

/* MOBILE */
@media(max-width:600px){
  .gallery-item{
    height:300px;
  }
}

/* MODAL NAV ARROWS – SCREEN EDGES */
#modal .nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: white;
  cursor: pointer;
  padding: 20px;
  z-index: 10000;
  user-select: none;
}

#modal .nav.left {
  left: 30px;      /* ✅ LEFT EDGE */
}

#modal .nav.right {
  right: 30px;     /* ✅ RIGHT EDGE */
}

#modal .nav:hover {
  color: #00ffd5;
}

/* Navbar  */

/*Nav*/
.navbar{
  position:sticky;
  top:0;
  z-index:1000;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px 40px;
  background:#fff;
}

.menu a{
  color:#000;
  margin-left:22px;
  text-decoration:none;
  font-weight:500;
}

.menu a:hover{
  color:#e04b1a;
}

.cta{
  background:#e04b1a;
  color:#fff !important;
  padding:8px 18px;
  border-radius:20px;
}

.brand-name{
  font-weight:600;
  letter-spacing:1px;
}

.brand-accent{
  color:#e04b1a;
}

.brand h2{
  color:#000;                      /* 🔥 Black text */
  font-weight:600;
  letter-spacing:.5px;
}
/* BRAND TEXT */
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.brand img{
  height:42px;
}

.brand-text{
  font-size:18px;
  font-weight:600;
  letter-spacing:0.6px;
  color:#e04b1a;          /* 🔥 Orange */
  text-transform:uppercase;
}
.brand-text strong{
  color:#000;
}

.brand-text{
  color:#e04b1a;
}




/* ===============================
   PREMIUM MOBILE NAVBAR
================================ */

.hamburger{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}

.hamburger span{
  width:26px;
  height:2px;
  background:#000;
  transition:.3s ease;
}

/* MOBILE MENU */
.mobile-menu{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100vh;
  background:#111;
  color:#fff;
  padding:30px 24px;
  transform:translateY(-100%);
  transition:transform .4s cubic-bezier(.22,1,.36,1);
  z-index:9999;
  display:flex;
  flex-direction:column;
}

.mobile-menu.active{
  transform:translateY(0);
}

.mobile-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:20px;
  margin-bottom:40px;
}

.mobile-header button{
  background:none;
  border:none;
  color:#fff;
  font-size:26px;
  cursor:pointer;
}

/* Book Now Top */
.mobile-book{
  background:#e04b1a;
  padding:14px;
  border-radius:40px;
  text-align:center;
  font-weight:600;
  margin-bottom:40px;
  text-decoration:none;
  color:#fff;
}

/* Menu Links */
.mobile-menu a{
  text-decoration:none;
  color:#ddd;
  font-size:22px;
  padding:16px 0;
  border-bottom:1px solid rgba(255,255,255,0.08);
}

/* ===============================
   RESPONSIVE
================================ */

@media(max-width:900px){

  .menu{
    display:none;
  }

  .hamburger{
    display:flex;
  }
}
