/* ── Reset ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Open Sans', sans-serif;
  background: #121832;
  color: #ffffff;
}
a, a:visited, a:hover {
  color:#ffffff;
}

/* ── Desktop layout ── */
.page-wrapper {
  display: flex;
  min-height: 100vh;
}

/* ── Left content panel ── */
.content-panel {
  width: 40%;
  min-width: 360px;
  background: #121832;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 48px;
  position: relative;
  z-index: 2;
}

.logo {
  margin-bottom: 36px;
}

.logo img {
  width: 160px;
  height: auto;
}

h1 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
}

.tagline {
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
}

.contact-info {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}

.btn-get-in-touch {
  display: inline-block;
  max-width: 350px;
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  text-decoration: none;
  padding: 14px 40px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  text-align: center;
}

.btn-get-in-touch:hover {
  background: rgba(255, 255, 255, 0.35);
}

.copyright {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 50px;
  font-style: italic;
}

/* ── Slideshow panel ── */
.slideshow-panel {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.slideshow-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.slideshow-slide.active {
  opacity: 1;
}

.slideshow-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Slideshow arrows ── */
.slideshow-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.4);
  color: #ffffff;
  border: none;
  width: 44px;
  height: 44px;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease, background 0.3s ease;
  border-radius: 50%;
}

.slideshow-panel:hover .slideshow-arrow {
  opacity: 1;
}

.slideshow-arrow:hover {
  background: rgba(0, 0, 0, 0.65);
}

.slideshow-arrow.prev {
  left: 16px;
}

.slideshow-arrow.next {
  right: 16px;
}

/* ── Mobile layout (800px breakpoint) ── */
@media (max-width: 800px) {
  .page-wrapper {
    flex-direction: column;
    min-height: auto;
  }

  .content-panel {
    width: 100%;
    min-width: unset;
    padding: 48px 32px 40px;
    text-align: center;
    order: 2;
  }

  .logo {
    margin-bottom: 28px;
  }

  .logo img {
    width: 140px;
  }

  h1 {
    font-size: 1.6rem;
    margin-bottom: 16px;
  }

  .tagline {
    margin-bottom: 32px;
  }

  .contact-info {
    margin-bottom: 20px;
  }

  .btn-get-in-touch {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 32px;
  }


  .slideshow-panel {
    min-height: 280px;
    height: 40vw;
    max-height: 360px;
    order: 1;
  }

  .slideshow-arrow {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}
