/* Color Palette - Pink Theme Redesign */
/* Updated CSS variables for pink color scheme */
:root {
  /* New Pink Color Palette */
  --soft-rose-pink: #F8BBD9;
  --dusty-rose: #E4A5C7;
  --blush-pink: #F5E6F0;
  --rose-gold: #E8B4A0;
  --deep-mauve: #B85C8A;
  --cream-white: #FFF8F5;
  --soft-lavender: #E6D7F0;
  --warm-gray: #8B7D7B;
  
  /* Legacy colors for compatibility */
  --gold: var(--rose-gold);
  --dark-gold: #D4A574;
  --light-gold: var(--blush-pink);
  --dark-blue: var(--deep-mauve);
  --light-blue: var(--dusty-rose);
  --pink: var(--soft-rose-pink);
  --light-pink: var(--blush-pink);
  --white: #ffffff;
  --light-gray: var(--cream-white);
  --dark-gray: var(--warm-gray);
  --black: #000000;
  --shadow: rgba(184, 92, 138, 0.3);

  /* Theme variables updated for pink scheme */
  --theme-Main-bg-ft: var(--deep-mauve);
  --theme-Button: var(--rose-gold);
  --theme-header: var(--deep-mauve);
  --theme-content: var(--cream-white);
  --theme-text-col1: var(--cream-white);
  --theme-text-col2: var(--warm-gray);
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  background-color: var(--white);
  color: var(--warm-gray);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header Styles */
header {
  background: linear-gradient(135deg, var(--deep-mauve) 0%, var(--dusty-rose) 100%);
  box-shadow: 0 4px 20px rgba(184, 92, 138, 0.3);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  margin-right: 10px;
  filter: drop-shadow(0 2px 4px rgba(184, 92, 138, 0.3));
}

.logo h1 {
  color: var(--rose-gold);
  font-size: 1.8rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Navigation Styles */
nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 25px;
}

nav ul li a {
  color: var(--cream-white);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 16px;
  border-radius: 20px;
}

nav ul li a:hover {
  color: var(--rose-gold);
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

nav ul li a.active {
  color: var(--rose-gold);
  background-color: rgba(232, 180, 160, 0.2);
}

nav ul li a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background-color: var(--rose-gold);
  border-radius: 2px;
}

.stars i {
  color: var(--rose-gold);
  font-size: 1.5em;
  transition: transform 0.2s ease;
}

.stars i:hover {
  transform: scale(1.2);
}

.testimonial-section {
  max-width: 800px; 
  margin: 0 auto; 
  text-align: center;
}

.testimony-text {
  font-size: 1.2rem; 
  font-style: italic;
  margin-bottom: 20px;
  color: var(--warm-gray);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--cream-white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.mobile-menu-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Main Content Styles */
main {
  margin-top: 80px;
  min-height: calc(100vh - 80px - 100px);
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(184, 92, 138, 0.8), rgba(228, 165, 199, 0.8)), url('../images/placeholders/index-bg-2-min.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
  padding: 100px 0;
}

.services-bg-img {
  background: linear-gradient(rgba(184, 92, 138, 0.8), rgba(228, 165, 199, 0.8)), url('../images/placeholders/service-bg-1-min.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.about-bg-img {
  background: linear-gradient(rgba(184, 92, 138, 0.8), rgba(228, 165, 199, 0.8)), url('../images/placeholders/about-img1-min.jpg');
  background-size: cover; 
  background-repeat: no-repeat;
  background-position: center;
}

.gallery-bg-img {
  background: linear-gradient(rgba(184, 92, 138, 0.8), rgba(228, 165, 199, 0.8)), url('../images/placeholders/gallery-bg-1-min.jpg');
  background-size: cover; 
  background-repeat: no-repeat;
  background-position: center;
}

.contact-bg-img {
  background: linear-gradient(rgba(184, 92, 138, 0.8), rgba(228, 165, 199, 0.8)), url('../images/placeholders/contact-img-1.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--rose-gold);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 30px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--rose-gold) 0%, var(--dusty-rose) 100%);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--rose-gold);
  box-shadow: 0 4px 15px rgba(232, 180, 160, 0.4);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn:hover {
  background: linear-gradient(135deg, var(--dusty-rose) 0%, var(--soft-rose-pink) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 180, 160, 0.6);
}

/* Section Styles */
.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--deep-mauve);
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--rose-gold) 0%, var(--dusty-rose) 100%);
  border-radius: 2px;
}

/* Home Page Styles */
.home-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.home-intro-text {
  flex: 1;
}

.home-intro-text h3 {
  font-size: 1.8rem;
  color: var(--deep-mauve);
  margin-bottom: 20px;
}

.home-intro-text p {
  margin-bottom: 25px;
  color: var(--warm-gray);
}

.home-intro-image {
  flex: 1;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(184, 92, 138, 0.3);
  transition: transform 0.3s ease;
}

.home-intro-image:hover {
  transform: translateY(-5px);
}

.home-intro-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Services Section */
.service-packages {
  background: linear-gradient(135deg, var(--deep-mauve) 0%, var(--dusty-rose) 100%);
  color: var(--white); 
  padding: 30px; 
  border-radius: 15px; 
  text-align: center;
  box-shadow: 0 8px 25px rgba(184, 92, 138, 0.3);
}

.service-details {
  color: var(--rose-gold); 
  margin-bottom: 15px; 
  font-size: 1.5rem;
}

.service-price {
  color: var(--rose-gold); 
  font-size: 1.5rem; 
  font-weight: 700; 
  margin-bottom: 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.eyelash-mod {
  width: 100%;
  height: 400px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 10px;
}

.eyelash-mod img {
  flex: 1 1 0;
  max-width: 50%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.cneter-T {
  padding-left: 18%;
  padding-right: 18%;
}

.service-card {
  background-color: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(184, 92, 138, 0.2);
  transition: all 0.3s ease;
  border: 1px solid var(--blush-pink);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(184, 92, 138, 0.3);
  border-color: var(--dusty-rose);
}

.service-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.img-mod {
  width: 100%;
  height: 300px;
  display: flex;
  border-radius: 10px;
  overflow: hidden;
}

.img-mod img {
  flex: 1;
  height: 100%;
  object-fit: contain; 
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.1);
}

.service-card-content {
  padding: 20px;
}

.service-card-content h3 {
  font-size: 1.3rem;
  color: var(--deep-mauve);
  margin-bottom: 10px;
}

.service-card-content p {
  margin-bottom: 15px;
  color: var(--warm-gray);
}

.service-price {
  color: var(--rose-gold);
  font-weight: 700;
  font-size: 1.2rem;
}

/* Gallery Styles */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 250px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(184, 92, 138, 0.2);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(184, 92, 138, 0.3);
}

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

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

.gallery-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(184, 92, 138, 0.9));
  padding: 20px;
  color: var(--white);
  transform: translateY(100%);
  transition: transform 0.7s ease;
}

.gallery-item:hover .gallery-item-overlay {
  transform: translateX(0);
}

.gallery-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(184, 92, 138, 0.9);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 50px;
}

.gallery-modal-content {
  max-width: 90%;
  max-height: 90%;
  position: relative;
}

.gallery-modal-content img {
  max-width: 100%;
  max-height: 80vh;
  display: block;
  border: 5px solid var(--white);
  border-radius: 10px;
}

.gallery-modal-desc {
  background-color: var(--white);
  padding: 20px;
  color: var(--warm-gray);
  border-radius: 0 0 10px 10px;
}

.gallery-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  transition: transform 0.2s ease;
}

.gallery-modal-close:hover {
  transform: scale(1.2);
}

.gallery-category-head {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px; 
  text-align: center;
}

.gallery-category {
  background: linear-gradient(135deg, var(--deep-mauve) 0%, var(--dusty-rose) 100%);
  height: 150px; 
  border-radius: 15px; 
  display: flex; 
  justify-content: center;
  align-items: center; 
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(184, 92, 138, 0.3);
  transition: transform 0.3s ease;
}

.gallery-category:hover {
  transform: translateY(-5px);
}

.gallery-follow-img {
  border-radius: 10px; 
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(184, 92, 138, 0.2);
}

.gallery-follow-img-sect {
  width: 100%; 
  height: 200px; 
  object-fit: cover;
}

/* About Page Styles */
.about-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.about-text {
  flex: 1;
}

.about-text h3 {
  font-size: 1.8rem;
  color: var(--deep-mauve);
  margin-bottom: 20px;
}


.about-image {
  flex: 1;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(184, 92, 138, 0.3);
  transition: transform 0.3s ease;
}

.about-image:hover {
  transform: translateY(-5px);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.team-member {
  background-color: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(184, 92, 138, 0.2);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--blush-pink);
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(184, 92, 138, 0.3);
}

.team-member-img {
  height: 250px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.team-member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-member:hover .team-member-img img {
  transform: scale(1.05);
}

.team-member-info {
  padding: 20px;
}

.team-member-info h3 {
  font-size: 1.3rem;
  color: var(--deep-mauve);
  margin-bottom: 5px;
}

.team-member-info p {
  color: var(--rose-gold);
  font-weight: 600;
  margin-bottom: 15px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-links a {
  color: var(--dusty-rose);
  font-size: 1.3rem;
  transition: all 0.3s ease;
  padding: 8px;
  border-radius: 50%;
}

.social-links a:hover {
  color: var(--rose-gold);
  background-color: var(--blush-pink);
  transform: translateY(-2px);
}

/* Contact Page Styles */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info {
  background: linear-gradient(135deg, var(--deep-mauve) 0%, var(--dusty-rose) 100%);
  color: var(--white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(184, 92, 138, 0.3);
}

.contact-info h3 {
  font-size: 1.8rem;
  color: var(--rose-gold);
  margin-bottom: 30px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--rose-gold);
  margin-right: 15px;
  min-width: 30px;
}

.contact-text h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.contact-form {
  background-color: var(--white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(184, 92, 138, 0.2);
  border: 1px solid var(--blush-pink);
}

.contact-form h3 {
  font-size: 1.8rem;
  color: var(--deep-mauve);
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--deep-mauve);
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--blush-pink);
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: var(--cream-white);
}

.form-control:focus {
  outline: none;
  border-color: var(--rose-gold);
  box-shadow: 0 0 0 3px rgba(232, 180, 160, 0.2);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.map-container {
  margin-top: 60px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(184, 92, 138, 0.3);
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-links {
  color: var(--rose-gold); 
  font-size: 1.5rem;
  margin-right: 20px;
}

.contact-question {
  color: var(--deep-mauve); 
  margin-bottom: 15px; 
  font-size: 1.5rem;
}

.contact-bookin-info {
  font-size: 3rem; 
  color: var(--rose-gold); 
  margin-bottom: 20px;
}

/* Footer Styles */
footer {
  background: linear-gradient(135deg, var(--deep-mauve) 0%, var(--dusty-rose) 100%);
  color: var(--white);
  padding: 60px 0 20px;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 40px;
  margin-right: 10px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.footer-logo h2 {
  color: var(--rose-gold);
  font-size: 1.5rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-about p {
  margin-bottom: 20px;
}

.footer-heading {
  font-size: 1.3rem;
  color: var(--rose-gold);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--rose-gold) 0%, var(--cream-white) 100%);
  border-radius: 2px;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: var(--cream-white);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 4px 8px;
  border-radius: 4px;
}

.footer-links ul li a:hover {
  color: var(--rose-gold);
  background-color: rgba(255, 255, 255, 0.1);
}

.footer-hours p {
  margin-bottom: 10px;
  min-width: 300px;
}

.footer-hours span {
  color: var(--rose-gold);
  font-weight: 600;
}

.footer-hours p a {
  color: var(--cream-white);
  text-decoration: none; 
  transition: color 0.3s ease;
}

.footer-hours p a:hover {
  color: var(--rose-gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .home-intro, .about-content {
    flex-direction: column;
  }
  
  .home-intro-image, .about-image {
    order: -1;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
  
  nav ul {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--deep-mauve) 0%, var(--dusty-rose) 100%);
    flex-direction: column;
    padding: 20px 0;
    box-shadow: 0 8px 25px rgba(184, 92, 138, 0.4);
  }
  
  nav ul.show {
    display: flex;
  }
  
  nav ul li {
    margin: 0;
    text-align: center;
  }
  
  nav ul li a {
    display: block;
    padding: 15px;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .hero h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .logo h1 {
    font-size: 1.2rem;
  }
  
  .logo img {
    height: 40px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .hero {
    padding: 80px 0;
  }
  
  .hero h2 {
    font-size: 1.8rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .gallery-grid, .services-grid, .team-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-logo h2 {
    font-size: 1.2rem;
  }
}

/* Additional Pink Theme Enhancements */
.bg-section1-color {
  background-color: var(--blush-pink);
}

/* Smooth animations for better user experience */
* {
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

/* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--cream-white);
}

::-webkit-scrollbar-thumb {
  background: var(--dusty-rose);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--deep-mauve);
}

