/* === Reset === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #fff;
  color: #222;
  line-height: 1.6;
  transition: opacity 1s ease-in;
  opacity: 1;
}

body.fade-in {
  opacity: 1;
}

.lang {
  display: none;
}
.lang-en {
  display: block;
}

/* === Header === */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo img {
  height: 80px;
}

nav {
  flex: 2;
  display: flex;
  justify-content: center;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 1rem;
}

nav li {
  position: relative;
}

nav a {
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 0.8rem;
  transition: background 0.3s, color 0.3s;
  border-radius: 4px;
}

nav a:hover {
  background: #414141;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #222;
  flex-direction: column;
  min-width: 180px;
  z-index: 999;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.dropdown-content a {
  padding: 0.5rem 1rem;
  color: #fff;
  white-space: nowrap;
}

.dropdown:hover .dropdown-content {
  display: flex;
}

.lang-toggle.top {
  margin-left: auto;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  padding-left: 1rem;
}

/* === Hero Section === */
.hero {
  position: relative;
  height: 85vh;
  overflow: hidden;
}

.slide-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-overlay {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.hero-text-wrapper {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero-text-wrapper h1 {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-text-wrapper p {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 650px;
  margin: 1rem auto 0;
  color: #f0f0f0;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.hero-buttons {
  margin-top: 1.2rem;
}

.hero .btn {
  display: inline-block;
  margin: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #ff4c4c;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.hero .btn:hover {
  background-color: #d63939;
}

/* === Homepage: What We Print === */
section.service-highlight {
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.service-box {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.service-box.reverse {
  flex-direction: row-reverse;
}

.service-img {
  width: 100%;
  max-width: 380px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.service-text {
  max-width: 520px;
  flex: 1;
  text-align: left;
}

.service-text h2 {
  font-size: 1.75rem;
  margin-bottom: 0.6rem;
}

.service-text p {
  font-size: 1.05rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.service-text .btn {
  background: #111;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s;
}

.service-text .btn:hover {
  background: #ff4c4c;
}

/* === Services Page === */
.services-page {
  padding: 3rem 2rem;
  max-width: 1100px;
  margin: auto;
}

.service-block {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 4rem;
  align-items: center;
  justify-content: center;
}

.service-block.reverse {
  flex-direction: row-reverse;
}

.service-block img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.service-block .text {
  flex: 1;
  min-width: 240px;
  max-width: 500px;
  text-align: left;
}

.service-block .text h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.service-block .text p {
  font-size: 1.05rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.service-block .btn {
  background: #111;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s;
}

.service-block .btn:hover {
  background: #333;
}

/* === About & Contact Shared Layout === */
.about-section {
  text-align: center;
  padding: 3rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.about-section h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-caption {
  color: #555;
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.about-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.about-buttons .btn {
  padding: 0.6rem 1.4rem;
  background-color: #111;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s ease;
}

.about-buttons .btn:hover {
  background-color: #333;
}

/* === Footer === */
footer {
  background: #111;
  color: #eee;
  padding: 3rem 2rem;
  font-size: 0.95rem;
  text-align: center;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.footer-grid div {
  min-width: 200px;
  max-width: 300px;
  flex: 1;
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

footer a {
  background-color: #333;
  color: #ccc;
  text-decoration: none;
  display: inline-block;
  margin: 0.3rem;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  transition: background 0.3s;
  text-align: center;
  min-width: 100px;
}

footer a:hover {
  background: #555;
  color: #fff;
}

footer p {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
}

.lang-toggle.bottom {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.email-indent {
  display: inline-block;
  margin-left: 40px; /* Adjust to your preference */
}



/* === Responsive === */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    width: 100%;
  }
  .service-block,
  .service-box {
    flex-direction: column;
    text-align: center;
  }
  .service-block .text,
  .service-text {
    text-align: center;
  }
  .hero-text-wrapper h1 {
    font-size: 1.8rem;
  }
  .hero-text-wrapper p {
    font-size: 1rem;
  }
  .footer-grid {
    flex-direction: column;
    text-align: center;
  }
  .lang-toggle.top {
    justify-content: center;
    width: 100%;
    padding-top: 1rem;
  }
  .lang-toggle.bottom {
    flex-direction: column;
    gap: 0.5rem;
  }
  .about-buttons {
    flex-direction: column;
  }
}
