/*
COLORS
#f1faee
#a8dadc
#457b9d
Call to Action: #1d3557
*/
/* FONTS
font-family: 'Roboto', sans-serif;
*/

/* Reset some default styles */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}
h1,
p {
  margin: 0;
  padding: 0;
}

/* Set a default font and background color */
body {
  font-family: 'Roboto', sans-serif;
  background-color: #ffffff;
}

/* Add styles for the header */
header {
  width: 1280px;
  max-width: 100%;
  margin: 0 auto;
  background-color: #ffffff;
  color: #1d3557;
  display: flex;
  align-items: center;
  padding: 20px;
}

.logo {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.logo-img {
  max-width: 20%;
  height: auto;
  padding-left: 50px;
}
.logo p {
  flex: 1;
  padding-top: 40px;
  font-weight: bold;
  font-size: 20px;
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
}

nav {
  flex-grow: 1;
  text-align: center;
}

nav ul {
  list-style: none;
  padding: 0;
}

nav ul li {
  display: inline-block;
  margin-right: 20px;
}

nav ul li a {
  color: #1d3557;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-weight: bold;
  font-size: 20px;
}

.header-contact {
  color: #1d3557;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-weight: bold;
  padding-right: 20px;
  font-size: 20px;
}

/* Hero Section */
.hero {
  width: 100%;
  max-width: 1280px;
  height: 400px;
  background-color: #1d3557;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  color: #f1faee;
}

.hero-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.hero-content {
  flex: 1;
}
.hero-content h3 {
  font-size: 30px;
}

.hero-photo {
  flex: 1;
  text-align: right;
  padding-left: 20px;
}

.hero-photo img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Add a container to center the content */
.container {
  flex-grow: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px;
}

/* Section Spacing */
section {
  margin-top: 100px;
  margin-bottom: 100px;
}
section h3 {
  font-size: 40px;
  margin: 10px 0;
}
section p {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
}

/* Add styles for the main content */
section.about-content {
  background-color: #fff;
  padding: 60px 20px 60px 20px;
}
.about-content p {
  padding-top: 10px;
}
.commercial-content p {
  padding-top: 10px;
}

/* Image Gallery */
.image-gallery {
  text-align: left;
  padding-top: 20px;
  padding-bottom: 20px;
}

.thumbnails {
  margin-bottom: 20px;
}

.thumbnails img {
  width: 200px;
  height: auto;
  cursor: pointer;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 999;
  overflow: auto;
  text-align: center;
}

.full-image {
  max-width: 90%;
  max-height: 90%;
  margin: 20px auto;
}

.close {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  transform: translateY(-50%);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

/* Contact Section */
.contact {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1d3557;
  font-size: 20px;
}

.contact-container {
  display: flex;
  flex-direction: row;
  width: 90%;
  margin: auto;
}

section.contact {
  margin-top: 40px;
  margin-bottom: 100px;
}

.h3-contact {
  font-size: 40px;
  margin: 10px 0;
}

.contact-container p {
  padding-bottom: 20px;
  font-size: 20px;
}

.text-group {
  flex: 1;
  padding: 20px;
  background-color: #f0f0f0;
}

.map {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.map iframe {
  max-width: 100%;
  max-height: 100%;
}

/* Add styles for the footer */
footer {
  background-color: #1d3557;
  color: #ffffff;
  padding: 20px;
  text-align: center;
}

/* Add responsive styles */
@media screen and (max-width: 600px) {
  /* Adjust container width for smaller screens */
  .container {
    max-width: 100%;
    padding: 10px;
  }
  header {
    flex-wrap: wrap;
  }

  .logo,
  .nav {
    flex-basis: 100%;
    text-align: center;
  }

  .logo img {
    margin-bottom: 10px;
  }

  .nav ul {
    display: flex;
    justify-content: center;
  }

  .nav ul li {
    margin-right: 10px;
  }

  /* Adjust hero section width for smaller screens */
  .hero {
    height: auto;
    flex-direction: column;
    padding: 20px;
  }

  .hero-container {
    flex-direction: column;
    align-items: center;
  }

  .hero-content,
  .hero-photo {
    text-align: center;
  }

  /* Adjust font size for smaller screens */
  h1 {
    font-size: 24px;
  }
}
