/* GLOBAL STYLES */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background: #FBFBF6;
  color: #000000;
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

p {
  font-size: 20px;
  line-height: 1.3;
  margin-top: 0;
  margin-bottom:20px;
}

.mobile-break {
  display: none;
}

/* HERO BANNER */
.banner_container {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
  z-index: 1;
}

.banner_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner_container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: 2;
  pointer-events: none;
}

.title-logo-scroll {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  pointer-events: none;
  background: transparent;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.title-logo-scroll img {
  width: 80%;
  max-width: none;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter 0.2s ease, width 0.1s linear;
}

.main-content {
  position: relative;
  z-index: 10;
  background: #FBFBF6;
  min-height: 150vh;
}

/* TEXT BLOCK */
.text {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  padding: 150px 4%;
  overflow: hidden;
}

.text > div:first-child {
  flex: 0 0 50%;
  width: 50%;
  max-width: 50%;
  padding-right: 8%;
  container-type: inline-size;
}

.text > div:last-child {
  flex: 0 0 50%;
  width: 50%;
  max-width: 50%;
}

.text h1 {
  font-family: Times, serif;
  font-weight: normal;
  white-space: nowrap;
  font-size: clamp(24px, 7.8cqw, 60px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0;
}

.text div p:not(:first-of-type) {
  text-indent: 70px;
}

/* IMAGES GRID */
.images-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 4% 150px 4%;
  gap: 20px;
  width: 100%;
}

.image-block {
  flex: 1 1 0%;
  max-width: calc(50% - 10px);
}

.image-block img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ACCORDION */
.accordion-wrapper {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 4% 150px 4%;
}

.accordion-main-title {
  font-weight: normal;
  font-size: clamp(24px, 4vw, 52px);
  margin: 0 0 20px 0;
  letter-spacing: -0.02em;
  text-align: left;
}

.accordion-item {
  border-bottom: 1px solid #ccc;
}

.accordion-header {
  font-family: Times, serif;
  font-style: italic;
  width: 100%;
  background: none;
  border: none;
  outline: none;
  padding: 13px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-size: 30px;
  transition: color 0.3s ease;
  color: #000000 !important;
  -webkit-appearance: none;
}

.accordion-icon {
  position: relative;
  width: 14px;
  height: 14px;
}

.accordion-icon::before,
.accordion-icon::after {
  content: '';
  position: absolute;
  background-color: #000;
  transition: transform 0.3s ease;
}

.accordion-icon::before {
  top: 6px;
  left: 0;
  width: 14px;
  height: 1px;
}

.accordion-icon::after {
  top: 0;
  left: 6px;
  width: 1px;
  height: 14px;
}

.accordion-item.active .accordion-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.accordion-item.active .accordion-icon::before {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.accordion-inner {
  padding: 0 0 40px 0;
}

.accordion-inner p {
  text-indent: 70px;
}

/* SWIPER SLIDER */
:root {
  --swiper-navigation-size: 20px;
  --swiper-theme-color: #fff;
}

.swiper {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000000;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.mySwiper .swiper-button-prev,
.mySwiper .swiper-button-next {
  padding: 10px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50px;
  width: 45px;
  height: 45px;
  z-index: 1;
  font-weight: 900;
}

.swiper-container {
  position: relative;
  margin: 0 auto 150px auto;
}

.swiper-container .swiper-pagination {
  bottom: -40px !important;
}

.swiper-pagination-bullet {
  background: #000;
  opacity: .1;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

/* CONTACT CALLOUT */
.project-callout {
  position: relative;
  width: 100%;
  min-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('img/bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
}

.project-callout-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.project-callout-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 4%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.project-callout-title {
  font-weight: normal;
  font-size: clamp(24px, 4vw, 52px);
  margin: 0 0 20px 0;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1;
}

.project-callout-text {
  color: #fff;
  max-width: 720px;
  margin: 0 0 40px 0;
}

.project-callout-btn {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 2px solid #fff;
  border-radius: 30px;
  padding: 14px 36px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.project-callout-btn:hover {
  background-color: #fff;
  color: #000;
}

/* FOOTER */
.simple-footer {
  width: 100%;
  background-color: #fff;
}

.sf-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 150px 4%;
}

.sf-col-50 {
  width: 50%;
}

.sf-col-50:first-child {
  padding-right: 40px;
}

.sf-container p {
  margin: 0 0 15px 0;
}

.sf-container p:last-child {
  margin-bottom: 0;
}

.sf-container a {
  color: #000;
  text-decoration: none;
}

.sf-container a:hover {
  text-decoration: underline;
}

/* RESPONSIVE (TABLET & MOBILE) */
@media screen and (max-width: 768px) {
  p {
    font-size: 20px;
  }

  .mobile-break {
    display: inline;
  }

  .banner_container,
  .title-logo-scroll {
    height: 70vh;
  }

  .title-logo-scroll img {
    width: 90%;
  }

  .text {
    flex-direction: column;
    gap: 40px;
    padding: 60px 20px 80px 20px;
  }

  .text > div:first-child,
  .text > div:last-child {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }

  .text > div:first-child {
    padding-right: 0;
  }

  .text h1 {
    font-size: 45px;
    white-space: normal;
  }

  .text div p {
    text-indent: 40px;
  }

  .images-container {
    flex-direction: column;
    gap: 20px;
    padding: 0 4% 100px 4%;
  }
  .image-block:first-child {
    display:none;
  }
  .image-block {
    max-width: 100%;
  }

  .accordion-wrapper {
    padding: 0 4% 100px 4%;
  }

  .accordion-main-title {
    font-size: 40px;
  }

  .accordion-header {
    font-size: 25px;
  }

  .accordion-inner {
    padding: 0 0 30px 0;
  }

  .accordion-inner p {
    text-indent: 40px;
  }

  .project-callout-title {
    font-size: 40px;
  }

  .mySwiper .swiper-button-prev,
  .mySwiper .swiper-button-next {
    display: none;
  }

  .sf-container {
    flex-direction: column;
    gap: 30px;
    padding: 80px 4%;
  }

  .sf-col-50 {
    width: 100%;
    padding-right: 0;
  }

  .project-callout-container {
  padding: 0 40px;

}
}
