/* ============================================================================
   PHYSIOTHERAPIE ANDREA SCHMITT - STYLES
   Clean, modern design matching Webflow reference
   ============================================================================ */

/* ============================================================================
   RESET & BASE STYLES
   ============================================================================ */

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

html {
  -webkit-text-size-adjust: 100%;
  height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: normal;
}

p {
  margin: 0;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

/* ============================================================================
   LAYOUT
   ============================================================================ */

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================================
   HEADER SECTION
   ============================================================================ */

.header-section {
  width: 100%;
  background-color: #004532;
  padding: 20px 0;
}

.header-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-image {
  width: auto;
  height: auto;
  max-width: 100%;
  margin: 0 auto;
  display: block;
}

/* ============================================================================
   TITLE SECTION
   ============================================================================ */

.title-section {
  padding: 60px 20px 40px;
  background-color: #fff;
  text-align: center;
}

.main-title {
  font-size: 36px;
  font-weight: 400;
  line-height: 1.3;
  color: #333;
  text-align: center;
  margin: 0 auto;
  max-width: 800px;
}

/* ============================================================================
   GALLERY SECTION
   ============================================================================ */

.gallery-section {
  padding: 40px 20px 80px;
  background-color: #fff;
  border-bottom: 1px solid #e4e4e4;
}

.practice-info {
  margin-bottom: 50px;
  text-align: center;
}

.practice-heading {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 20px;
  color: #333;
}

.practice-address {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
}

/* ============================================================================
   SLIDER
   ============================================================================ */

.gallery-slider-wrapper {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 70px;
}

.slider-mask {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 40px;
}

.slide {
  flex: 0 0 calc(50% - 20px);
  min-width: calc(50% - 20px);
  opacity: 1;
  transition: opacity 0.5s ease;
}

.slide-content {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
  background: #000;
}

.slide-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.slide-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
  color: #ffffff;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
}

/* Slider Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.slider-arrow:hover {
  background-color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transform: translateY(-50%) scale(1.05);
}

.slider-arrow-left {
  left: 0;
}

.slider-arrow-left .arrow-icon {
  transform: rotate(180deg);
}

.slider-arrow-right {
  right: 0;
}

.slider-arrow-right .arrow-icon {
  transform: rotate(180deg);
}

.arrow-icon {
  width: 24px;
  height: 24px;
  display: block;
  opacity: 0.8;
}

/* Slider Navigation Dots */
.slider-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  background-color: #d4d4d4;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot:hover {
  background-color: #999;
  transform: scale(1.15);
}

.slider-dot.active {
  background-color: #333;
  transform: scale(1.2);
}

/* ============================================================================
   FOOTER
   ============================================================================ */

.footer {
  background-color: #004532;
  color: #dedede;
  padding: 60px 20px 30px;
  margin-top: auto;
}

.footer-content {
  max-width: 1140px;
  margin: 0 auto 40px;
}

.footer-block {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.footer-heading {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #dedede;
}

.footer-text {
  font-size: 15px;
  line-height: 2;
  color: #dedede;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.15);
  margin: 40px auto 25px;
  max-width: 1140px;
}

.footer-copyright {
  text-align: center;
  font-size: 14px;
  color: #dedede;
  opacity: 0.7;
  padding-bottom: 10px;
}

/* ============================================================================
   RESPONSIVE - TABLET
   ============================================================================ */

@media screen and (max-width: 991px) {
  .main-title {
    font-size: 30px;
  }

  .practice-heading {
    font-size: 24px;
  }

  .practice-address {
    font-size: 16px;
  }

  .gallery-slider-wrapper {
    padding: 0 60px;
  }

  .slider-track {
    gap: 30px;
  }

  .slide {
    flex: 0 0 calc(50% - 15px);
    min-width: calc(50% - 15px);
  }

  .slider-arrow {
    width: 50px;
    height: 50px;
  }

  .slider-arrow-left {
    left: 5px;
  }

  .slider-arrow-right {
    right: 5px;
  }

  .slide-title {
    font-size: 18px;
    padding: 20px;
  }

  .arrow-icon {
    width: 20px;
    height: 20px;
  }
}

/* ============================================================================
   RESPONSIVE - MOBILE
   ============================================================================ */

@media screen and (max-width: 767px) {
  .title-section {
    padding: 40px 20px 30px;
  }

  .main-title {
    font-size: 26px;
  }

  .gallery-section {
    padding: 30px 20px 60px;
  }

  .practice-heading {
    font-size: 22px;
  }

  .practice-address {
    font-size: 16px;
  }

  .gallery-slider-wrapper {
    padding: 0 55px;
  }

  .slider-track {
    gap: 0;
  }

  .slide {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .slider-arrow {
    width: 45px;
    height: 45px;
  }

  .slider-arrow-left {
    left: 5px;
  }

  .slider-arrow-right {
    right: 5px;
  }

  .arrow-icon {
    width: 18px;
    height: 18px;
  }

  .slide-title {
    font-size: 16px;
    padding: 16px 20px;
  }

  .footer {
    padding: 50px 20px 25px;
  }

  .footer-text {
    font-size: 14px;
  }
}

/* ============================================================================
   RESPONSIVE - SMALL MOBILE
   ============================================================================ */

@media screen and (max-width: 479px) {
  .title-section {
    padding: 30px 15px 20px;
  }

  .main-title {
    font-size: 22px;
  }

  .gallery-section {
    padding: 25px 15px 50px;
  }

  .practice-heading {
    font-size: 20px;
  }

  .practice-address {
    font-size: 15px;
  }

  .header-image {
    max-width: 100%;
  }

  .gallery-slider-wrapper {
    padding: 0 50px;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
  }

  .arrow-icon {
    width: 16px;
    height: 16px;
  }

  .slide-title {
    font-size: 15px;
    padding: 14px 16px;
  }
}

/* ============================================================================
   WEBFLOW COMPATIBILITY
   ============================================================================ */

.w-mod-js *[data-ix] {
  opacity: 1;
}

.w-mod-touch * {
  background-attachment: scroll !important;
}
