/*
 * Faces By Divya Pandit - Dark Theme
 * Colors: Black, Golden, Pink, Brown
 */

:root {
  --primary-black: #1a1a1a;
  --secondary-black: #2d2d2d;
  --accent-gold: #d4af37;
  --accent-gold-light: #f4d03f;
  --accent-pink: #e91e63;
  --accent-pink-light: #f48fb1;
  --accent-brown: #8b4513;
  --accent-brown-light: #a0522d;
  --text-light: #ffffff;
  --text-muted: #b0b0b0;
  --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
  --gradient-pink: linear-gradient(135deg, #e91e63 0%, #f48fb1 100%);
}

/* ===== GLOBAL STYLES ===== */
body {
  background-color: var(--primary-black) !important;
  color: var(--text-light) !important;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-light) !important;
}

p {
  color: var(--text-muted) !important;
}

a {
  color: var(--accent-gold) !important;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent-pink) !important;
  text-decoration: none;
}

/* ===== LOGO STYLES ===== */
.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.logo-container-topleft {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1000;
}

.hero-logo {
  background: transparent !important;
  filter: drop-shadow(0 4px 20px rgba(212, 175, 55, 0.5));
}

.navbar-brand {
  padding: 5px !important;
}

.navbar-brand img {
  background: transparent !important;
  filter: drop-shadow(0 2px 10px rgba(212, 175, 55, 0.4));
}

.logo-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
  position: relative;
}

.logo-icon::before {
  content: '';
  position: absolute;
  width: 90px;
  height: 90px;
  border: 2px solid var(--accent-gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}

.logo-icon span {
  font-size: 40px;
  color: var(--primary-black);
}

.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 28px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.logo-tagline {
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--accent-pink) !important;
  text-transform: uppercase;
  margin-top: 5px;
}

/* ===== NAVBAR ===== */
.navbar,
.ftco_navbar,
.ftco-navbar-light {
  background: var(--primary-black) !important;
  border-bottom: 1px solid var(--accent-gold);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.5rem !important;
}

.navbar-nav .nav-link {
  color: var(--text-light) !important;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 20px !important;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-item.active .nav-link {
  color: var(--accent-gold) !important;
}

.navbar-toggler {
  border-color: var(--accent-gold) !important;
}

.navbar-toggler .oi-menu {
  color: var(--accent-gold) !important;
}

/* ===== HERO SECTION ===== */
.hero-wrap {
  position: relative;
}

.hero-wrap .overlay {
  background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.9) 100%) !important;
}

.hero-wrap h1 {
  color: var(--text-light) !important;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-wrap .logo h1 {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2.5rem;
}

.hero-wrap .logo .flaticon-flower::before {
  color: var(--accent-gold) !important;
}

/* ===== SECTIONS ===== */
section {
  background-color: var(--primary-black) !important;
}

section.bg-light {
  background-color: var(--secondary-black) !important;
}

.ftco-section {
  background-color: var(--primary-black) !important;
}

.ftco-section.bg-light {
  background-color: var(--secondary-black) !important;
}

/* ===== HEADINGS ===== */
.heading-section h2 {
  color: var(--text-light) !important;
  position: relative;
  display: inline-block;
}

.heading-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: 2px;
}

/* ===== SERVICE CARDS ===== */
.services {
  background: var(--secondary-black) !important;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 15px;
  padding: 40px 30px !important;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.services:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
  border-color: var(--accent-gold);
}

.services:hover::before {
  transform: scaleX(1);
}

.services .icon span {
  color: var(--accent-gold) !important;
  font-size: 50px;
  transition: all 0.3s ease;
}

.services:hover .icon span {
  color: var(--accent-pink) !important;
  transform: scale(1.1);
}

.services .heading {
  color: var(--text-light) !important;
  font-weight: 600;
}

.services p {
  color: var(--text-muted) !important;
}

/* ===== SERVICE SELECTOR CARDS ===== */
.service-selector-card {
  background: var(--secondary-black) !important;
  border: 2px solid rgba(212, 175, 55, 0.3) !important;
  border-radius: 20px !important;
  transition: all 0.4s ease;
}

.service-selector-card:hover {
  border-color: var(--accent-gold) !important;
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

.service-selector-card h3 {
  color: var(--text-light) !important;
}

.service-selector-card p {
  color: var(--text-muted) !important;
}

.service-selector-card .icon span {
  color: var(--accent-gold) !important;
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--gradient-gold) !important;
  border: none !important;
  color: var(--primary-black) !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 30px !important;
  border-radius: 30px !important;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  background: var(--gradient-pink) !important;
  color: var(--text-light) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
}

.btn-outline-primary {
  background: transparent !important;
  border: 2px solid var(--accent-gold) !important;
  color: var(--accent-gold) !important;
  font-weight: 600 !important;
  padding: 12px 30px !important;
  border-radius: 30px !important;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover,
.btn-outline-primary.active {
  background: var(--gradient-gold) !important;
  color: var(--primary-black) !important;
  border-color: var(--accent-gold) !important;
}

.btn-white,
.btn-outline-white {
  background: transparent !important;
  border: 2px solid var(--accent-gold) !important;
  color: var(--accent-gold) !important;
  font-weight: 600 !important;
  border-radius: 30px !important;
  transition: all 0.3s ease;
}

.btn-white:hover,
.btn-outline-white:hover {
  background: var(--accent-gold) !important;
  color: var(--primary-black) !important;
}

/* ===== STAFF/TEAM SECTION ===== */
.staff {
  background: var(--secondary-black) !important;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
}

.staff:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.staff .info h3 a {
  color: var(--text-light) !important;
}

.staff .position {
  color: var(--accent-gold) !important;
  font-weight: 500;
}

.staff .text p {
  color: var(--text-muted) !important;
}

/* ===== PRICING SECTION ===== */
.pricing-entry {
  background: var(--secondary-black) !important;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.pricing-entry:hover,
.pricing-entry.active {
  border-color: var(--accent-gold);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.pricing-entry.active {
  background: linear-gradient(135deg, var(--secondary-black) 0%, rgba(212, 175, 55, 0.1) 100%) !important;
}

.pricing-entry h3 {
  color: var(--accent-gold) !important;
}

.pricing-entry .price {
  color: var(--accent-pink) !important;
  font-size: 2.5rem;
  font-weight: 700;
}

.pricing-entry .per {
  color: var(--text-muted) !important;
}

.pricing-entry ul li {
  color: var(--text-muted) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 0;
}

/* ===== WORK/PORTFOLIO SECTION ===== */
.work-entry {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.work-entry .info {
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
}

.work-entry h3 {
  color: var(--text-light) !important;
}

.work-entry .icon span {
  color: var(--accent-gold) !important;
}

/* ===== COUNTER SECTION ===== */
.ftco-counter .overlay {
  background: rgba(0, 0, 0, 0.85) !important;
}

.block-18 .icon span {
  color: var(--accent-gold) !important;
}

.block-18 span {
  color: var(--text-muted) !important;
}

.block-18 .number {
  color: var(--accent-pink) !important;
  font-size: 3rem;
}

/* ===== DISCOUNT SECTION ===== */
.ftco-discount .overlay {
  background: rgba(0, 0, 0, 0.85) !important;
}

.discount h3 {
  color: var(--accent-gold) !important;
}

.discount h2 {
  color: var(--text-light) !important;
}

/* ===== APPOINTMENT SECTION ===== */
.ftco-appointment {
  background: var(--secondary-black) !important;
}

.ftco-appointment .overlay {
  background: var(--secondary-black) !important;
}

.appointment-info {
  background: var(--primary-black) !important;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 15px;
}

.appointment-info h3 {
  color: var(--accent-gold) !important;
}

.appointment h3 {
  color: var(--text-light) !important;
}

/* ===== FORMS ===== */
.form-control {
  background: var(--secondary-black) !important;
  border: 1px solid rgba(212, 175, 55, 0.3) !important;
  color: #ffffff !important;
  border-radius: 10px !important;
  padding: 15px 20px !important;
  transition: all 0.3s ease;
  -webkit-text-fill-color: #ffffff !important;
}

.form-control:focus {
  border-color: var(--accent-gold) !important;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2) !important;
  background: var(--primary-black) !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.form-control::placeholder {
  color: #b0b0b0 !important;
  -webkit-text-fill-color: #b0b0b0 !important;
  opacity: 1;
}

.form-control::-webkit-input-placeholder {
  color: #b0b0b0 !important;
  -webkit-text-fill-color: #b0b0b0 !important;
}

.form-control::-moz-placeholder {
  color: #b0b0b0 !important;
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: #b0b0b0 !important;
}

input.form-control,
textarea.form-control {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

input.form-control:focus,
textarea.form-control:focus {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

select.form-control {
  background: var(--secondary-black) !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

select.form-control option {
  background: var(--primary-black);
  color: #ffffff;
}

/* Fix for autofill styles */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: #ffffff !important;
  -webkit-box-shadow: 0 0 0px 1000px #2d2d2d inset !important;
  box-shadow: 0 0 0px 1000px #2d2d2d inset !important;
  border: 1px solid rgba(212, 175, 55, 0.3) !important;
}

.input-wrap .icon {
  color: var(--accent-gold) !important;
}

.input-wrap .icon span {
  color: var(--accent-gold) !important;
}

/* ===== BLOG SECTION ===== */
.blog-entry {
  background: var(--secondary-black) !important;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.blog-entry .text {
  background: var(--secondary-black) !important;
}

.blog-entry .heading a {
  color: var(--text-light) !important;
}

.blog-entry .heading a:hover {
  color: var(--accent-gold) !important;
}

.blog-entry .meta div a {
  color: var(--text-muted) !important;
}

/* ===== FOOTER ===== */
.ftco-footer {
  background: var(--primary-black) !important;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.ftco-footer .overlay {
  background: var(--primary-black) !important;
}

.ftco-footer h2 {
  color: var(--accent-gold) !important;
  font-size: 1.2rem;
  font-weight: 600;
}

.ftco-footer p {
  color: var(--text-muted) !important;
}

.ftco-footer ul li a {
  color: var(--text-muted) !important;
}

.ftco-footer ul li a:hover {
  color: var(--accent-gold) !important;
}

.ftco-footer-social li a {
  background: var(--secondary-black) !important;
  border: 1px solid var(--accent-gold) !important;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.ftco-footer-social li a span {
  color: var(--accent-gold) !important;
}

.ftco-footer-social li a:hover {
  background: var(--accent-gold) !important;
}

.ftco-footer-social li a:hover span {
  color: var(--primary-black) !important;
}

.block-21 .text .heading a {
  color: var(--text-light) !important;
}

.block-23 ul li span.icon {
  color: var(--accent-gold) !important;
}

.block-23 ul li .text {
  color: var(--text-muted) !important;
}

/* ===== CONTACT PAGE ===== */
.contact-info h2 {
  color: var(--accent-gold) !important;
}

.contact-info p span {
  color: var(--accent-gold) !important;
  font-weight: 600;
}

.contact-form h2 {
  color: var(--text-light) !important;
}

/* ===== ALERT MESSAGES ===== */
.alert-success {
  background: rgba(40, 167, 69, 0.2) !important;
  border-color: #28a745 !important;
  color: #28a745 !important;
  border-radius: 10px;
}

.alert-danger {
  background: rgba(220, 53, 69, 0.2) !important;
  border-color: #dc3545 !important;
  color: #dc3545 !important;
  border-radius: 10px;
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs span {
  color: var(--text-muted) !important;
}

.breadcrumbs span a {
  color: var(--accent-gold) !important;
}

/* ===== TRAINING CLASSES SECTION ===== */
.training-section {
  background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%) !important;
  position: relative;
  overflow: hidden;
}

.training-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-gold);
}

.training-card {
  background: var(--secondary-black);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.training-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.training-card:hover::before {
  opacity: 1;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%) rotate(45deg); }
  100% { transform: translateX(100%) rotate(45deg); }
}

.training-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(212, 175, 55, 0.3);
}

.training-card .icon {
  width: 100px;
  height: 100px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.training-card .icon span {
  font-size: 45px;
  color: var(--primary-black) !important;
}

.training-card h3 {
  color: var(--text-light) !important;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.training-card p {
  color: var(--text-muted) !important;
  margin-bottom: 20px;
}

.training-card .features {
  text-align: left;
  margin-bottom: 25px;
}

.training-card .features li {
  color: var(--text-muted) !important;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
}

.training-card .features li::before {
  content: '\2713';
  color: var(--accent-gold);
  margin-right: 10px;
  font-weight: bold;
}

.training-card .certificate-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-brown) 100%);
  color: var(--text-light) !important;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.training-card .certificate-badge span {
  margin-right: 8px;
}

.training-card .price-tag {
  font-size: 2rem;
  color: var(--accent-gold) !important;
  font-weight: 700;
  margin-bottom: 20px;
}

.training-card .price-tag small {
  font-size: 1rem;
  color: var(--text-muted) !important;
}

/* ===== PARTNER SECTION ===== */
.ftco-partner {
  background: var(--secondary-black) !important;
}

.partner-entry {
  background: var(--primary-black);
  padding: 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.partner-entry:hover {
  transform: scale(1.05);
}

/* ===== LOADER ===== */
#ftco-loader {
  background: var(--primary-black) !important;
}

#ftco-loader .path {
  stroke: var(--accent-gold) !important;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--primary-black);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-gold);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-pink);
}

/* ===== FLATICON COLORS ===== */
[class^="flaticon-"]::before,
[class*=" flaticon-"]::before {
  color: var(--accent-gold) !important;
}

/* ===== CARD STYLING ===== */
.card {
  background: var(--secondary-black) !important;
  border: 1px solid rgba(212, 175, 55, 0.2) !important;
}

/* ===== MAP SECTION ===== */
#map {
  filter: grayscale(100%) invert(92%) contrast(83%);
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
  .logo-text {
    font-size: 20px;
  }

  .training-card {
    margin-bottom: 30px;
  }

  .btn-group {
    flex-direction: column;
  }

  .btn-group .btn {
    margin-bottom: 10px;
    border-radius: 30px !important;
  }
}
