/* ===== BOBBY MEHNDI ARTIST - MAIN CSS ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Cormorant+Garamond:wght@300;400;600&family=Great+Vibes&display=swap');

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #8B6914;
  --black: #0A0A0A;
  --dark: #111111;
  --dark2: #1A1A1A;
  --dark3: #222222;
  --crimson: #8B1A2F;
  --white: #F5F0E8;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* ===== NAVBAR ===== */
.navbar {
  background: rgba(10, 10, 10, 0.97) !important;
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
  padding: 10px 0;
  backdrop-filter: blur(10px);
}

.navbar-brand img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201, 168, 76, 0.4);
}

.navbar-brand span {
  font-family: 'Great Vibes', cursive;
  font-size: 1.8rem;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(201, 168, 76, 0.4);
  margin-left: 10px;
}

.nav-link {
  color: var(--white) !important;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 14px !important;
  transition: all 0.3s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  right: 50%;
  height: 1px;
  background: var(--gold);
  transition: all 0.3s;
}

.nav-link:hover::after,
.nav-link.active-link::after {
  left: 14px;
  right: 14px;
}

.nav-link:hover,
.nav-link.active-link {
  color: var(--gold) !important;
}

.navbar-toggler {
  border-color: var(--gold);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23C9A84C' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== BUTTONS ===== */
.btn-gold {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 12px 32px;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-100%);
  transition: transform 0.4s;
  z-index: -1;
}

.btn-gold:hover {
  color: var(--black);
}

.btn-gold:hover::before {
  transform: translateX(0);
}

.btn-gold-fill {
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 12px 32px;
  transition: all 0.4s;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.btn-gold-fill:hover {
  background: transparent;
  color: var(--gold);
}

/* ===== SECTION HEADERS ===== */
.section-label {
  font-size: 0.75rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 0.5rem;
}

.section-title span {
  color: var(--gold);
  font-style: italic;
}

.gold-divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 16px auto;
}

/* ===== PAGE HERO ===== */
.page-hero {
  min-height: 40vh;
  background: var(--dark2);
  display: flex;
  align-items: flex-end;
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
}

.page-hero h1 {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(3rem, 7vw, 5rem);
  color: var(--gold);
  position: relative;
  z-index: 1;
}

.breadcrumb-gold {
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: rgba(245, 240, 232, 0.4);
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

/* ===== STATS ===== */
.stats-section {
  padding: 50px 0;
  background: var(--dark2);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.stat-item {
  text-align: center;
  padding: 16px;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.4);
}

/* ===== SERVICE CARDS ===== */
.service-card {
  border: 1px solid rgba(201, 168, 76, 0.2);
  background: var(--dark2);
  padding: 36px 24px;
  text-align: center;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  height: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.service-card:hover {
  border-color: rgba(201, 168, 76, 0.5);
  transform: translateY(-5px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 60px;
  height: 60px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
  color: var(--gold);
  transition: all 0.3s;
}

.service-card:hover .service-icon {
  background: var(--gold);
  color: var(--black);
}

.service-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.7;
  margin: 0;
}

/* ===== SERVICE DETAIL ===== */
.service-detail-card {
  border: 1px solid rgba(201, 168, 76, 0.2);
  background: var(--dark2);
  padding: 44px 36px;
  transition: all 0.4s;
  position: relative;
  height: 100%;
}

.service-detail-card:hover {
  border-color: rgba(201, 168, 76, 0.5);
}

.service-number {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: rgba(201, 168, 76, 0.1);
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
}

.service-detail-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 14px;
}

.service-detail-card p {
  color: rgba(245, 240, 232, 0.65);
  line-height: 1.8;
  font-size: 0.95rem;
}

.service-tag {
  display: inline-block;
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: rgba(245, 240, 232, 0.5);
  font-size: 0.72rem;
  letter-spacing: 1px;
  padding: 3px 10px;
  margin: 4px 2px 0;
}

/* ===== CAROUSEL ===== */
.carousel-item-custom {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.carousel-item-custom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.85) sepia(0.2);
}

.carousel-item-custom:hover img {
  transform: scale(1.05);
}

.carousel-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 36px 20px 20px;
}

.carousel-overlay h5 {
  font-family: 'Great Vibes', cursive;
  font-size: 1.6rem;
  color: var(--gold);
  margin: 0;
}

.custom-carousel-btn {
  width: 46px;
  height: 46px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s;
  cursor: pointer;
}

.custom-carousel-btn:hover {
  background: var(--gold);
  color: var(--black);
}

/* ===== GALLERY ===== */
.gallery-grid {
  columns: 3;
  gap: 12px;
}

@media(max-width:768px) {
  .gallery-grid {
    columns: 2;
  }
}

@media(max-width:480px) {
  .gallery-grid {
    columns: 1;
  }
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  display: block;
  filter: brightness(0.85) sepia(0.15);
  transition: all 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(201, 168, 76, 0.1);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay i {
  font-size: 2rem;
  color: var(--white);
}

.filter-btn {
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: rgba(245, 240, 232, 0.6);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 18px;
  margin: 4px;
  cursor: pointer;
  transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  border: 1px solid rgba(201, 168, 76, 0.15);
  background: var(--dark2);
  padding: 36px;
  position: relative;
  height: 100%;
}

.quote-icon {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: rgba(201, 168, 76, 0.15);
  line-height: 0.8;
  margin-bottom: 16px;
}

.testimonial-card p {
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.7);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 20px;
}

.testimonial-name {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 0.95rem;
}

.stars {
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 8px;
}

/* ===== GALLERY MEHNDI PLACEHOLDER ===== */
.mehndi-img {
  background: var(--dark3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(201, 168, 76, 0.2);
  font-size: 3rem;
  width: 100%;
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  padding: 60px 0 30px;
}

.footer-brand {
  font-family: 'Great Vibes', cursive;
  font-size: 2.8rem;
  color: var(--gold);
  margin-bottom: 14px;
}

.footer-text {
  color: rgba(245, 240, 232, 0.4);
  font-size: 0.92rem;
  line-height: 1.8;
  max-width: 300px;
}

.footer-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-link {
  color: rgba(245, 240, 232, 0.5);
  text-decoration: none;
  font-size: 0.92rem;
  display: block;
  margin-bottom: 9px;
  transition: color 0.3s;
  cursor: pointer;
}

.footer-link:hover {
  color: var(--gold);
}

.social-btn {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 240, 232, 0.5);
  font-size: 0.95rem;
  transition: all 0.3s;
  text-decoration: none;
  margin-right: 7px;
}

.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
}

.footer-bottom {
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  margin-top: 36px;
  padding-top: 20px;
  color: rgba(245, 240, 232, 0.25);
  font-size: 0.82rem;
}

/* ===== WHATSAPP ===== */
.wa-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
  }
}

/* ===== HERO ===== */
.hero-section {
  min-height: 100vh;
  background: var(--black);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 50%), radial-gradient(ellipse at 80% 20%, rgba(139, 26, 47, 0.08) 0%, transparent 40%);
}

.gold-circle {
  position: absolute;
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}

.gc1 {
  width: 560px;
  height: 560px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.gc2 {
  width: 360px;
  height: 360px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-direction: reverse;
}

.gc3 {
  width: 180px;
  height: 180px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(4rem, 10vw, 7.5rem);
  color: var(--gold);
  line-height: 0.9;
  text-shadow: 0 0 40px rgba(201, 168, 76, 0.3);
  margin-bottom: 0.5rem;
}

.hero-title2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(0.9rem, 2vw, 1.3rem);
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.6;
  margin-bottom: 1.8rem;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(245, 240, 232, 0.65);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 2.2rem;
}

/* ===== LOGO CIRCLE ===== */
.logo-circle {
  width: 300px;
  height: 300px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

.logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-ring {
  position: absolute;
  width: 360px;
  height: 360px;
  border: 1px dashed rgba(201, 168, 76, 0.1);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: rotate 30s linear infinite;
  pointer-events: none;
}

/* ===== SECTIONS ===== */
.section-pad {
  padding: 80px 0;
}

.bg-dark2 {
  background: var(--dark2);
}

.bg-black {
  background: var(--black);
}

@media(max-width:768px) {
  .hero-title {
    font-size: 4rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}




.carousel-bg-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.6s ease;
  filter: brightness(0.8);
}
.carousel-item-custom:hover .carousel-bg-img {
  transform: scale(1.05);
  filter: brightness(1);
}



.gallery-thumb {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
  filter: brightness(0.85) sepia(0.1);
}
.gallery-item:hover .gallery-thumb {
  transform: scale(1.08);
  filter: brightness(1) sepia(0);
}