:root{
  --black:#000;
  --orange:#d4481f;
  --white:#fff;
  --cream:#f7f5f2;
}

*{margin:0;padding:0;box-sizing:border-box}
/*
body{
  font-family:Arial, Helvetica, sans-serif;
  background:var(--black);
  color:var(--white);
}

.story-highlight {
  margin-top: 16px;
  font-weight: 600;
  color: #e45a2a;
  letter-spacing: 0.3px;
}

*/
body{
  font-family:'Inter', sans-serif;
  background:#000;
  color:#fff;
  font-weight:400;
  letter-spacing:.2px;
}
.story-highlight {
  margin-top: 16px;
  font-weight: 600;
  color: #e45a2a;
  letter-spacing: 0.3px;
}

h1, h2, h3{
  font-family:'Playfair Display', serif;
  font-weight:600;
  letter-spacing:.5px;
}


/* NAVBAR */
/*
.navbar{
  position:sticky;
  top:0;
  z-index:1000;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px 40px;
  background:#000;
}
*/
.navbar{
  position:sticky;
  top:0;
  z-index:1000;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 6%;
  background:#ffffff;              /* ðŸ”¥ White background */
  border-bottom:1px solid #eee;    /* Subtle premium divider */
}
/*
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}


.brand img{height:45px}
.menu a{
  color:white;
  margin-left:22px;
  text-decoration:none;
}
*/
/* BRAND */


.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;
}


/* MENU LINKS */
.menu a{
  color:#000;                      /* ðŸ”¥ Black text */
  margin-left:28px;
  text-decoration:none;
  font-weight:500;
  transition:.3s ease;
}

.menu a:hover{
  color:#e04b1a;                   /* ðŸ”¥ Orange hover */
}
/*
.cta{
  background:var(--orange);
  padding:8px 18px;
  border-radius:20px;
}
*/
/* BOOK NOW BUTTON */
.cta{
  background:#e04b1a;              /* ðŸ”¥ Orange button */
  color:#fff !important;
  padding:10px 22px;
  border-radius:30px;
  font-weight:600;
  transition:.3s ease;
}

.cta:hover{
  background:#ff5a28;
}
/* HERO */
.hero-cinematic{
  height:90vh;
  background:url('images/hero-bg.jpg') center/cover;
}

.hero-overlay h1{
  font-size:64px;
  margin-bottom:15px;
}
.hero-btn{
  margin-top:20px;
  background:var(--orange);
  color:white;
  padding:14px 34px;
  border-radius:30px;
  text-decoration:none;
}

/* STORY */
.story-section{
  background:var(--cream);
  padding:80px 20px;
}
.story-card{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  background:white;
  border-radius:20px;
  overflow:hidden;
}
.story-image img{width:100%;height:100%;object-fit:cover}
.story-text{
  padding:50px;
  color:black;
}
.story-text span{font-style:italic}

/* PROCESS */
.process-section{
  background:white;
  color:black;
  padding:80px 40px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}
.process-card{
  background:var(--cream);
  border-radius:20px;
  padding:30px;
  text-align:center;
}
.process-card span{
  font-size:32px;
  font-weight:bold;
  color:var(--orange);
}

/* ARTISTS */
.artists-section{
  padding:80px 20px;
  text-align:center;
}
.artists{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:30px;
  margin-top:40px;
}
.artist-card{
  background:#111;
  border-radius:20px;
  padding:20px;
}
.artist-card img{
  width:100%;
  border-radius:14px;
}

/* HYGIENE */
.hygiene-section{
  background:var(--cream);
  color:black;
  padding:80px 20px;
  text-align:center;
}

/* BOOKING */
.booking{
  padding:80px 20px;
  text-align:center;
}
form{
  max-width:400px;
  margin:auto;
  display:flex;
  flex-direction:column;
}
input,textarea{
  padding:12px;
  margin:8px;
  border-radius:8px;
  border:none;
}
button{
  background:var(--orange);
  color:white;
  padding:14px;
  border:none;
  border-radius:30px;
}

/* MOBILE */
@media(max-width:900px){
  .story-card{
    grid-template-columns:1fr;
  }
  .hero-overlay h1{
    font-size:42px;
  }
}

/* BOOKING FORM */
select{
  padding:12px;
  margin:8px;
  border-radius:8px;
  border:none;
}

/* GALLERY FILTERS */
.filters{
  text-align:center;
  margin-bottom:20px;
}
.filters button{
  background:#222;
  color:white;
  padding:8px 16px;
  border:none;
  margin:4px;
  border-radius:20px;
  cursor:pointer;
}

/* GALLERY */
.gallery img{
  transition:.3s;
}
.gallery img:hover{
  transform:scale(1.03);
}

.artists{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:30px;
  padding:20px;
}

.artist-card{
  background:#111;
  border-radius:20px;
  padding:20px;
  text-align:center;
}

.artist-card img{
  width:100%;
  border-radius:14px;
  margin-bottom:12px;
}

.artist-card a{
  color:var(--orange);
  text-decoration:none;
  font-weight:bold;
}
.content-page{
  max-width:900px;
  margin:auto;
  padding:80px 20px;
  line-height:1.7;
}

.review-card{
  background:#111;
  padding:20px;
  border-radius:15px;
  margin:20px 0;
}

/* MAP */
.map-section{
  padding:80px 20px;
  text-align:center;
}
.map-section iframe{
  width:90%;
  height:320px;
  border-radius:12px;
  border:0;
}
/* FLOATING SOCIAL BUTTONS */
.social-float{
  position:fixed;
  bottom:20px;
  right:20px;
  display:flex;
  flex-direction:column;
  gap:12px;
  z-index:2000;
}

.social-btn{
  padding:12px 16px;
  border-radius:30px;
  color:white;
  text-decoration:none;
  font-weight:bold;
  text-align:center;
  box-shadow:0 4px 12px rgba(0,0,0,0.4);
  transition:transform .2s ease;
}

.social-btn:hover{
  transform:scale(1.05);
}

.social-btn.whatsapp{
  background:#25D366;
}

.social-btn.instagram{
  background:linear-gradient(45deg,#f58529,#dd2a7b,#8134af,#515bd4);
}

/* ================================
   TATTOO GALLERY â€“ FINAL VERSION
   (Reference-style professional size)
================================ */

/* Gallery Section 
.tattoo-gallery {
  padding: 60px 5%;
  background: #fff;
}

/* Grid Layout 
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
}

/* Image Card 
.gallery-item {
  position: relative;
  width: 100%;
  height: 380px;              /* âœ… Reference size 
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  cursor: pointer;
}

/* Image 
.gallery-item img {
  width: 10%;
  height: 10%;
  object-fit: cover;          /* âœ… Prevent stretch 
  display: block;
  transition: transform 0.35s ease;
}

/* Hover Effect 
.gallery-item:hover img {
  transform: scale(1.06);
}

/* Mobile Optimization 
@media (max-width: 600px) {
  .gallery-item {
    height: 340px;
  }
}


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

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

/* FILTERS */
.filters{
  text-align:center;
  margin-bottom:30px;
}
.filters button{
  background:#222;
  color:white;
  padding:8px 18px;
  margin:4px;
  border:none;
  border-radius:20px;
  cursor:pointer;
}

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

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

/* CARD (REFERENCE SIZE) */
.gallery-item{
  height:360px;                 /* ðŸ”‘ This controls size */
  border-radius:18px;
  overflow:hidden;
  background:red;
  cursor:pointer;
}

/* IMAGE */
.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;             /* ðŸ”‘ PERFECT CROPPING */
  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,.9);
  justify-content:center;
  align-items:center;
  z-index:9999;
}

#modal img{
  max-width:90%;
  max-height:90%;
  border-radius:12px;
}

/* MOBILE */
@media(max-width:600px){
  .gallery-item{
    height:300px;
  }
}
.gallery-item img{
  position:absolute !important;
  inset:0 !important;
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
}

/* ===============================
   AUTO TATTOO GALLERY SLIDER
================================ */

.auto-gallery-section{
  padding:80px 0;
  background:#000;
  overflow:hidden;
}

.gallery-title{
  text-align:center;
  font-size:36px;
  color:#fff;
  margin-bottom:40px;
}

/* SLIDER CONTAINER */
.auto-slider{
  width:100%;
  overflow:hidden;
  position:relative;
}

/* MOVING TRACK */
.auto-track{
  display:flex;
  will-change: transform;
  transition: transform 0.02s linear;
}

/* CARD */
.auto-card{
  min-width:280px;
  height:360px;
  margin:0 14px;
  border-radius:22px;
  overflow:hidden;
  background:#111;
  box-shadow:0 10px 30px rgba(0,0,0,.6);
}

/* IMAGE */
.auto-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .4s ease;
}

.auto-card:hover img{
  transform:scale(1.05);
}


/* BUTTON (same style as View All Artists) */
.gallery-btn-wrap{
  text-align:center;
  margin-top:50px;
}

.gallery-btn{
  display:inline-block;
  background:#e44c1b;
  color:#fff;
  padding:14px 34px;
  border-radius:40px;
  text-decoration:none;
  font-weight:600;
  font-size:16px;
  transition:transform .25s ease, box-shadow .25s ease;
}

.gallery-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 30px rgba(228,76,27,.5);
}

/* MOBILE */
@media(max-width:768px){
  .auto-card{
    min-width:240px;
    height:320px;
  }
}
.auto-slider{
  width:100%;
  overflow:hidden;
}

.auto-track{
  display:flex;
  width:200%;                 /* ðŸ”‘ IMPORTANT */
  animation: scrollLeft 30s linear infinite;
}

@keyframes scrollLeft{
  0%{
    transform:translateX(0);
  }
  100%{
    transform:translateX(-50%); /* ðŸ”‘ Move only half */
  }
}
/* ===== HERO SECTION â€“ INK BEFORE SKIN ===== */






/* Soft studio light */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at top center,
    rgba(255,255,255,0.06),
    rgba(0,0,0,0.9) 60%
  );
  z-index: 1;
}

/* Subtle stencil / grain texture */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-radial-gradient(
      circle at 20% 30%,
      rgba(255,255,255,0.02),
      rgba(255,255,255,0.02) 1px,
      transparent 1px,
      transparent 6px
    );
  opacity: 0.4;
  z-index: 2;
}

/* HERO CONTENT */

/* =========================
   HERO SECTION
========================= */



.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh; /* Fix for modern mobile browsers */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Background Slides */


.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}


.hero-bg.active {
  opacity: 1;
}

/* Dark overlay */

/* Dark Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

/* Content */

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 20px;
  max-width: 900px;
  width: 100%;
}

/* Heading */
.hero-content h1 {
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

/* Sub text */
.hero-content p {
  font-size: 16px;
  color: #ddd;
  margin-bottom: 10px;
}


/* Mobile Fix */
@media (max-width: 768px) {
  .hero {
    min-height: 100svh;  /* modern viewport fix */
    padding-top: 80px;   /* prevent navbar overlap */
  }
}


.cta-btn {
  background: #e04b1a;
  color: #fff;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  transition: 0.3s ease;
}

/* Prevent color change after click */
.cta-btn:visited,
.cta-btn:active,
.cta-btn:focus {
  color: #fff;
  background: #e04b1a;
  outline: none;
}

.cta-btn:hover {
  background: #c63f14;
  transform: translateY(-2px);
}


@media (max-width: 768px) {
  .hero {
    height: 100vh;
  }

  .hero-content h1 {
    font-size: 38px;
  }
}


.hero {
  height: 100vh; /* full screen height */
  display: flex;
  justify-content: center;  /* horizontal center */
  align-items: center;      /* vertical center */
  text-align: center;
  position: relative;
}

.hero-content {
  z-index: 2;
  color: white;
  max-width: 800px;
}


.hero {
  background: url("your-image.jpg") center/cover no-repeat;
}


.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

/* MAIN HEADLINE */


/* SUBTEXT */


/* CTA BUTTON */
.hero-content .cta-btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 999px;
  background: #e04b1a;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-content .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(224,75,26,0.35);
}
.hero::before {
  animation: breathe 12s ease-in-out infinite;
}

@keyframes breathe {
  0%,100% { opacity: 1; }
  50% { opacity: 0.85; }
}
/* ===== GOOGLE REVIEWS ===== */

.reviews-section {
  background: #000;
  padding: 80px 6%;
  text-align: center;
}

.reviews-section h2 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.reviews-section h2 span {
  color: #e04b1a;
}

.rating-summary {
  margin-bottom: 40px;
}

.rating-summary .stars {
  color: #f4b400;
  font-size: 1.5rem;
}

.rating-summary p {
  color: #ccc;
  margin: 8px 0;
}

.rating-summary img {
  width: 40px;
  margin-top: 10px;
}

/* SLIDER */
.reviews-slider {
  overflow: hidden;
  position: relative;
}

.reviews-track {
  display: flex;
  gap: 20px;
  animation: slideReviews 25s linear infinite;
}

.reviews-slider:hover .reviews-track {
  animation-play-state: paused;
}

/* CARD */
.review-card {
  min-width: 300px;
  background: #111;
  border-radius: 18px;
  padding: 24px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.review-card h4 {
  color: #fff;
  margin-bottom: 6px;
}

.review-card .stars {
  color: #f4b400;
  font-size: 1rem;
}

.review-card p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* CTA */
.review-btn {
  display: inline-block;
  margin-top: 40px;
  padding: 14px 36px;
  background: #e04b1a;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.review-btn:hover {
  box-shadow: 0 10px 30px rgba(224,75,26,0.4);
}

/* ANIMATION */
@keyframes slideReviews {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* MOBILE */
@media (max-width: 768px) {
  .review-card {
    min-width: 260px;
  }
}

/* ===============================
   PIERCING SLIDER
================================ */

.piercing-slider{
  position:relative;
  width:100%;
  height:420px;
  overflow:hidden;
  background:#000;
}

.piercing-slider .slider{
  height:100%;
  position:relative;
}

.piercing-slider .slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:opacity 1s ease-in-out;
}

.piercing-slider .slide::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    to right,
    rgba(0,0,0,.75),
    rgba(0,0,0,.25)
  );
}

.piercing-slider .slide.active{
  opacity:1;
  z-index:1;
}

.piercing-slider .slide-content{
  position:absolute;
  left:8%;
  bottom:30%;
  z-index:2;
  color:#fff;
}

.piercing-slider h2{
  font-size:42px;
  margin-bottom:10px;
}

.piercing-slider p{
  font-size:18px;
  opacity:.85;
}

/* DOTS */
.piercing-slider .slider-dots{
  position:absolute;
  bottom:20px;
  width:100%;
  text-align:center;
  z-index:5;
}

.piercing-slider .dot{
  display:inline-block;
  width:10px;
  height:10px;
  margin:0 6px;
  border-radius:50%;
  background:#777;
  cursor:pointer;
}

.piercing-slider .dot.active{
  background:#e04b1a;
}

/* MOBILE */
@media(max-width:768px){
  .piercing-slider{height:300px}
  .piercing-slider h2{font-size:26px}
  .piercing-slider p{font-size:14px}
}


/* HERO SECTION */


/* BACKGROUND SLIDES */




/* OVERLAY â€” keeps image visible but readable */


/* CONTENT */

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 20px;
}


.cta-btn {
  display: inline-block;
  padding: 14px 36px;
  background: #e14c1f;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: transform .2s ease, background .2s ease;
}

.cta-btn:hover {
  background: #ff5a28;
  transform: translateY(-2px);
}

html {
  scroll-behavior: smooth;
}


/*================
   CTA BUTTON â€“ FIXED
=================*/

.cta-btn{
  display:inline-block;
  padding:14px 36px;
  background:#e45722;
  color:#fff;
  font-weight:600;
  border-radius:30px;
  text-decoration:none;
  cursor:pointer;

  position:relative;     /* ðŸ”‘ REQUIRED */
  z-index:50;             /* ðŸ”‘ ABOVE OVERLAYS */

  transition:transform .25s ease, background .25s ease;
}

.cta-btn:hover{
  background:#ff6a32;
  transform:translateY(-2px);
}


/*============
     MOBILE
============*/
.cta-btn, button{
  user-select:none;
  -webkit-tap-highlight-color: transparent;
}

a, button{
  touch-action: manipulation;
}

body{
  -webkit-overflow-scrolling: touch;
}

/* ===============================
   FOOTER
================================ */

.site-footer{
  background:#fff;
  color:#000;
  padding:80px 6% 30px;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:40px;
  margin-bottom:40px;
}

.footer-col h3,
.footer-col h4{
  margin-bottom:14px;
  font-size:18px;
}

.footer-col p{
  font-size:14px;
  line-height:1.7;
  color:#333;
}

.footer-col ul{
  list-style:none;
  padding:0;
}

.footer-col ul li{
  margin-bottom:10px;
  font-size:14px;
}

.footer-col a{
  text-decoration:none;
  color:#000;
}

.footer-col a:hover{
  color:#e04b1a;
}

.footer-contact,
.footer-address,
.footer-timing{
  margin-top:12px;
  font-size:14px;
}

/* FOOTER BOTTOM */
.footer-bottom{
  border-top:1px solid #ddd;
  padding-top:20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:16px;
}

.footer-bottom p{
  font-size:13px;
  color:#555;
}

.footer-socials a{
  margin-left:14px;
  font-size:18px;
  text-decoration:none;
  color:#000;
}

.footer-socials a:hover{
  color:#e04b1a;
}

/* MOBILE */
@media(max-width:600px){
  .footer-bottom{
    flex-direction:column;
    text-align:center;
  }
}

/* ===============================
   GOOGLE REVIEW BADGE
================================ */

.reviews-badge{
  background:#000;
  padding:80px 6%;
  color:#fff;
}

.reviews-container{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

.reviews-left h2{
  font-size:32px;
  margin-bottom:12px;
}

.reviews-left span{
  color:#f4b400;
}

.review-btn{
  display:inline-block;
  margin-top:20px;
  padding:12px 28px;
  background:#e04b1a;
  border-radius:30px;
  text-decoration:none;
  color:#fff;
}

.review-mini{
  background:#111;
  padding:20px;
  border-radius:14px;
  margin-bottom:20px;
}

.review-mini p{
  font-size:14px;
  margin-bottom:6px;
}

.review-mini span{
  font-size:13px;
  color:#aaa;
}

@media(max-width:768px){
  .reviews-container{
    grid-template-columns:1fr;
  }
}

/*=========
   MAP SECTION
============*/

.map-section{
  padding:80px 6%;
  background:#fff;
  text-align:center;
  color:#000;
}

.map-section h2{
  margin-bottom:30px;
}

.map-section iframe{
  width:100%;
  height:350px;
  border:0;
  border-radius:16px;
  margin-bottom:20px;
}

/* ===============================
   LUXURY SERVICES SECTION
================================ */

.lux-services{
  background:#fff;
  color:#000;
  padding:120px 8%;
}

/* HEADER */
.lux-header{
  text-align:center;
  margin-bottom:120px;
}

.lux-header h2{
  font-size:42px;
  font-weight:700;
  letter-spacing:1px;
  margin-bottom:18px;
}

.lux-header p{
  max-width:600px;
  margin:auto;
  color:#555;
  font-size:15px;
  line-height:1.8;
}

/* SERVICE BLOCK */
.lux-service{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:80px;
  margin-bottom:140px;
}

/* Reverse Layout */
.lux-right{
  direction:rtl;
}

.lux-right .lux-content{
  direction:ltr;
}

/* IMAGE */
.lux-image{
  height:520px;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 40px 80px rgba(0,0,0,0.15);
}

.lux-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .6s ease;
}

.lux-service:hover .lux-image img{
  transform:scale(1.05);
}

/* CONTENT */
.lux-content{
  max-width:480px;
}

.lux-tag{
  font-size:14px;
  letter-spacing:2px;
  color:#e04b1a;
  font-weight:600;
}

.lux-content h3{
  font-size:32px;
  margin:18px 0 20px;
}

.lux-content p{
  font-size:15px;
  color:#444;
  line-height:1.9;
  margin-bottom:30px;
}

/* BUTTON */
.lux-btn{
  display:inline-block;
  padding:14px 34px;
  background:#e04b1a;
  color:#fff;
  border-radius:40px;
  text-decoration:none;
  font-weight:600;
  transition:all .3s ease;
}

.lux-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 15px 40px rgba(224,75,26,.35);
}

/* MOBILE */
@media(max-width:900px){
  .lux-service{
    grid-template-columns:1fr;
    gap:40px;
    margin-bottom:100px;
  }

  .lux-right{
    direction:ltr;
  }

  .lux-image{
    height:350px;
  }

  .lux-header{
    margin-bottom:80px;
  }
}

/*Divider*/

/*
.cinematic-divider{
  width:24px;
  height:1px;
  background:#c6a14a;
  margin:60px auto;
  opacity:.6;
}
*/
.cinematic-divider{
  width:32px;              /* smaller width */
  height:1px;
  margin:70px auto;        /* tighter spacing */
  background:linear-gradient(
    to right,
    transparent,
    rgba(198,161,74,.7),
    transparent
  );
  opacity:.8;
}

/*=================
Scroll Reveal Animation
=====================*/

.reveal{
  opacity:0;
  transform:translateY(60px);
  transition:all 1s cubic-bezier(.22,.61,.36,1);
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}

/* CONDITIONAL FIELD ANIMATION */
.conditional-fields{
  opacity:0;
  transform:translateY(20px);
  max-height:0;
  overflow:hidden;
  transition:all .4s ease;
}

.conditional-fields.show{
  opacity:1;
  transform:translateY(0);
  max-height:1000px;
}


/*=========================
White Divider
============================*/
/*
.divider-white{
  width:100px;
  height:1px;
  margin:70px auto;
  background:linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,0.8),
    transparent
  );
}
*/


/* ===== CINEMATIC WHITE DIVIDER (BLACK BG) ===== */

.cinematic-divider-white{
  width:32px;          /* same small size */
  height:1px;
  margin:70px auto;
  background:linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,0.9),
    transparent
  );
  opacity:.85;
}


/* =========================
   FULL WHITE BAND DIVIDER
========================= */

.white-band-divider{
  width:100%;
  height:120px;     /* ðŸ”¥ Controls thickness of white strip */
  background:#fff;
}

/* =========================
   DARK CONTENT PAGES (FAQ STYLE)
========================= */

.content-dark{
  background:#000;
  color:#fff;
  padding:100px 6%;
  min-height:80vh;
}

.content-container{
  max-width:900px;
  margin:auto;
}

.content-dark h1{
  font-size:42px;
  margin-bottom:40px;
}

.faq-item{
  margin-bottom:30px;
}

.faq-item h3{
  font-size:20px;
  margin-bottom:8px;
  color:#fff;
}

.faq-item p{
  color:#ccc;
  line-height:1.7;
}

/*======================
Submit Button
===================*/
button,
.cta,
.cta-btn {
  cursor: pointer;
}

/* ===============================
   BOOKING BUTTON â€“ PREMIUM
================================ */

.booking button,
button[type="submit"]{
  width:100%;
  padding:16px;
  border:none;
  border-radius:40px;
  font-weight:600;
  font-size:16px;
  color:#fff;
  background:linear-gradient(135deg,#e04b1a,#ff6a32);
  cursor:pointer;
  transition:all .25s ease;
}

/* HOVER */
.booking button:hover{
  background:linear-gradient(135deg,#ff5a28,#ff7a45);
  transform:translateY(-2px);
  box-shadow:0 12px 30px rgba(224,75,26,.4);
}

/* CLICK EFFECT */
.booking button:active{
  transform:scale(0.97);
  box-shadow:0 6px 15px rgba(0,0,0,.4);
}

/* DISABLED STATE (Netlify submit) */
.booking button:disabled{
  opacity:.7;
  cursor:not-allowed;
}

/* ===============================
   STORK AI ASSISTANT â€“ PREMIUM
================================ */

.stork-assistant{
  position:fixed;
  left:-380px;
  bottom:40px;
  width:360px;
  background:#ffffff;
  color:#000;
  border-radius:20px;
  box-shadow:0 30px 80px rgba(0,0,0,0.45);
  overflow:hidden;
  transition:all .5s cubic-bezier(.22,1,.36,1);
  z-index:9999;
}

.stork-assistant.active{
  left:30px;
}

.assistant-header{
  background:#000;
  color:#fff;
  padding:16px 22px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:13px;
  letter-spacing:1px;
}

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

.assistant-body{
  padding:24px;
}

.assistant-chat{
  font-size:14px;
  line-height:1.6;
  min-height:60px;
}

.chat-bubble{
  background:#f2f2f2;
  padding:12px 16px;
  border-radius:16px;
  margin-bottom:12px;
  animation:fadeUp .5s ease;
}

@keyframes fadeUp{
  from{opacity:0; transform:translateY(8px);}
  to{opacity:1; transform:translateY(0);}
}

/* ACTION BUTTONS */
.assistant-actions a{
  display:block;
  padding:12px 16px;
  margin-top:10px;
  border-radius:30px;
  text-decoration:none;
  font-size:14px;
  font-weight:500;
  background:#000;
  color:#fff;
  transition:.3s ease;
}

.assistant-actions a:hover{
  background:#e45722;
}

/* TOGGLE BUTTON */
.assistant-toggle{
  position:fixed;
  bottom:40px;
  left:30px;
  padding:14px 24px;
  border-radius:30px;
  border:none;
  background:#e45722;
  color:#fff;
  font-weight:600;
  cursor:pointer;
  box-shadow:0 20px 50px rgba(0,0,0,0.4);
  transition:.3s ease;
  z-index:9998;
}

.assistant-toggle:hover{
  background:#ff6a32;
}

/* MOBILE */
@media(max-width:768px){
  .stork-assistant{
    width:90%;
    left:-100%;
    bottom:0;
    border-radius:20px 20px 0 0;
  }

  .stork-assistant.active{
    left:5%;
  }
}

/*===============
Ganesh
===============*/

/* ===============================
   STORY SPLIT SECTION – RESPONSIVE FIX
================================ */

.about-split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: #f9f9f9;
}


/* IMAGE SIDE */
.about-image{
  width: 100%;
  height: 100%;
}

.about-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;   /* desktop */
  display: block;
}

/* CONTENT SIDE */
.about-content {
  flex: 1;
  background: #ffffff;
  display: flex;
  align-items: center;
  
  padding: 80px 8%;
}


.content-inner {
  max-width: 520px;
}

.about-content h2 {
  font-size: 38px;
  font-family: 'Playfair Display', serif;
  margin-bottom: 25px;
  color: #111;
  line-height: 1.2;
}

.about-content h2 span {
  font-style: italic;
  color: #ff5a1f;
}

.about-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 18px;
}

.highlight-line {
  margin-top: 30px;
  font-weight: 600;
  color: #ff5a1f;
}

/* =================================
   MOBILE PREMIUM VERSION
================================ */



 


  .about-content h2 {
    font-size: 28px; /* controlled scaling */
  }

  .about-content p {
    font-size: 15px;
  }





/* ===============================
   MOBILE FIX
================================ */

@media(max-width: 768px){

  .about-split{
    grid-template-columns: 1fr;   /* stack vertically */
  }

  .about-image{
    height: auto;   /* remove fixed height */
  }

  .about-image img{
    height: auto;           /* VERY IMPORTANT */
    object-fit: contain;    /* show full image */
  }

  .about-content{
    padding: 50px 8%;
  }


   .about-content h2 {
    font-size: 28px; /* controlled scaling */
  }

  .about-content p {
    font-size: 15px;
  }
}

/*Social Button
============*/
/* ============================
   SOCIAL FLOATING BUTTONS
============================ */

.social-fixed {
  position: fixed;
  right: 20px;
  bottom: 120px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

/* Base Button */
.social-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Icon Size */
.social-btn img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

/* WhatsApp */
.whatsapp {
  background: #25D366;
}

/* Instagram */
.instagram {
  background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf);
}

/* Call Button */
.call {
  background: linear-gradient(135deg, #222, #000);
}

/* Hover Effect */
.social-btn:hover {
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

/* Mobile Adjustment */
@media (max-width:768px){
  .social-fixed {
    right: 15px;
    bottom: 100px;
  }

  .social-btn {
    width: 50px;
    height: 50px;
  }

  .social-btn img {
    width: 22px;
    height: 22px;
  }
}


/* Crafted brans */

.brand-statement {
  font-family: 'Playfair Display', serif; /* luxury serif */
  font-size: 64px;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  color: #E6511E; /* your brand orange */
  letter-spacing: -1px;
}

.brand-statement {
  animation: fadeUp 1s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

.brand-statement span {
  color: #000;
}


@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/*======================
PAGE UPDATE
============================*/

.page-section {
  background: #000;
  color: #fff;
  padding: 120px 20px;
}

.page-container {
  max-width: 1100px;
  margin: 0 auto;
}

.page-container h1 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 50px;
  letter-spacing: -0.5px;
}

.page-content {
  font-size: 20px;
  line-height: 1.9;
  color: #dcdcdc;
}

.page-content h3 {
  font-size: 24px;
  margin-top: 35px;
  margin-bottom: 10px;
  color: #ffffff;
}

.page-content p {
  margin-bottom: 20px;
}

.page-container h1::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #ff5a1f;
  margin-top: 20px;
}


/* ===============================
   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;
  }
}


html {
  scroll-behavior: smooth;
}


/* =========================
   HERO MOBILE FIX
========================= */

@media (max-width: 768px) {

  .hero {
    height: 92vh;
    padding: 0 20px;
  }

  .hero-content h1 {
    font-size: clamp(2.2rem, 7vw, 3rem);
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 15px;
    margin-bottom: 22px;
  }

  .cta-btn {
    padding: 14px 26px;
    font-size: 14px;
  }

}

@media (max-width: 768px) {
  .hero-bg {
    transform: scale(1);
    background-position: center top;
  }
}


/*=======================
        fix button
======================*/

.hero-overlay {
  pointer-events: none;
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;  /* MUST be higher */
  text-align: center;
  color: #fff;
}

.hero-content { z-index: 3; }

.cta-btn {
  background: #e04b1a;
  color: #fff;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #ff5a22;
  transform: scale(1.05);
}

.cta-btn:active {
  transform: scale(0.96);
  background: #c63f14;
}

.cta-btn:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(224,75,26,0.4);
}
