<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #D84315;
  color: #f6f6f6;
  font-size: 24px;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  background-color: #fff5e5;
  color: #5d4037;
}
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #ff7043;
  border-bottom: 1px solid #e64a19;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  width: 50px;
  height: auto;
  margin-right: 10px;
}
.site-nav ul {
  list-style: none;
  display: flex;
}
.site-nav ul li {
  margin: 0 15px;
}
.site-nav ul li a {
  text-decoration: none;
  font-weight: 700;
  color: #4e342e;
  transition: color 0.3s ease;
}
.site-nav ul li a:hover {
  color: #bf360c;
}
.hero {
  text-align: center;
  padding: 260px 20px;
  background: url("../assets/images/slider1.jpg") center/cover no-repeat;
  color: #fff5e5;
}
.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.hero p {
  font-size: 1.2rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}
.features {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 40px 20px;
  background-color: #ffe0b2;
}
.feature {
  flex: 1;
  max-width: 300px;
  margin: 20px;
  text-align: center;
  background-color: #ffcc80;
  padding: 20px;
  border-radius: 8px;
}
.feature h3 {
  margin-bottom: 15px;
  color: #bf360c;
}
.cookies-section {
  position: fixed;
  bottom: 10px;
  left: 10px;
  background-color: rgba(179, 57, 12, 0.9);
  padding: 15px;
  border-radius: 5px;
  color: #fff5e5;
  z-index: 100;
}
.cookies-button {
  background-color: #d84315;
  border: none;
  padding: 8px 15px;
  color: #fff5e5;
  margin: 0 5px;
  cursor: pointer;
  border-radius: 3px;
}
.site-footer {
  background-color: #bf360c;
  color: #ffe0b2;
  padding: 30px 20px;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px;
}
.footer-logo {
  flex: 1;
  min-width: 200px;
  text-align: center;
  margin-bottom: 20px;
}
.footer-logo img {
  width: 40px;
  height: auto;
  margin-bottom: 10px;
}
.footer-contact,
.footer-hours {
  flex: 1;
  min-width: 200px;
  margin-bottom: 20px;
}
.footer-socials {
  text-align: center;
  margin-bottom: 20px;
}
.footer-socials a {
  margin: 0 10px;
  display: inline-block;
}
.footer-socials img {
  width: 30px;
  height: auto;
}
.footer-links ul {
  list-style: none;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.footer-links ul li {
  margin: 0 10px;
}
.footer-links ul li a {
  text-decoration: none;
  color: #ffe0b2;
  transition: color 0.3s ease;
}
.footer-links ul li a:hover {
  color: #fff5e5;
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid #d84315;
  padding-top: 10px;
  font-size: 0.9rem;
}

.salon-section {
  background-color: #fff0d9;
  padding: 60px 20px;
}
.salon-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.salon-title {
  font-size: 2.5rem;
  color: #8d4a43;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease-out forwards;
}
.salon-description {
  font-size: 1.2rem;
  color: #6e2e20;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease-out forwards;
}
.salon-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.salon-item {
  background-color: #ffebd2;
  border-radius: 8px;
  overflow: hidden;
  width: 300px;
  opacity: 0;
  animation: zoomIn 0.8s ease-out forwards;
}
.salon-item:nth-child(1) {
  animation-delay: 0.2s;
}
.salon-item:nth-child(2) {
  animation-delay: 0.4s;
}
.salon-item:nth-child(3) {
  animation-delay: 0.6s;
}
.salon-item img {
  width: 100%;
  display: block;
}
.salon-item h3 {
  margin: 15px 0 10px;
  color: #bf360c;
  font-size: 1.5rem;
}
.salon-item p {
  margin-bottom: 15px;
  color: #5d4037;
  font-size: 1rem;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.elegant-slideshow-section {
  background-color: #fff8e1;
  padding: 50px 20px;
}
.slideshow-container {
  position: relative;
  max-width: 800px;
  margin: auto;
  overflow: hidden;
  height: 500px;
}
.elegant-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
  transform: scale(1.05);
}
.elegant-slide.active {
  opacity: 1;
  transform: scale(1);
}
.elegant-slide img {
  width: 100%;
  display: block;
  border-radius: 10px;
}
.elegant-prev,
.elegant-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 12px;
  font-size: 28px;
  font-weight: bold;
  color: #bf360c;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  user-select: none;
  transition: background-color 0.3s ease;
}
.elegant-prev:hover,
.elegant-next:hover {
  background-color: rgba(255, 255, 255, 1);
}
.elegant-prev {
  left: 10px;
}
.elegant-next {
  right: 10px;
}
.elegant-dots {
  text-align: center;
  padding-top: 20px;
}
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 5px;
  background-color: #e0e0e0;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
}
.dot.active,
.dot:hover {
  background-color: #bf360c;
}

.testimonials-section {
  background-color: #ffe0b2;
  padding: 60px 20px;
  text-align: center;
}
.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}
.testimonials-section h2 {
  font-size: 2.5rem;
  color: #bf360c;
  margin-bottom: 40px;
}
.testimonials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.testimonial {
  background-color: #fff8e1;
  padding: 20px;
  border: 1px solid #ffe0b2;
  border-radius: 8px;
  max-width: 350px;
  opacity: 0;
  animation: fadeIn 1s forwards;
}
.testimonial:nth-child(1) {
  animation-delay: 0.2s;
}
.testimonial:nth-child(2) {
  animation-delay: 0.4s;
}
.testimonial:nth-child(3) {
  animation-delay: 0.6s;
}
.review {
  font-size: 1rem;
  color: #5d4037;
  margin-bottom: 15px;
}
.author {
  display: flex;
  align-items: center;
  justify-content: center;
}
.author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
}
.name {
  font-size: 1rem;
  font-weight: bold;
  color: #bf360c;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-section {
  background-color: #fff0d9;
  padding: 60px 20px;
  text-align: center;
}
.contact-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: #ffebd2;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.contact-container h2 {
  color: #bf360c;
  font-size: 2rem;
  margin-bottom: 20px;
}
form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}
.form-group label {
  font-size: 1rem;
  margin-bottom: 5px;
  color: #5d4037;
  text-align: left;
}
.form-group input,
.form-group textarea {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #d7ccc8;
  border-radius: 5px;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #bf360c;
}
button[type="submit"] {
  padding: 12px;
  font-size: 1rem;
  background-color: #bf360c;
  color: #fff8e1;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
button[type="submit"]:hover {
  background-color: #d84315;
}

.service-elegant-section {
  background: linear-gradient(135deg, #ffe0b2, #fff8e1);
  padding: 80px 20px;
  text-align: center;
}
.service-elegant-section .container {
  max-width: 1200px;
  margin: 0 auto;
}
.service-elegant-section h2 {
  font-size: 2.8rem;
  color: #bf360c;
  margin-bottom: 40px;
}
.services-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}
.service-card {
  background-color: #fff8e1;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
.icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}
.icon-wrapper img {
  width: 100%;
  height: auto;
}
.service-card h3 {
  font-size: 1.8rem;
  color: #bf360c;
  margin-bottom: 15px;
}
.service-card p {
  font-size: 1rem;
  color: #5d4037;
}

.contact-container {
  max-width: 500px;
  background: #fff8e1;
  padding: 40px;
  margin: 50px auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-family: "Roboto", sans-serif;
}

.contact-container form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-container input[type="text"],
.contact-container input[type="tel"],
.contact-container input[type="email"] {
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #d7ccc8;
  border-radius: 5px;
  outline: none;
  transition: border-color 0.3s ease;
}

.contact-container input:focus {
  border-color: #bf360c;
}

.contact-container button[type="submit"] {
  padding: 12px;
  font-size: 1rem;
  background-color: #bf360c;
  color: #fff8e1;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-container button[type="submit"]:hover {
  background-color: #d84315;
  transform: scale(1.02);
}

#successMessage {
  margin-top: 20px;
  font-size: 1.1rem;
  color: #5d4037;
  text-align: center;
  line-height: 1.4;
}

.discounts-section {
  background: linear-gradient(135deg, #ff7043, #d84315);
  color: #fff8e1;
  padding: 60px 20px;
  text-align: center;
}
.discounts-container {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.discounts-title {
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: bold;
}
.discounts-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.5;
}
.discounts-details {
  font-size: 1.5rem;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.discount-percent {
  font-weight: bold;
  background: rgba(0, 0, 0, 0.2);
  padding: 10px 20px;
  border-radius: 5px;
}
.discount-validity {
  font-style: italic;
  padding: 10px 20px;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.2);
}
.discounts-btn {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: bold;
  color: #d84315;
  background-color: #fff8e1;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 30px;
  transition: background-color 0.3s, transform 0.3s;
}
.discounts-btn:hover {
  background-color: #ffccbc;
  transform: scale(1.05);
}

.about-salon-section {
  background: #fff8e1;
  padding: 80px 20px;
}
.about-salon-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}
.about-salon-text {
  flex: 1 1 500px;
  color: #5d4037;
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  animation: fadeInLeft 1s ease-out;
}
.about-salon-text h2 {
  font-size: 2.8rem;
  color: #bf360c;
  margin-bottom: 20px;
}
.about-salon-text h3 {
  font-size: 2rem;
  color: #d84315;
  margin-top: 30px;
  margin-bottom: 10px;
}
.about-salon-text p {
  font-size: 1.1rem;
  margin-bottom: 15px;
}
.about-salon-text ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 15px;
}
.about-salon-text li {
  margin-bottom: 10px;
  text-align: left;
}
.about-salon-gallery {
  flex: 1 1 400px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  animation: fadeInRight 1s ease-out;
}
.gallery-item {
  flex: 1 1 45%;
  overflow: hidden;
  border-radius: 10px;
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.detailed-services-section {
  background: #FFF8E1;
  padding: 80px 20px;
}

.detailed-services-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.detailed-services-container h2 {
  text-align: center;
  font-size: 2.8rem;
  color: #BF360C;
  margin-bottom: 40px;
  font-family: 'Roboto', sans-serif;
}

.service-detail-card {
  display: flex;
  flex-wrap: wrap;
  background-color: #FFEBD2;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-detail-image {
  flex: 1 1 300px;
  min-width: 300px;
  max-width: 400px;
  overflow: hidden;
}

.service-detail-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.service-detail-image img:hover {
  transform: scale(1.05);
}

.service-detail-content {
  flex: 2 1 400px;
  padding: 30px;
  font-family: 'Roboto', sans-serif;
  color: #5D4037;
}

.service-detail-content h3 {
  font-size: 2rem;
  color: #D84315;
  margin-bottom: 15px;
}

.service-detail-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-detail-content ul {
  list-style: disc;
  padding-left: 20px;
  color: #5D4037;
}

.service-detail-content ul li {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .service-detail-card {
    flex-direction: column;
  }
  .service-detail-image,
  .service-detail-content {
    flex: 1 1 100%;
  }
}

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

.title_background {
  background: linear-gradient(135deg, #D84315, #BF360C);
  padding: 60px 0;
  text-align: center;
  margin-bottom: 30px;
}

.title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #FFF8E1;
  margin: 0;
}

.text_background {
  background-color: #FFF8E1;
  padding: 40px 0;
}

.text_background .container .text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #5D4037;
  max-width: 800px;
  margin: 0 auto;
  text-align: justify;
  padding: 0 20px;
}</pre></body></html>