.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #fff1eb, #ace0f9);
  color: #ff9a9e;
  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;
}

body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  background-color: #fff8f2;
  color: #3c3c3c;
  scroll-behavior: smooth;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 60px;
  z-index: 1000;
  background-color: transparent;
  box-shadow: none;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.site-header.scrolled {
  position: fixed;
  background-color: #f4e6da;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

.logo img {
  width: 50px;
  height: 50px;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.site-nav a {
  text-decoration: none;
  font-weight: 500;
  color: #3c3c3c;
  position: relative;
  transition: color 0.3s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #d69c7c;
  transition: width 0.3s ease;
}

.site-nav a:hover {
  color: #d69c7c;
}

.site-nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #3c3c3c;
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .site-header {
    position: fixed;
    background-color: #fff8f2;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px 30px;
    justify-content: space-between;
  }

  .logo {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff8f2;
    border-top: 1px solid #eee;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
  }

  .logo h1 {
    display: none;
  }

  .site-nav.open {
    max-height: 300px;
  }

  .site-nav ul {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    align-items: center;
  }

  .site-header.scrolled .menu-toggle span {
    background-color: #3c3c3c;
  }
}

.main-hero {
  position: relative;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../assets/images/slider1.jpg") center/cover no-repeat;
  color: white;
  text-align: center;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px;
  max-width: 800px;
}

.main-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    rgba(212, 168, 142, 0.8),
    rgba(255, 248, 242, 0.6)
  );
  z-index: 1;
  mix-blend-mode: overlay;
}

.hero-text h2 {
  font-size: 52px;
  color: #fff;
}

.hero-text p {
  font-size: 22px;
  margin-top: 10px;
  margin-bottom: 30px;
  color: #f0e6e0;
}

.hero-button {
  background-color: #ffffff;
  color: #d69c7c;
  border: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.hero-button:hover {
  background-color: #d69c7c;
  color: #fff;
}

.cookies-section {
  padding: 20px;
  text-align: center;
}

.cookies-div {
  display: inline-flex;
  gap: 15px;
  align-items: center;
  background: #fff2e5;
  border-radius: 12px;
  padding: 15px 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.cookies-button {
  padding: 8px 20px;
  border: none;
  border-radius: 20px;
  background-color: #d69c7c;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookies-button:hover {
  background-color: #c18769;
}

.site-footer {
  background-color: #f4e6da;
  padding: 40px 60px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-logo img {
  width: 40px;
  height: 40px;
}

.footer-contact h3,
.footer-hours h3 {
  margin-bottom: 10px;
  color: #d69c7c;
}

.footer-socials {
  display: flex;
  gap: 20px;
}

.footer-socials img {
  width: 30px;
  height: 30px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-socials img:hover {
  opacity: 1;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 0;
  margin: 0;
}

.footer-links a {
  text-decoration: none;
  color: #3c3c3c;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #d69c7c;
}

.footer-bottom {
  text-align: center;
  font-size: 14px;
  color: #999;
}

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  font-size: 24px;
  background-color: #d69c7c;
  color: white;
  padding: 10px 16px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: none;
}

.fade-in {
  animation: fadeIn 1.2s ease-in both;
}

.fade-up {
  animation: fadeUp 1.2s ease-out both;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-text h2 {
  animation: slideInLeft 1s ease forwards;
}

.hero-text p {
  animation: slideInLeft 1.2s ease forwards;
}

.hero-button {
  animation: slideInLeft 1.4s ease forwards;
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.about-section {
  padding: 100px 60px;
  background-color: #fffefc;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.about-text h2 {
  font-size: 40px;
  color: #d69c7c;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 15px;
}

.about-gallery {
  width: 100%;
}

.about-gallery img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  margin-right: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.story-section {
  position: relative;
  padding: 100px 60px;
  background: rgba(255, 255, 255, 0.8);
  z-index: 1;
  overflow: hidden;
}

.story-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../assets/images/slider2.jpg") center/cover no-repeat;
  opacity: 0.15;
  z-index: -1;
}

.story-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.story-content h2 {
  font-size: 42px;
  color: #d69c7c;
  margin-bottom: 20px;
}

.story-content p {
  font-size: 18px;
  color: #3c3c3c;
  line-height: 1.7;
  margin-bottom: 15px;
}

.values-list h3 {
  font-size: 28px;
  color: #bf856a;
  margin-bottom: 15px;
}

.values-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.values-list li {
  font-size: 18px;
  color: #4a4a4a;
  margin-bottom: 12px;
  position: relative;
  padding-left: 28px;
  animation: fadeInUp 1.2s ease forwards;
}

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

.team-section {
  background-color: #fffaf7;
  padding: 100px 60px;
}

.team-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.team-container h2 {
  font-size: 40px;
  color: #d69c7c;
  text-align: center;
  margin-bottom: 30px;
}

.team-member {
  display: flex;
  align-items: center;
  gap: 40px;
  animation: fadeIn 1.2s ease both;
}

.team-member.reverse {
  flex-direction: row-reverse;
}

.team-member img {
  width: 300px;
  height: 300px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.team-member img:hover {
  transform: scale(1.05);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15);
}

.team-info h3 {
  font-size: 24px;
  color: #3c3c3c;
  margin-bottom: 8px;
}

.team-info p {
  font-size: 18px;
  color: #777;
}

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.team-member {
  opacity: 0;
  animation: fadeSlideUp 1s ease forwards;
}

.team-member:nth-child(2) {
  animation-delay: 0.2s;
}
.team-member:nth-child(3) {
  animation-delay: 0.4s;
}
.team-member:nth-child(4) {
  animation-delay: 0.6s;
}
.team-member:nth-child(5) {
  animation-delay: 0.8s;
}

@media (max-width: 1024px) {
  .team-member img {
    width: 250px;
    height: 250px;
  }
}

@media (max-width: 768px) {
  .team-section {
    padding: 80px 30px;
  }

  .team-container {
    gap: 40px;
  }

  .team-member {
    flex-direction: column !important;
    text-align: center;
  }

  .team-member.reverse {
    flex-direction: column !important;
  }

  .team-member img {
    width: 200px;
    height: 200px;
  }

  .team-info h3 {
    font-size: 22px;
    margin-top: 20px;
  }

  .team-info p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .team-member img {
    width: 150px;
    height: 150px;
  }

  .team-info h3 {
    font-size: 20px;
  }

  .team-info p {
    font-size: 15px;
  }
}

.parallax-section {
  height: 100vh;
  background-image: url("../assets/images/slider3.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.parallax-overlay {
  background-color: rgba(255, 255, 255, 0.5);
  padding: 60px;
  border-radius: 20px;
  max-width: 800px;
  margin: 0 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: fadeIn 1.5s ease forwards;
}

.parallax-overlay h2 {
  font-size: 42px;
  color: #d69c7c;
  margin-bottom: 20px;
}

.parallax-overlay p {
  font-size: 20px;
  color: #4a4a4a;
}

.contact-section {
  background-color: #fffefb;
  padding: 100px 60px;
}

.contact-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.contact-container h2 {
  font-size: 40px;
  color: #d69c7c;
  margin-bottom: 60px;
}

.contact-info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  border-top: 1px solid #f0e8e0;
  border-bottom: 1px solid #f0e8e0;
  padding: 40px 0;
}

.contact-item {
  flex: 1;
  min-width: 250px;
}

.contact-item h3 {
  font-size: 22px;
  color: #bf856a;
  margin-bottom: 10px;
}

.contact-item p {
  font-size: 18px;
  color: #3c3c3c;
  line-height: 1.6;
}

.divider-line {
  width: 1px;
  height: 100px;
  background-color: #f0e8e0;
  margin: 0 20px;
}

@media (max-width: 768px) {
  .contact-info {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .divider-line {
    display: none;
  }
}

.services-section {
  background-color: #fff8f3;
  padding: 100px 60px;
}

.services-container {
  max-width: 1000px;
  margin: 0 auto;
}

.services-container h2 {
  font-size: 40px;
  color: #d69c7c;
  text-align: center;
  margin-bottom: 50px;
}

.services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.services-list li {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  animation: fadeInUp 1s ease forwards;
}

.service-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.1));
}

.service-text h3 {
  font-size: 22px;
  color: #bf856a;
  margin-bottom: 10px;
}

.service-text p {
  font-size: 18px;
  color: #444;
  line-height: 1.6;
}

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

.services-list li:nth-child(2) {
  animation-delay: 0.2s;
}
.services-list li:nth-child(3) {
  animation-delay: 0.4s;
}
.services-list li:nth-child(4) {
  animation-delay: 0.6s;
}

@media (max-width: 1024px) {
  .service-text h3 {
    font-size: 20px;
  }

  .service-text p {
    font-size: 17px;
  }

  .service-icon img {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 80px 30px;
  }

  .services-list li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .service-icon img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
  }

  .service-text h3 {
    font-size: 20px;
  }

  .service-text p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .service-icon img {
    width: 40px;
    height: 40px;
  }

  .service-text h3 {
    font-size: 18px;
  }

  .service-text p {
    font-size: 15px;
  }

  .services-section {
    padding: 60px 20px;
  }
}

.title_background {
  background-color: #fdf4ee;
  padding: 80px 60px 40px;
  text-align: center;
}

.title_background .title {
  font-size: 36px;
  color: #d69c7c;
  font-weight: 700;
  letter-spacing: 1px;
}

.text_background {
  background-color: #fffaf7;
  padding: 40px 60px 100px;
}

.text_background .text {
  font-size: 18px;
  line-height: 1.8;
  color: #3c3c3c;
  max-width: 900px;
  margin: 0 auto;
  white-space: pre-line;
}
