/* ==== Base ==== */
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Poppins', Arial, sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.6;
}

/* Fade for language switch */
body.fade-out { opacity: 0.2; transition: opacity 0.3s ease; }

/* Containers */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* ==== Top Bar (red) ==== */
.topbar {
  background: #c00000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.brand { display: flex; align-items: center; gap: 12px; }
.logo { width: 46px; height: 46px; object-fit: contain; }
.brand-name { font-weight: 700; letter-spacing: 0.3px; font-size: 18px; }

/* Language pill */
.lang-pill {
  background: #fff;
  color: #222;
  border-radius: 999px;
  padding: 6px 12px;
  min-width: 82px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border: 1px solid #ddd;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  user-select: none;
}
.lang-label { font-weight: 600; font-size: 12px; }
.flag { font-size: 18px; line-height: 1; }

/* ==== Hero ==== */
.hero {
  background: linear-gradient(180deg, #111 0%, #1a1a1a 100%);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}
.hero-inner { max-width: 900px; margin: 0 auto; }
.hero h1 { font-size: 34px; margin: 0 0 10px; }
.hero p { font-size: 18px; color: #e4e4e4; margin: 0 0 20px; }
.cta-btn {
  display: inline-block;
  background: #c00000;
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(192,0,0,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(192,0,0,0.45); }

/* ==== Sections ==== */
.section { padding: 70px 0; }
.section.white { background: #fff; }
.section.dark { background: #0f0f10; color: #f2f2f2; }
.section.dark h2 { color: #fff; }
.section-sub { text-align: center; margin: 0 auto 22px; max-width: 780px; color: #666; }
.section.dark .section-sub { color: #cfcfcf; }

h2 { text-align: center; font-size: 28px; margin: 0 0 12px; }

/* About */
.about p { text-align: center; max-width: 900px; margin: 10px auto 0; color: #444; }
.section.dark .about p { color: #ddd; }

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}
.gallery.single { grid-template-columns: 1fr; }
.gallery img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.gallery img:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.35);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.contact-card {
  background: #fafafa;
  border: 1px solid #eee;
  border-left: 6px solid #c00000;
  border-radius: 10px;
  padding: 20px;
  font-size: 16px;
  color: #444;
}
.contact-card a { color: #c00000; text-decoration: none; font-weight: 600; }
.contact-card a:hover { text-decoration: underline; }

/* Form */
.contact-form {
  background: #fff;
  border: 2px solid #e0e0e0;
  border-left: 6px solid #c00000;
  border-radius: 10px;
  padding: 24px;
}
.contact-form label { display: block; font-weight: 600; margin: 10px 0 6px; }
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form input:focus, .contact-form textarea:focus {
  border-color: #c00000;
  box-shadow: 0 0 6px rgba(192,0,0,0.25);
  outline: none;
}
.contact-form button {
  background: #c00000;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 4px 12px rgba(192,0,0,0.35);
}
.contact-form button:hover { transform: translateY(-2px); background: #a30000; }

.form-header { text-align: center; margin-bottom: 10px; }
.form-header h3 { color: #c00000; margin: 0 0 6px; }
.form-header p { color: #666; margin: 0; font-size: 14px; }

/* WhatsApp */
.wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* Responsive */
@media (max-width: 900px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .brand-name { display: none; }
  .gallery { grid-template-columns: 1fr; }
  .hero h1 { font-size: 28px; }
}
