/* Final main.css - Fullscreen Hero + Layout Restored + Gallery, Form, and Header Fixes */

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #808080;
  color: white/*#333*/;
  font-size: 16px;
}

.site-header {
  background-color: #800080/*#1a237e*/;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  flex-wrap: nowrap;
  min-height: 64px;
}

.logo img {
  height: 40px;          /* still fits inside the 40px header */
  transform: scale(3.3); /* visually makes the image appear bigger */
  transform-origin: left center;
}

.main-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: nowrap;
  overflow-x: auto;
}

.main-nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

.main-nav a.active,
.main-nav a:hover {
  text-decoration: underline;
}
.hero {
  width: 100%;
  height: 550px; /* or adjust this value to what suits you */
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  box-sizing: border-box;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 2000px;
  width: 100%;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 500px;
  color: white;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  max-width: 600px;
  z-index: 2;
}

.hero-text h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.cta-button {
  background-color: #f57c00;
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
}

.cta-button:hover {
  background-color: #e65100;
}

.hero-slider-wrapper {
  flex: 1 1 1200px;
  max-width: 1200px;
  position: relative;
  height: 540px;
  /* transform: translateY(-100px); */  /* Remove this to avoid image shift */
  overflow: hidden;
}

.hero-slider {
  width: 160%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background-color: tranparent;
}

.hero-slider input[type="radio"] {
  display: none;
}

.hero-slider .slides {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 0.6s ease-in-out;
  
}

.hero-slider .slide {
  width: 200%;
  height: 100%;
  flex-shrink: 0;
}

.hero-slider .slide img {
  object-fit: cover;
  width: 11%;
  height: 100%;
  background-color: transparent;
  display: block;
}

.hero-slider .navigation-manual {
  position: absolute;
  bottom: 10px;
  width: 60%;
  text-align: center;
  z-index: 2;
}

.hero-slider .manual-btn {
  border: 2px solid #f57c00;
  padding: 5px;
  border-radius: 50%;
  cursor: pointer;
  margin: 0 5px;
  display: inline-block;
}

.hero-slider .manual-btn:hover {
  background: #f57c00;
}


#slide1:checked ~ .slides {
  transform: translateX(0%);
}

#slide2:checked ~ .slides {
  transform: translateX(-200%);
}

#slide3:checked ~ .slides {
  transform: translateX(-400%);
}
#slide4:checked ~ .slides {
  transform: translateX(-600%);
}

.about-brief-home {
  background-color: #000;
  color: #fff;
  padding: 4rem 2rem;
}

.about-brief-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* aligns image to the left */
  gap: 10rem; /* increase this to add space between image and text */
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 1rem; /* adjust as needed */
}


/* SINGLE IMAGE on the left */
.about-brief-image-container {
  flex: 1 1 700px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-brief-images {
  flex: 0 0 auto;
  max-width: 700px;  /* adjust width as needed */
}

.about-brief-images img {
  width: 120%;
  height: auto;
  border-radius: 10px;
  margin-left: -180px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}


/* TEXT on the right */
.about-brief-text {
  flex: 1 1 2000px;  /* Adjust to take more space */
  max-width: 500%;
}

.about-brief-text h2 {
  color: #f57c00;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1rem;
}

.about-box {
  flex: 1 1 250px;
  background: #111;
  padding: 1rem;
  border-radius: 6px;
}

.about-box h3 {
  color: #f57c00;
}

.cta-button {
  margin-top: 1.5rem;
  display: inline-block;
  background-color: #f57c00;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.cta-button:hover {
  background-color: #e65100;
}

/* Responsive for small screens */
@media (max-width: 992px) {
  .about-brief-wrapper {
    flex-direction: column;
  }

  .about-brief-image-container img {
    max-width: 100%;
  }
}



/* Responsive */
@media (max-width: 994px) {
  .hero-content {
    flex-direction: column;
    align-items: center;
  }

  .hero-slider-wrapper {
    height: 400px;
  }
}


/* Other existing styles remain unchanged */

main section {
  padding: 3rem 4rem;
  background-color: black;
  margin: 1rem auto;
  width: 100%;
  max-width: none;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  box-sizing: border-box;
}

h2 {
  color: #f57c00/*white#1a237e*/;
}

ul {
  list-style: disc;
  padding-left: 1.5rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.product-card {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
  padding: 1rem;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.product-card h3 {
  font-size: 1.1rem;
  color: #1a237e;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item {
  text-align: center;
  color: white;
}

.gallery-item p {
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  color: white; /* or any color you want */
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* ===================== */
/* ABOUT PAGE - STYLING  */
/* ===================== */
/* Page Header Section (Shared Style for About, Gallery, etc.) */

.about-page-header {
  text-align: left;
  padding: 2rem 4rem 1rem 4rem;
  background-color: black;
  color: white;
}

.about-page-header h2 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #f57c00;
  margin-bottom: 0.5rem;
}

.about-page-header p {
  color: #ccc;
  font-size: 1.1rem;
  max-width: 900px;
}


.about-page-section {
  background-color: black;
  color: white;
  padding: 4rem 2rem;
}

.about-page-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8rem;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.about-page-image {
  flex: 1 1 600px;
  max-width: 550px;
}

.about-page-image img {
  width: 70%;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.about-page-text {
  flex: 1 1 600px;
  max-width: 700px;
}

.about-page-text h1 {
  font-size: 1.0rem;
  color: #f57c00;
  margin-bottom: 1rem;
}

.about-page-text h2 {
  font-size: 1.5rem;
  color: #f57c00;
  margin-bottom: 1rem;
}

.about-page-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-page-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.about-page-box {
  flex: 1 1 280px;
  background-color: #111;
  padding: 1.5rem;
  border-radius: 8px;
}

.about-page-box h3 {
  color: #f57c00;
  margin-bottom: 0.5rem;
}

.about-page-box p {
  font-size: 1rem;
  color: #ddd;
}

.about-page-cta {
  margin-top: 2rem;
  background-color: #f57c00;
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  font-weight: bold;
}

.about-page-cta:hover {
  background-color: #e65100;
}

/* Responsive for small screens */
@media (max-width: 992px) {
  .about-page-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .about-page-image, .about-page-text {
    max-width: 100%;
  }
}

.leadership-image {
  background-color: #111;
  padding: 1rem;
  border-radius: 12px;
  width: 400px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  text-align: center;
}

.leadership-image img {
  width: 100%;
  max-width: 350px;
  border-radius: 20px;
  border: 3px solid purple;
}

.leadership-image .person-name {
  margin-top: 0.5rem;
  font-weight: 700;
  color: white;
}

.leadership-image .h4 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.leadership-image p {
  color: #bbb;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Team Section */
.team-section {
  text-align: center;
  margin-top: 1rem;
}

.team-section h2 {
  color: #f57c00;
  margin-bottom: 0.5rem;
}

.team-intro {
  color: #ccc;
  margin-bottom: 2rem;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.team-member {
  background-color: #111;
  padding: 1rem;
  border-radius: 12px;
  width: 280px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  text-align: center;
}

.team-member img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1rem;
  border: 2px solid purple;
}

.team-member h4 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.team-member p {
  color: #bbb;
  font-size: 0.95rem;
  line-height: 1.4;
}


/* Contact Section: Map + Form side-by-side */
.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8rem;
  background-color: black;
  padding: 4rem 2rem;
  color: white;
}

.contact-map-left {
  flex: 1 1 500px;
  max-height: 500px;
  max-width: 750px;
  margin-top: 3rem;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.contact-form-right {
  flex: 1 1 500px;
  max-width: 800px;
}

.contact-form-right h2 {
  font-size: 2rem;
  color: #f57c00;
  margin-bottom: 0.5rem;
}

.contact-form-right p {
  margin-bottom: 1.5rem;
  color: white;
}

.contact-form-right form label {
  color: white;
  font-weight: bold;
}

.contact-form-right form input,
.contact-form-right form textarea {
  background-color: black;
  color: white;
  border: 1px solid #ccc;
  padding: 0.75rem;
  border-radius: 5px;
  font-size: 1rem;
  margin-bottom: 1rem;
  width: 100%;
}

.contact-form-right form input::placeholder,
.contact-form-right form textarea::placeholder {
  color: #888;
}

.contact-form-right form button {
  background-color: #f57c00;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  width: 100%;
}

.contact-form-right form button:hover {
  background-color: #e65100;
}

/* Responsive Layout */
@media (max-width: 992px) {
  .contact-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .contact-map-left,
  .contact-form-right {
    max-width: 100%;
  }
}

/* Certificates Page */
.certificate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.certificate-card {
  background-color: #111;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  text-align: center;
  padding: 1rem;
  transition: transform 0.3s ease;
}

.certificate-card:hover {
  transform: translateY(-5px);
}

.certificate-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.certificate-card h3 {
  margin-top: 1rem;
  color: #f57c00;
  font-size: 1.1rem;
}

/* Legal Pages (Impressum / Privacy) */
.legal-page {
  background: black;
  color: white;
  padding: 4rem 2rem;
  min-height: 70vh;
}

.legal-page h1 {
  text-align: center;
  color: #f57c00;
  margin-bottom: 3rem;
}

.legal-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.legal-box {
  background: #111;
  padding: 2rem;
  border-radius: 10px;
}

.legal-box h2 {
  color: #f57c00;
}

.legal-box h3 {
  color: #ffffff;   /* make all headings white */
  margin-top: 1rem;
}


.legal-box a:link {
  color: #ffffff;          /* prevent purple visited links */
}

@media (max-width: 900px) {
  .legal-grid {
    grid-template-columns: 1fr;
  }
}


.site-footer {
  background-color: #111;
  color: #fff;
  padding: 2rem 2rem 1rem;
  font-size: 0.95rem;
}

.footer-container {
  max-width: 1600px;
  margin: 0 auto 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  gap: 2rem;
  padding: 0 60px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 240px;
}

.footer-left {
  justify-self: start;
  max-width: 320px;
  margin-top: 1.2rem;
}

.footer-left img {
  margin-bottom: 1rem;
  display: block;
  align-self: flex-start;
}

.footer-center {
  justify-self: center;
  text-align: left;
}

.footer-right {
  justify-self: end;
  text-align: left;
}

.footer-column h4 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.footer-column h5 {
  color: #fff;
  margin-bottom: 0rem;
}

.footer-column p {
  color: #ccc;
  margin: 0.5rem 0;
  line-height: 1.6;
}

.footer-bottom {
  text-align: center;
  color: #ccc;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: #f0c674;
  margin: 0 0.5rem;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.footer-column a:link {
  color: #ffffff;          /* prevent purple visited links */
}

.footer-column a:visited {
  color: #ffffff;          /* prevent purple visited links */
}

.footer-social {
  margin-top: 1.2rem;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.footer-social a {
  color: #25d366;
  font-size: 2.2rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}
/*
.footer-social a:hover {
  transform: scale(1.2);
  color: #fff;
}*/
.footer-social i.fab.fa-whatsapp {
  color: #25D366;
}

.footer-social i.fab.fa-instagram {
  color: #E1306C;
}

.footer-social i.fab.fa-facebook-f  {
  color: #1877F2;
  
}

/* LinkedIn */
.footer-social i.fab.fa-linkedin-in {
  color: #0A66C2;
}

/* X (Twitter) */
.footer-social i.fab.fa-x-twitter {
  color: #FFFFFF;
}

.footer-social i.fas.fa-envelope {
  color: #EA4335; /* professional red / Gmail-style */
}






