/* Import the Open Sans font */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');

body, ul, li {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
}

/*Cookie*/
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #333;
  color: #fff;
  padding: 20px;
  text-align: center;
  z-index: 1000;
}

#cookie-banner .cookie-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#cookie-banner p {
  margin: 0 0 10px;
  font-size: 14px;
}

#cookie-banner .button-container {
  display: flex;
  gap: 10px;
}

#cookie-banner button {
  background-color: rgb(0, 85, 135);
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
}

#cookie-banner button:hover {
  background-color: rgb(7, 36, 68)
}

.banner-cookie{
  color:rgb(0, 85, 135);
  text-decoration: none;
}

.banner-cookie:hover{
  text-decoration: underline;
}

/* Navbar */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

.navbar-menu .current a {
font-weight: 650;
}

.navbar {
display: flex;
align-items: center;
justify-content: space-between;
background-color: #fff;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
padding: 20px;
position: fixed; 
top: 0;
left: 0;
width: 100%; 
z-index: 1000;
}

body {
margin: 0;
padding-top: 80px;
}

.logo img {
height: 60px;
margin-right: 20px;
}

.navbar-menu {
display: flex;
justify-content: center;
align-items: center;
list-style: none;
flex-grow: 1;
}

.navbar-menu li {
margin: 0 10px;
position: relative;
}

.navbar-menu a {
text-decoration: none;
color: rgb(0, 85, 135);
font-size: 16px;
font-weight: 500;
text-transform: uppercase;
transition: color 0.3s ease;
display: block;
padding: 10px 15px;
}

.navbar-menu a:hover {
color: rgb(235, 96, 43);
}

.language-switcher {
margin-left: auto;
}

.language-switcher select {
padding: 5px;
font-size: 14px;
border-radius: 4px;
border: 1px solid #ccc;
background-color: #fff;
color: rgb(0, 85, 135);
cursor: pointer;
}

.hamburger {
display: none;
flex-direction: column;
cursor: pointer;
position: relative;
}

.hamburger span {
height: 3px;
width: 25px;
background: rgb(0, 85, 135);
margin: 4px;
border-radius: 5px;
}

@media (max-width: 768px) {
  .navbar {
    padding: 10px;
}

.logo img {
  height: 46px;
  margin-right: 10px;
}

.navbar-menu {
  display: none;
  flex-direction: column;
  width: 100%;
  background: white;
  position: absolute;
  top: 80px;
  left: 0;
  text-align: center;
  z-index: 3;
}

.navbar-menu.active {
  display: flex;
}

.navbar-menu li {
  margin: 10px 0;
  text-align: center;
}

.hamburger {
  display: flex;
  z-index: 3;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.language-switcher {
  margin-left: 0;
  margin-top: 10px;
  margin-bottom: 10px;
}
}

@media (min-width: 769px) and (max-width: 1290px) {
.navbar {
  padding: 10px;
}

.navbar-menu {
  flex-wrap: wrap;
  justify-content: center;
}

.navbar-menu li {
  margin: 5px 15px;
}

.navbar-menu a {
  font-size: 15px;
}

.logo img {
  height: 50px;
  margin-right: 10px;
}
}

@media (min-width: 1291px) {
.navbar {
  padding: 20px;
}

.navbar-menu {
  justify-content: center;
}

.navbar-menu li {
  margin: 0 15px;
}

.navbar-menu a {
  font-size: 16px;
}

.logo img {
  height: 50px;
  margin-right: 10px;
}

.hamburger {
  display: none;
}
}

/*Hero*/

.hero {
  position: relative;
  height: 50vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  color: #ffffff;
  overflow: hidden; /* ensures image doesn’t overflow */
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* cover behaves like background-size: cover */
  z-index: -1; /* push image behind content */
}

@media (max-width: 768px) {
  .hero {
      height: 40vh;
  }
}

@media (max-width: 400px) {
  .hero {
      height: 30vh;
  }
}


/*Repair*/
.repair-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  margin: 40px auto;
  max-width: 1800px;
}

.text-container {
  flex: 1;
  margin-right: 20px;
  text-align: center;
}

.text-container h1 {
  color: rgb(0, 85, 135);
  font-size: 40px;
  font-weight: 500;
  text-transform: uppercase;
}

.text-container p {
  font-size: 18px;
  margin: 10px 0 0;
  color: #555;
}

/* New: list styling for repair-section */
.repair-section ul,
.repair-section ol {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  color: #555;
  line-height: 1.8;
  margin: 10px 0 20px 0;
  padding-left: 60px;
}

.repair-section ul li,
.repair-section ol li {
  margin: 10px 0;
}

.repair-section ul {
  list-style-type: disc;
}

.repair-section ol {
  list-style-type: decimal;
}

.image-container {
  flex: 1;
  display: flex;
  justify-content: center;
}

.image-container img {
  width: 80%;
  height: auto;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .repair-section {
      flex-direction: column;
      align-items: center;
  }

  .text-container {
      margin-right: 0;
      margin-bottom: 20px;
      text-align: center;
  }

  .image-container {
      display: flex;
      justify-content: center;
  }

  .image-container img {
      max-width: 100%;
  }
}

/*Work*/
.work-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  margin: 40px auto;
  max-width: 1800px;
}

.text-container {
  flex: 1;
  margin-right: 20px;
  text-align: center;
}

.text-container p {
  font-size: 18px;
  margin: 10px 0 0;
  color: #555;
}

/* New: list styling for work-section */
.work-section ul,
.work-section ol {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  color: #555;
  line-height: 1.8;
  margin: 10px 0 20px 0;
  padding-left: 60px;
}

.work-section ul li,
.work-section ol li {
  margin: 10px 0;
}

.work-section ul {
  list-style-type: disc;
}

.work-section ol {
  list-style-type: decimal;
}

.image-container {
  flex: 1;
  display: flex;
  justify-content: center;
}

.image-container img {
  width: 80%;
  height: auto;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .work-section {
      flex-direction: column;
      align-items: center;
  }

  .text-container {
      order:1;
      margin-right: 0;
      margin-bottom: 20px;
      text-align: center;
  }

  .text-container h1 {
      font-size: 34px;
  }

  .image-container {
      order: 2;
      display: flex;
      justify-content: center;
  }

  .image-container img {
      max-width: 100%;
  }
}


/*Contact*/
.contact-container {
  background: #f7f9fc;
  text-align: center;
  padding: 50px 20px;
  font-family: Arial, sans-serif;
  color: #333;
}

.contact-container h1 {
  margin: 0;
  font-size: 38px;
  color: rgb(0, 85, 135);
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.contact-container h1::after {
  content: "";
  display: block;
  width: 70%;
  height: 4px;
  background: rgb(235, 96, 43);
  margin: 14px auto 0;
  border-radius: 2px;
}

.contact-container p {
  font-size: 18px;
  line-height: 1.8;
  max-width: 850px;
  margin: 20px auto;
}

/* Contact Button */
.contact-buttons {
  margin-top: 25px;
}

.contact-buttons a {
  display: inline-block;
  margin-top: 15px;
  background-color: rgb(235, 96, 43);
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-buttons a:hover {
  background-color: rgb(0, 85, 135);
}

  

/*Footer*/

.footer {
  background-color: rgb(0, 85, 135);
  color: #fff;
  padding: 40px 0;
}

.footer-top {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-column {
  flex: 1;
  padding: 0 20px;
  max-width: 300px;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.footer-column p i {
  margin-right: 10px;
}

.cta-button {
  display: inline-block;
  margin-top: 15px;
  background-color: rgb(235, 96, 43);
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #fff;
  color: rgb(235, 96, 43);
}


.social-links {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.social-links li {
  display: inline-block;
  margin-right: 10px;
}

.social-links a {
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: rgb(235, 96, 43);
}

form {
  margin-top: 15px;
}

input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #555;
  border-radius: 4px;
  font-size: 14px;
}

button[type="submit"] {
  background-color: rgb(235, 96, 43);
  color: #ffffff;
  font-weight: 600;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: rgb(255, 255, 255);
  color: rgb(235, 96, 43);
}

button[type="submit"]:active {
  background-color: rgb(150, 150, 150);
  color: rgb(153, 51, 22);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #555;
  padding-top: 15px;
  margin-top: 20px;
  font-size: 14px;
}

.footer-bottom p,
.footer-bottom ul {
  margin: 0;
  padding: 0;
}

.footer-bottom ul {
  list-style-type: none;
}

.footer-bottom ul li {
  display: inline;
  margin-right: 10px;
}

.footer-bottom ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom ul li a:hover {
  color: rgb(235, 96, 43);
}

.footer-column .footer-links {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.footer-column .footer-links li {
  margin-bottom: 8px;
}

.footer-column .footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-column .footer-links a:hover {
  color: rgb(235, 96, 43);
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
  }

  .footer-column {
    max-width: none;
    width: 100%;
    padding: 10px 20px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}