@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --makeup-primary: #c9a0a0;
  --makeup-secondary: #d4a5a5;
  --makeup-accent: #e8c4c4;
  --makeup-gold: #d4af37;
  --makeup-rose-gold: #b76e79;
  --makeup-champagne: #f7e7ce;
  --makeup-blush: #fadadd;
  --makeup-nude: #e3bc9a;
  --makeup-mauve: #b57281;
  --makeup-dark: #2d2d2d;
  --makeup-text: #4a4a4a;
  --makeup-light: #faf5f5;
  --makeup-white: #ffffff;
  --makeup-gradient: linear-gradient(135deg, #c9a0a0 0%, #d4af37 50%, #b76e79 100%);
  --makeup-gradient-soft: linear-gradient(135deg, #fadadd 0%, #f7e7ce 50%, #e8c4c4 100%);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--makeup-text);
  background-color: var(--makeup-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

.makeup-hero {
  background: linear-gradient(135deg, rgba(201, 160, 160, 0.15) 0%, rgba(247, 231, 206, 0.2) 50%, rgba(183, 110, 121, 0.1) 100%);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.makeup-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23d4af3715"/></svg>') repeat;
  background-size: 30px 30px;
  opacity: 0.5;
}

.makeup-hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}

.makeup-title {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 600;
  color: var(--makeup-dark);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.makeup-title span {
  background: var(--makeup-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.makeup-subtitle {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--makeup-rose-gold);
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.makeup-description {
  font-size: 1.1rem;
  color: var(--makeup-text);
  line-height: 1.8;
  max-width: 500px;
}

.makeup-btn {
  display: inline-block;
  padding: 16px 40px;
  background: var(--makeup-gradient);
  color: var(--makeup-white);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(183, 110, 121, 0.3);
  text-decoration: none;
}

.makeup-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(183, 110, 121, 0.4);
  color: var(--makeup-white);
}

.makeup-btn-outline {
  background: transparent;
  border: 2px solid var(--makeup-rose-gold);
  color: var(--makeup-rose-gold);
  box-shadow: none;
}

.makeup-btn-outline:hover {
  background: var(--makeup-rose-gold);
  color: var(--makeup-white);
}

.makeup-section {
  padding: 100px 0;
  position: relative;
}

.makeup-section-light {
  background: var(--makeup-light);
}

.makeup-section-gradient {
  background: var(--makeup-gradient-soft);
}

.makeup-section-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--makeup-dark);
  margin-bottom: 1rem;
  text-align: center;
}

.makeup-section-subtitle {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--makeup-rose-gold);
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.makeup-divider {
  width: 80px;
  height: 2px;
  background: var(--makeup-gradient);
  margin: 0 auto 2rem;
}

.makeup-card {
  background: var(--makeup-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(183, 110, 121, 0.1);
  transition: all 0.4s ease;
  border: 1px solid rgba(201, 160, 160, 0.1);
}

.makeup-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 70px rgba(183, 110, 121, 0.15);
}

.makeup-card-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.makeup-card-body {
  padding: 30px;
  text-align: center;
}

.makeup-card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--makeup-dark);
  margin-bottom: 1rem;
}

.makeup-card-text {
  color: var(--makeup-text);
  line-height: 1.7;
  font-size: 0.95rem;
}

.makeup-service-icon {
  width: 80px;
  height: 80px;
  background: var(--makeup-gradient-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--makeup-rose-gold);
  transition: all 0.4s ease;
}

.makeup-card:hover .makeup-service-icon {
  background: var(--makeup-gradient);
  color: var(--makeup-white);
}

.makeup-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 30px;
}

.makeup-gallery-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.makeup-gallery-item:hover img {
  transform: scale(1.1);
}

.makeup-gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(45, 45, 45, 0.9) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.makeup-gallery-item:hover .makeup-gallery-overlay {
  opacity: 1;
}

.makeup-gallery-text {
  color: var(--makeup-white);
}

.makeup-gallery-text h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.makeup-gallery-text p {
  font-size: 0.9rem;
  opacity: 0.8;
}

.makeup-testimonial {
  background: var(--makeup-white);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 15px 50px rgba(183, 110, 121, 0.1);
  position: relative;
}

.makeup-testimonial::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 8rem;
  color: var(--makeup-accent);
  position: absolute;
  top: -20px;
  left: 30px;
  opacity: 0.3;
}

.makeup-testimonial-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--makeup-text);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.makeup-testimonial-author {
  font-weight: 600;
  color: var(--makeup-rose-gold);
}

.makeup-testimonial-role {
  font-size: 0.9rem;
  color: var(--makeup-text);
  opacity: 0.7;
}

.makeup-stats {
  text-align: center;
  padding: 30px 20px;
}

.makeup-stats-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  background: var(--makeup-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.makeup-stats-label {
  font-size: 0.95rem;
  color: var(--makeup-text);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.makeup-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 15px 0;
  transition: all 0.4s ease;
  background: transparent;
}

.makeup-header.scrolled {
  background: var(--makeup-white);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  padding: 10px 0;
}

.makeup-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--makeup-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.makeup-logo span {
  color: var(--makeup-rose-gold);
}

.makeup-nav-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--makeup-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 20px;
  transition: color 0.3s ease;
  text-decoration: none;
}

.makeup-nav-link:hover {
  color: var(--makeup-rose-gold);
}

.makeup-footer {
  background: var(--makeup-dark);
  color: var(--makeup-white);
  padding: 80px 0 30px;
}

.makeup-footer-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--makeup-champagne);
}

.makeup-footer-text {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  font-size: 0.95rem;
}

.makeup-footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  display: block;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.makeup-footer-link:hover {
  color: var(--makeup-champagne);
  padding-left: 10px;
}

.makeup-social-link {
  display: inline-flex;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: var(--makeup-white);
  margin-right: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.makeup-social-link:hover {
  background: var(--makeup-rose-gold);
  color: var(--makeup-white);
  transform: translateY(-3px);
}

.makeup-contact-box {
  background: var(--makeup-white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(183, 110, 121, 0.1);
}

.makeup-input {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid var(--makeup-accent);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--makeup-white);
  color: var(--makeup-text);
  margin-bottom: 20px;
}

.makeup-input:focus {
  border-color: var(--makeup-rose-gold);
  outline: none;
  box-shadow: 0 0 0 4px rgba(183, 110, 121, 0.1);
}

.makeup-input::placeholder {
  color: var(--makeup-secondary);
}

textarea.makeup-input {
  min-height: 150px;
  resize: vertical;
}

.makeup-floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  overflow: hidden;
}

.makeup-float-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
}

.makeup-float-circle-1 {
  width: 300px;
  height: 300px;
  background: var(--makeup-blush);
  top: -150px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.makeup-float-circle-2 {
  width: 200px;
  height: 200px;
  background: var(--makeup-champagne);
  bottom: -100px;
  left: -50px;
  animation: float 10s ease-in-out infinite reverse;
}

.makeup-float-circle-3 {
  width: 150px;
  height: 150px;
  background: var(--makeup-accent);
  top: 50%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(10deg);
  }
}

.makeup-image-frame {
  position: relative;
  display: inline-block;
}

.makeup-image-frame::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 3px solid var(--makeup-rose-gold);
  border-radius: 20px;
  z-index: -1;
}

.makeup-image-frame img {
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.makeup-price-tag {
  display: inline-block;
  padding: 8px 20px;
  background: var(--makeup-gradient);
  color: var(--makeup-white);
  font-weight: 600;
  border-radius: 20px;
  font-size: 0.9rem;
}

.makeup-badge {
  display: inline-block;
  padding: 5px 15px;
  background: var(--makeup-blush);
  color: var(--makeup-rose-gold);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.makeup-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.makeup-feature-list li {
  padding: 12px 0;
  padding-left: 35px;
  position: relative;
  color: var(--makeup-text);
  border-bottom: 1px solid var(--makeup-accent);
}

.makeup-feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--makeup-rose-gold);
  font-weight: 700;
  width: 24px;
  height: 24px;
  background: var(--makeup-blush);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.makeup-page-header {
  background: var(--makeup-gradient-soft);
  padding: 150px 0 80px;
  text-align: center;
  position: relative;
}

.makeup-page-header h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--makeup-dark);
  margin-bottom: 1rem;
}

.makeup-breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 0.95rem;
}

.makeup-breadcrumb a {
  color: var(--makeup-rose-gold);
  text-decoration: none;
}

.makeup-breadcrumb span {
  color: var(--makeup-text);
}

@media (max-width: 991px) {
  .makeup-title {
    font-size: 3rem;
  }
  
  .makeup-section-title {
    font-size: 2.2rem;
  }
  
  .makeup-hero-content {
    text-align: center;
  }
  
  .makeup-description {
    margin: 0 auto 2rem;
  }
}

@media (max-width: 767px) {
  .makeup-title {
    font-size: 2.5rem;
  }
  
  .makeup-section-title {
    font-size: 1.8rem;
  }
  
  .makeup-section {
    padding: 60px 0;
  }
  
  .makeup-card-img {
    height: 220px;
  }
  
  .makeup-gallery-item img {
    height: 280px;
  }
}

.makeup-hero-images {
  position: relative;
}

.makeup-hero-main-img {
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(183, 110, 121, 0.2);
  border: 5px solid var(--makeup-white);
}

.makeup-hero-secondary-img {
  position: absolute;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 20px;
  border: 4px solid var(--makeup-white);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.makeup-hero-img-1 {
  bottom: -30px;
  left: -30px;
}

.makeup-hero-img-2 {
  top: 50px;
  right: -30px;
}

.shimmer {
  background: linear-gradient(90deg, var(--makeup-champagne) 0%, var(--makeup-white) 50%, var(--makeup-champagne) 100%);
  background-size: 200% 100%;
  animation: shimmer 2s infinite linear;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.preloader {
  background: linear-gradient(135deg, #fadadd 0%, #f7e7ce 50%, #e8c4c4 100%) !important;
}

.loader {
  border-color: rgba(183, 110, 121, 0.2) !important;
  border-top-color: #b76e79 !important;
}

.progress-wrap {
  background: linear-gradient(135deg, #c9a0a0 0%, #b76e79 100%) !important;
}

.progress-wrap svg.progress-circle path {
  stroke: #fff !important;
}
