body {
  background-image: url(IMG_5743.JPG);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;        /* Fill the screen */
  background-position: top;   
  overflow-x: scroll;
}

.double-text {
  font-size: 6vw;
  font-weight: bold;
  font-family: Copperplate;
  text-transform: uppercase;
  transform: translateY(-40px);
}

.text-top {
  color: black; /* тень/нижний слой */
  text-align: center;
  position: absolute;
  top: 50%;
  left:50%;
  transform: translateX(-50%) translateY(-50%)
}

.text-bottom{
  color: white;
  text-align: center;
  position: absolute;
  top: 50%;
  right:4%;
  transform: translateX(-50%) translateY(-50%)
  
}

.hero-banner {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  text-align: center;
}

h1{
  color: white;

}
.sections {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center; /* center horizontally */
  gap: 40px;
  padding: 15px 20px;
  font-size: 1.5vw;
  font-weight: bold;
  font-family: Copperplate;
  text-transform: uppercase;
  text-align: center;
}


a{
  text-decoration: none;
  color: white;
}

p{
  font-size: clamp(1rem, 2vw, 2rem);
  color: white;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 100px;
  margin-top: 100px;
  color: black;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: bold;
  font-family: Copperplate;
  position: relative;
  z-index: 1;
  background-color: transparent;
  text-align: center;
}

.service-item.no-image {
  width: 270px;
  min-height: 340px;
  border-radius: 12px;
  background: linear-gradient(145deg, #1a1a1a, #2c2c2c);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 16px rgba(255, 215, 0, 0.1);
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease;
}

.service-item.no-image:hover {
  transform: scale(1.03);
}


.service-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 0 20px;
}

.service-item.no-image {
  width: 260px;
  min-height: 320px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.service-item.no-image:hover {
  transform: scale(1.03);
}

.service-item h3 {
  font-size: 20px;
  color: #555;
  margin-bottom: 12px;
  text-align: center;
  font-weight: 600;
}

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

.service-item li {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 4px 0;
  border-bottom: 1px dashed #ddd;
}

.service-item li span {
  color: #444;
  font-weight: 500;
}

.about-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 6vw 4vw; /* relative to screen size */
  text-align: center;
  color: white;
}

.about-banner .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  border-radius: 8px;
}

.about-text {
  flex: 2 1 400px;
  font-size: clamp(1rem, 1vw, 1rem);
  font-weight: bold;
  line-height: 1.6;
  color: white;
}

.language-switcher {
  position: fixed;
  top: 50px;
  right: 20px;
  z-index: 110; /* ✅ Higher than .sections */
}


.language-switcher button {
  background: #ddd;
  border: none;
  padding: 6px 12px;
  margin-left: 5px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 5px;
  transition: 0.3s;
}

.language-switcher button:hover {
  background: #bbb;
}

.slogan {
  font-size: clamp(1rem, 2vw, 3rem);
  font-weight: 500;
  margin-top: 20px;
  color: white;
  z-index: 2;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 30px 10px;
  margin-top: 20px;
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
  cursor: pointer;
}
.about-image {
  flex: 1 1 300px;
  max-width: 300px;
}
.gallery img:hover {
  transform: scale(1.05);
}
.seamstress-photo {
  width: 200px;
  max-width: 100%;
  border-radius: 12px;
  object-fit: cover;
  margin: 20px auto;
  display: block;
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.seamstress-photo:hover {
  transform: scale(1.03);
}

.about-content {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: center;
  text-align: left;
}

@media (max-width: 480px) {
  body {
    overflow-x: hidden;
  }

  .service-item.no-image {
    width: 90%;
    margin: 0 auto;
  }

  .about-text, .contact-box {
    font-size: 4vw;
  }
}
