/* style.css — global site + corporate styles with bilingual toggle and watermark */

/* Reset / base */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Arial, sans-serif;
  background: #f8f8f8;
  color: #333;
  position: relative;
  min-height: 100vh;
}

/* Bilingual toggle visibility */
[data-lang].hidden {
  display: none !important;
}

/* Header */
.site-header {
  text-align: center;
  padding: 2rem 1rem;
  background: url('guilloche.svg') center/cover no-repeat, #ffffff;
  border-bottom: 1px solid #ddd;
  position: relative;
}

.site-header .logo {
  display: block;
  margin: 0 auto 0.5rem;
  max-height: 90px;
}
.site-header .language-switch {
  margin: 0.5rem 0 1rem;
}
.site-header .header-text h1 {
  margin: 0.5rem 0;
  font-size: 1.8rem;
}
.site-header .header-text p {
  margin: 0.5rem auto;
  max-width: 700px;
  color: #666;
}

/* Language switch buttons */
.language-switch button {
  margin: 0 0.25rem;
  padding: 0.3rem 0.8rem;
  border: 1px solid #ccc;
  background: #eee;
  cursor: pointer;
  border-radius: 3px;
  font-weight: normal;
}
.language-switch button.active-lang {
  background: #333;
  color: #fff;
  border-color: #333;
  font-weight: bold;
}

/* Navigation */
nav {
  background: #222;
  padding: 0.5rem 1rem;
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
nav li {
  margin: 0 1rem;
}
nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
nav a:hover {
  text-decoration: underline;
}

/* Main layout */
main {
  padding: 2rem 1rem;
  max-width: 1000px;
  margin: 0 auto;
}
h1, h2, h3 {
  margin-top: 0;
}

/* Services and Gallery structural grid */
.services-gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}
.services-figure {
  border: 1px solid #ccc;
  border-radius: 6px;
  overflow: hidden;
  text-align: center;
  max-width: 260px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  margin: 0;
}
.services-figure img {
  width: 100%;
  height: auto;
  display: block;
}
.services-figure figcaption {
  padding: 0.8rem;
}
.services-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.services-link:hover figcaption {
  background: #f0f0f0;
}

/* Badges for items */
.services-thumb {
  position: relative;
}
.services-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #cc0000;
  color: #fff;
  padding: 0.2rem 0.5rem;
  font-size: 0.75rem;
  font-weight: bold;
  border-radius: 3px;
}

/* Contact layout rows */
.contact-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: 2rem auto;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.contact-item img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

/* Form layout updates */
form {
  max-width: 600px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.form-row label {
  font-weight: bold;
}
form input, form textarea {
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
}
form button {
  padding: 0.75rem;
  border: none;
  background: #333;
  color: #fff;
  cursor: pointer;
  border-radius: 4px;
  font-weight: bold;
  margin-top: 1rem;
}
form button:hover {
  background: #555;
}

/* Global watermark across your brand environment */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: url("LE.png") repeat center center;
  background-size: 300px auto;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem 1rem;
  color: #666;
  border-top: 1px solid #eee;
  margin-top: 3rem;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .site-header { padding: 1.5rem 0.5rem; }
  nav ul { flex-direction: column; gap: 0.5rem; }
  nav li { margin: 0; }
  .services-gallery { flex-direction: column; align-items: center; }
  body::after { background-size: 200px auto; }
}