/* ========================= style.css ========================= */

/* General */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #faf9f8;
  color: #222;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  margin: 0 0 20px 0;
  color: #222;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: white;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.logo img {
  height: 100px;
  object-fit: contain;
}

nav a {
  margin: 0 15px;
  font-weight: 500;
  transition: color 0.2s;
}
nav a:hover {
  color: #c2185b;
}
nav .cta {
  background: #222;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
}

/* Language buttons */
.lang-btn {
  border: none;
  background: none;
  cursor: pointer;
  width: 36px;
  height: 24px;
  margin-left: 8px;
  transition: transform 0.2s, filter 0.2s;
  color:#222;
}
.lang-btn:hover {
  transform: scale(1.2);
  filter: brightness(1.3);
}

/* Hero Section */
.hero {
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, #fce4ec, #f8bbd0);
  position: relative;
  overflow: hidden;
}
.hero .btn {
  margin-top: 20px;
  padding: 12px 24px;
  background: #222;
  color: white;
  border-radius: 30px;
  font-weight: 500;
  transition: background 0.3s;
}
.hero .btn:hover {
  background-color: #c2185b;
}

/* Hero Slides */
.slides {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.slide {
  position: absolute;
  opacity: 0;
  font-size: 2rem;
  transition: opacity 0.5s;
}
.slide.active {
  opacity: 1;
}

/* Sections */
.section {
  padding: 80px 40px;
  max-width: 1100px;
  margin: auto;
}
.section.dark {
  background: #f5f2f0;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
}
.service-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}
.service-card:hover {
  transform: translateY(-5px);
}

.price-img {
  max-width: 600px;
  width: 100%;
  margin: 20px auto;
  text-align: center;
}
.price-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 15px;
}

/* Press-ons Section */
#pressons ul {
  list-style-type: disc;
  padding-left: 30px;
  margin-bottom: 20px;
}

#pressons .form, #booking .form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 400px;
  margin: 20px auto;
}
#pressons input, #pressons select, #pressons textarea, #booking input, #booking select, #booking textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 1rem;
  display: block;
  width: 100%;
  box-sizing: border-box;
}
#pressons button, #booking button {
  padding: 12px;
  background: #222;
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
  width: 100%;
}
#pressons button:hover, #booking button:hover {
  background: #c2185b;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 20px;
}
.img {
  height: 200px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  overflow: hidden; 
  background: #e2cad3;
}

.img img {
  width: 100%;
  height: 100%;
  object-fit: contain; 
  display: block;
}

.img:hover {
  transform: scale(1.05);
}

/* Press-ons example images */
.example-images {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.example-images img {
  width: 100%;
  max-width: 200px;   /* controls size */
  height: auto;
  border-radius: 8px;
}

/* Footer */
.footer {
  text-align: center;
  padding: 40px;
  background: #fff;
}
.footer .social-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}
.footer .social-logo {
  width: 24px;
  height: 24px;
  object-fit: contain;
  transition: transform 0.2s, filter 0.2s;
}
.footer .social-logo:hover {
  transform: scale(1.2);
  filter: brightness(1.3);
}
.footer .social-username {
  font-weight: 500;
  font-size: 1rem;
  line-height: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  #pressons .form, #booking .form {
    width: 90%;
  }
}