body, html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  height: 100%;
  background-color: white;
}

body .content section {
  width: 100vw;
  height: 100vh;
}

.section {
  position: relative;
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  scroll-snap-align: start;
}

.section:nth-child(odd) {
  background-color: #0088a2;
  color: white;
}

.images-row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
  position: relative;
}

.image-container {
  margin: 0;
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.image-container img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.image-text {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 32px;
  font-family: Arial, sans-serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  width: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px;
  box-sizing: border-box;
}


.header {
  background-color: #0088a2;
  width: 100%;
  padding: 10px 30px;
  display: flex;
  align-items: center;
  font-size: 18px;
  box-sizing: border-box;
  max-height: 80px;
  position: fixed;
  top: 0;
  z-index: 1000;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.header-logo {
  display: flex;
  align-items: center;
  flex: 1;
}

.header-logo-img {
  height: 76px;
  margin-right: 1px;
}

.header-name {
  color: white;
  font-size: 22px;
  font-family: Arial, sans-serif;
  font-weight: bold;
  letter-spacing: 1px;
  text-decoration: none;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
  margin-left: auto;
}

.categories {
  display: flex;
  margin-left: auto;
}

.categories a {
  color: white;
  margin-left: 30px;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s;
}

.categories a:hover {
  color: #00FFFF;
}


@media (max-width: 768px) {
  .categories {
    display: none;
    position: absolute;
    top: 80px;
    right: 0;
    background-color: #0088a2;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 999;
  }

  .categories a {
    margin: 10px 0;
    font-size: 20px;
  }

  .menu-toggle {
    display: block;
  }
  
  .menu-open {
    display: flex !important;
  }
}

.second-section {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin-top: 50px;
  position: relative;
  background-color: #f0f0f0;
  padding: 0;
  box-sizing: border-box;
}

.image-container {
  width: 80%;
  max-width: 1000px;
  position: relative;
  display: flex;
  justify-content: center;
 
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.image-container img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  object-position: center -12px;
  aspect-ratio: 16/9;
  transform: scale(0.95);
  transform-origin: center top;
  margin: 0;
  padding: 0;
}
 

.sticky-header {
  display: flex;
  background-color: #0088a2;
}

.sticky-header-visible {
  opacity: 1;
  visibility: visible;
  background-color: #0088a2;
}

.header-placeholder {
  height: 80px;
  visibility: hidden;
}

.containera {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.map-container {
  height: 400px;
  width: 400px;
  border-radius: 10px;
  overflow: hidden;
  z-index: 2;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contenta {
  background-color: #0088a2;
  color: white;
  padding: 20px;
  border-radius: 10px;
  text-align: left;
}

.contenta h2 {
  font-size: 2em;
  margin-bottom: 10px;
}

.contenta p {
  font-size: 1.4em;
  margin-bottom: 5px;
}

.btn-custom {
  background-color: white;
  color: black;
  border: none;
  padding: 10px 30px;
  border-radius: 25px;
  cursor: pointer;
  display: block;
  margin: 0 auto;
}

.row-equal {
  display: flex;
  align-items: stretch;
  position: relative;
}

.zoom {
  transition: transform 0.2s;
}

.zoom:hover {
  transform: scale(1.05);
}

.footer {
  background-color: #0088a2;
  color: white;
  padding: 20px 0;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-content p {
  margin: 0;
  font-family: Arial, sans-serif;
}

.footer-nav {
  margin-top: 10px;
}

.footer-nav a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
  font-family: Arial, sans-serif;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #00FFFF;
}


.modal {
  display: none;
  position: fixed;
  z-index: 1001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}


.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 2px solid #0088a2;
  border-radius: 15px;
  width: 80%;
  max-width: 350px;
  position: relative;
}


.close-button {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close-button:hover,
.close-button:focus {
  color: black;
  text-decoration: none;
}


.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-item {
  display: flex;
  align-items: center;
  margin: 10px 0;
}

.contact-logo {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.contact-info p,
.contact-info a {
  font-size: 16px;
  color: #0088a2;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .menu-toggle {
    display: block;
  }

  .categories {
    display: none;
    position: absolute;
    top: 60px;
    right: 0;
    background-color: #0088a2;
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    box-sizing: border-box;
    z-index: 999;
  }

  .categories.menu-open {
    display: flex;
  }
}




@media (max-width: 768px) {
  .namelogo {
    font-size: 32px;
}

.slogan {
    font-size: 24px;
}

.button {
    padding: 10px 20px;
    margin: 10px;
}

.image-container {
    width: 90%;
    height: auto;
    max-width: 400px;
    margin: 0 auto;
    padding: 0 5%;
    box-sizing: border-box;
}

.image-container img {
    width: 120%;
    height: 70vh;
    max-height: 70vh;
    object-fit: cover;
    object-position: left;

    border-radius: 10px;
    object-fit: cover;
    object-position: right px;
    aspect-ratio: 16/9;
    transform: scale(0.95);
    transform-origin: center left;
}

.header .categories {
    display: none;
}

.contenta h2 {
    font-size: 1.2em;
}

.contenta p {
    font-size: 1em;
}

.containera {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 150px;
}

.map-container, .contenta {
    width: 100%;
    height: 270px;
    margin: 0;
    box-sizing: border-box;
}

.images-row {
    flex-direction: column;
    gap: 20px;
}


.containera .contenta {
    order: 1;
}

.containera .map-container {
    order: 2;
}


.row-equal {
    display: flex;
    flex-direction: column;
}
}


@media (max-width: 480px) {
.namelogo {
    font-size: 32px;
}

.slogan {
    font-size: 24px;
}

.button {
    padding: 10px 20px;
    margin: 10px;
}

.image-container {
    width: 90%;
    height: auto;
    max-width: 400px;
    margin: 0 auto;
    padding: 0 5%;
    box-sizing: border-box;
}

.image-container img {
    width: 120%;
    height: 70vh;
    max-height: 70vh;
    object-fit: cover;
    object-position: left;

    border-radius: 10px;
    object-fit: cover;
    object-position: right px;
    aspect-ratio: 16/9;
    transform: scale(0.95);
    transform-origin: center left;
}

.header .categories {
    display: none;
}

.contenta h2 {
    font-size: 1.2em;
}

.contenta p {
    font-size: 1em;
}

.containera {
    padding: 0px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 10px;
}

.map-container, .contenta {
    width: 100%;
    height: 270px;
    margin: 0;
    box-sizing: border-box;
}

.images-row {
    flex-direction: column;
    gap: 20px;
}


.containera .contenta {
    order: 1;
}

.containera .map-container {
    order: 2;
}


.row-equal {
    display: flex;
    flex-direction: column;
}
}