/* Global styles for Skincare82 website - Original Vue 2 Design with Pink Theme */

:root {
  --brand-primary: #FEE3EC;
  --brand-secondary: #99154E;
  --brand-light: #F9C5D5;
  --brand-dark: #F2789F;
  --text-dark: #2c3e50;
  --text-secondary: #494949;
}

body {
  font-family: 'Poppins', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

#__nuxt {
  width: 100%;
  overflow: hidden;
}

/* Header styles - Original design */
/*.navbar {*/
/*  top: 0;*/
/*  z-index: 1111;*/
/*  position: fixed !important;*/
/*  width: 100%;*/
/*  font-size: 1.3rem;*/
/*  background-color: hsla(40, 10%, 94%, .9) !important;*/
/*  padding: 0.5rem 0 !important;*/
/*  border: none;*/
/*  box-shadow: 0 2px 4px rgba(0,0,0,0.1);*/
/*  backdrop-filter: blur(10px);*/
/*}*/

.navbar .collapsed > .when-opened,
.navbar :not(.collapsed) > .when-closed {
  display: none;
}

.dropdown-item {
  color: #212529;
  font-size: 1.3rem;
  padding: 0.5rem 1rem;
}

.dropdown-item:hover,
.dropdown-item:active,
.dropdown-item:focus {
  text-decoration: underline #F9C5D5 !important;
  background-color: unset !important;
  color: #212529;
}

.nav-link {
  color: #212529 !important;
  font-weight: 500;
  font-size: 1.3rem;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.nav-link:hover {
  text-decoration: underline #F9C5D5 !important;
  background-color: unset !important;
  color: #212529 !important;
}

.nav-link.router-link-active {
  text-decoration: underline #F9C5D5 !important;
  color: #212529 !important;
  font-weight: 600;
}

@media (max-width: 992px) {
  .navbar {
    position: relative !important;
  }
}

/* Logo styles */
.logo {
  color: #2c3e50;
  text-decoration: none;
  font-weight: 700;
}

.logo:hover {
  text-decoration: none;
  color: #007bff;
}

/*.logo h5 {*/
/*  margin: 0;*/
/*  font-size: 1.5rem;*/
/*  color: #007bff;*/
/*}*/

/* Button styles - Original Vue 2 Design */
.btn {
  position: relative;
  display: inline-block;
  margin: 15px;
  padding: 12px 27px;
  text-align: center;
  font-size: 16px;
  letter-spacing: 1px;
  text-decoration: none;
  background-color: hsla(40, 10%, 94%, .4) !important;
  cursor: pointer;
  transition: ease-out 0.5s;
  -webkit-transition: ease-out 0.5s;
  -moz-transition: ease-out 0.5s;
  border: none;
}

.btn-border::after,
.btn-border::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  transition: 0.5s;
}

.btn-border::after {
  top: -2px;
  left: -2px;
  border-top: 3px solid transparent;
  border-left: 3px solid transparent;
}

.btn-border::before {
  bottom: -2px;
  right: -2px;
  border-bottom: 3px solid transparent;
  border-right: 3px solid transparent;
}

.btn-border:hover {
  color: var(--brand-dark);
}

.btn.btn-border:hover::after,
.btn.btn-border:hover::before {
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  border-color: var(--brand-dark);
}

.btn-brand-dark {
  background-color: rgba(177, 176, 174, 0.493) !important;
}

.btn-primary {
  background-color: var(--brand-dark);
  border-color: var(--brand-dark);
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: 25px;
  transition: all 0.3s ease;
  color: white;
}

.btn-primary:hover {
  background-color: var(--brand-secondary);
  border-color: var(--brand-secondary);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(242, 120, 159, 0.3);
  color: white;
}

.btn-outline-primary {
  color: var(--brand-dark);
  border-color: var(--brand-dark);
  border-radius: 25px;
  padding: 0.5rem 1.25rem;
  font-weight: 500;
  background-color: transparent;
}

.btn-outline-primary:hover {
  background-color: var(--brand-dark);
  border-color: var(--brand-dark);
  transform: translateY(-2px);
  color: white;
}

/* Card styles */
.card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Carousel styles */
.carousel {
  height: 70vh;
}

.carousel-item {
  height: 90vh;
}

.img-container {
  width: 100%;
  height: 70vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.img-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.carousel-caption {
  background: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  padding: 2rem;
  z-index: 2;
  position: relative;
}

.carousel-caption h5 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.carousel-caption p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

/* Footer styles */
.footer-dark {
  padding: 50px 0;
  color: #f0f9ff;
  background-color: #282d32;
}

.footer-dark h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-weight: bold;
  font-size: 16px;
  color: #ffffff;
}

.footer-dark ul {
  padding: 0;
  list-style: none;
  line-height: 1.6;
  font-size: 14px;
  margin-bottom: 0;
}

.footer-dark ul li a {
  color: #f0f9ff;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-dark ul li a:hover {
  opacity: 1;
  color: #007bff;
}

.footer-dark .copyright {
  text-align: center;
  padding-top: 24px;
  opacity: 0.6;
  font-size: 13px;
  margin-bottom: 0;
}

/* Section spacing */
.section {
  padding: 60px 0;
}

/* Main content padding for fixed navbar */
main {
  padding-top: 80px;
  min-height: calc(100vh - 80px);
}

/* Page content styling */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section-light {
  background-color: #f8f9fa;
}

/* Animation helpers */
.fade-in {
  animation: fadeIn 0.8s ease-in;
}

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

/* Carousel image containers - Vue 2 Original Images */
.img-container {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.img-container.first {
  background-image: url('/images/skin.jpg');
}

.img-container.second {
  background-image: url('/images/healthfirst.jpg');
}

.img-container.third {
  background-image: url('/images/skincare.jpeg');
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .carousel {
    height: 50vh;
  }

  .carousel-item {
    height: 50vh;
  }

  .img-container {
    height: 50vh;
  }

  .carousel-caption h5 {
    font-size: 1.8rem;
  }

  .carousel-caption p {
    font-size: 1rem;
  }

  .carousel-caption {
    padding: 1rem;
  }
}

/* Language switcher */
.dropdown-toggle::after {
  margin-left: 0.5rem;
}

.dropdown-menu {
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.dropdown-item {
  padding: 0.5rem 1rem;
  transition: background-color 0.3s ease;
}

.dropdown-item:hover {
  background-color: #f8f9fa;
  color: #007bff;
}

.dropdown-item.active {
  background-color: #007bff;
  color: white;
}

/* Service and pricing cards */
.service-card,
.pricing-card {
  height: 100%;
  transition: all 0.3s ease;
}

.service-icon,
.pricing-icon {
  font-size: 3rem;
  color: #007bff;
  margin-bottom: 1rem;
}

/* Contact form */
.form-control:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Gallery styles */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

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

.gallery-item img {
  transition: transform 0.3s ease;
}

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

/* Utility classes */
.text-primary {
  color: var(--brand-dark) !important;
}

.text-brand-dark {
  color: var(--brand-dark) !important;
}

.text-brand-secondary {
  color: var(--brand-secondary) !important;
}

.bg-primary {
  background-color: var(--brand-dark) !important;
}

.bg-brand-light {
  background-color: var(--brand-light) !important;
}

.border-primary {
  border-color: var(--brand-dark) !important;
}

/* Custom spacing */
.py-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}