html {
  scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4,
p {
  margin: 0;
  padding: 0;
}

.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #d5a590;
  color: #5e4c4a;
  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;
  padding: 0;
  font-family: "Roboto", sans-serif;
  background-color: #f4e8de;
  color: #5e4c4a;
}

.header_div {
  background-color: #e6ccb2;
  border-bottom: 2px solid #d5a590;
  padding: 15px 0;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.logo img {
  max-height: 50px;
}

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

nav ul li a {
  text-decoration: none;
  color: #5e4c4a;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 15px;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

nav ul li a:hover {
  background-color: #d5a590;
  color: #ffffff;
}

.cookies-section {
  background-color: #e6ccb2;
  padding: 15px 0px;
  text-align: center;
}

.cookies-div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.cookies-div p {
  margin: 0;
  font-size: 1rem;
}

.cookies-div button {
  padding: 8px 15px;
  background-color: #d5a590;
  border: none;
  border-radius: 5px;
  color: #ffffff;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

.footer_div {
  background-color: #d5a590;
  padding: 40px 0px;
  color: #ffffff;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.footer-logo img {
  max-height: 60px;
  margin-bottom: 10px;
}

.footer-logo p {
  margin: 0;
  font-size: 0.9rem;
}

.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav ul li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
  color: #b78573;
}

.footer-contact p {
  margin: 5px 0;
  font-size: 0.9rem;
}

.footer-bottom {
  text-align: center;
  background-color: #b78573;
  padding: 10px 0;
  font-size: 0.85rem;
}

.about-service-section {
  background-color: #f4e8de;
  padding: 60px 20px;
}

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

.about-section,
.service-section {
  display: flex;
  align-items: center;
  gap: 20px;
}

.about-section .about-image,
.service-section .service-image {
  flex: 1;
}

.about-section .about-image img,
.service-section .service-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-section .about-text,
.service-section .service-text {
  flex: 1;
  color: #5e4c4a;
}

.about-section .about-text h2,
.service-section .service-text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #b78573;
}

.about-section .about-text p,
.service-section .service-text p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 15px;
}

.service-section .service-text ul {
  list-style: disc;
  padding-left: 20px;
}

.service-section .service-text ul li {
  font-size: 1rem;
  margin-bottom: 10px;
}

.gallery-section {
  background-color: #f4e8de;
  padding: 60px 20px;
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  color: #5e4c4a;
}

.gallery-container h2 {
  font-size: 2rem;
  color: #b78573;
  margin-bottom: 15px;
}

.gallery-container p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.offer-section {
  background-color: #f4e8de;
  padding: 60px 20px;
}

.offer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.offer-details {
  flex: 1;
  color: #5e4c4a;
}

.offer-details h2 {
  font-size: 2rem;
  color: #b78573;
  margin-bottom: 15px;
}

.offer-details p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.offer-details ul {
  list-style: disc;
  padding-left: 20px;
}

.offer-details ul li {
  font-size: 1rem;
  margin-bottom: 10px;
}

.offer-form {
  flex: 1;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.offer-form h3 {
  font-size: 1.5rem;
  color: #b78573;
  margin-bottom: 20px;
}

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

.form-group label {
  display: block;
  font-size: 1rem;
  color: #5e4c4a;
  margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
  width: 95%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  color: #5e4c4a;
}

.form-group textarea {
  resize: none;
}

button {
  background-color: #b78573;
  color: #fff;
  font-size: 1rem;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #9f6b60;
}
