/* closet-systems.css */
body {
  font-family: Arial, sans-serif;
  background-color: #ffffff;
  color: #333;
  margin: 0;
  padding: 0;
}




.closet-container {
  max-width: 1000px;
  width: 95%;
  margin: 0 auto;
  padding: 10px;
  box-sizing: border-box;
 
}




.closet-header img {
  width: 80%;
  height: auto;
 
}

.closet-title-text h1 {
  font-size: 1.8rem;
  text-align: left;
  padding: 10px 0;
}

.closet-slideshow img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  display: block;
  margin-bottom: 2px;
}

.closet-prompt-text {
  background-color: #f8f8f8;
  padding: 2px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  margin-top: -80px;
}

.closet-prompt-text h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.closet-prompt-text p {
  font-size: 1.1rem;
  margin: 8px 0;
}


@media (max-width: 480px) {
  .closet-container {
    width: 98%;
    padding: 5px;
  }


#ds_InnerFade {

  width: 37%;
    padding: 0px;

}


}





.closet-media-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.closet-video {
  flex: 1 1 100%;
  max-width: 480px;
}

.closet-media-image {
  flex: 1 1 calc(50% - 20px);
  max-width: 470px;
}

.closet-media-image img {
  width: auto;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Mobile stacking */
@media (max-width: 768px) {
  .closet-media-row {
    flex-direction: column;
    align-items: center;
  }

  .closet-video,
  .closet-media-image {
    max-width: 100%;
  }

  .closet-media-image img {
    height: auto;
    width: 100%;
  }
}



.closet-media-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.closet-video iframe {
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.closet-media-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 480px;
}

.closet-media-image img {
  width: auto;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .closet-media-row {
    flex-direction: column;
    align-items: center;
  }

  .closet-video iframe {
    width: 100%;
    height: auto;
  }

  .closet-media-column {
    width: 100%;
    align-items: center;
  }

  .closet-media-image img {
    width: 100%;
    height: auto;
  }

  .closet-component-nav {
    display: none;
  }



}


.closet-component-nav {
  margin: 40px auto;
  text-align: center;
}

.closet-component-nav img {
  width: 1000px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}







/* --- General container for each image row --- */
.closet-image-row {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 10px;
}

/* --- 2-column layout --- */
.closet-two-col {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.closet-col {
  width: 49%;
  text-align: center;
}

.closet-col img {
  display: block;
  margin: 0 auto;
  width: auto;
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* --- Fixed height per row --- */
.gray-row .closet-col img {
  height: 500px;
}

.white-row .closet-col img {
  height: 450px;
}

.closet-col p {
  font-size: 0.95rem;
  margin-top: 10px;
  color: #333;
}

/* --- Responsive stacking and image scaling on small screens --- */
@media (max-width: 768px) {
  .closet-two-col {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .closet-col {
    width: 100%;
  }

  .closet-col img {
    width: 100%;
    height: auto; /* Let height scale automatically based on width */
    max-width: 100%;
  }
}


/* --- Fixed image heights ONLY on wider screens --- */
@media (min-width: 769px) {
  .gray-row .closet-col img {
    height: 500px;
    width: auto;
  }

  .white-row .closet-col img {
    height: 450px;
    width: auto;
  }
}









/* Fixed height per image row (desktop only) */
@media (min-width: 769px) {
  .black-white-row .closet-col img {
    height: 625px;
    width: auto;
  }

  .drawing-install-row .closet-col img {
    height: 650px;
    width: auto;
  }
}

/* Shared message styling */
.closet-message {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  background-color: #fef7f2;
  font-size: 1.1rem;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  font-weight: bold;
  color: #222;
}

/* Mobile scaling */
@media (max-width: 768px) {
  .closet-col img {
    width: 100%;
    height: auto;
    max-width: 100%;
  }

  .closet-message {
    font-size: 1rem;
    padding: 15px;
  }
}



/* Start Here CTA Buttons */
.closet-start-here {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 10px;
}

.closet-start-here img {

  height: 247px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* ===== Design Choice Cards ===== */
.cs-choice-heading {
  text-align: center;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  color: #1f2937;
  max-width: 900px;
  margin: 30px auto 20px;
  padding: 0 20px;
  line-height: 1.4;
}

.cs-choice-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 40px;
  padding: 0 20px;
}

.cs-choice-card {
  flex: 1 1 380px;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 32px 28px;
  background: linear-gradient(135deg, #1e7d3d 0%, #2ea04f 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 2px solid transparent;
}

.cs-choice-card--alt {
  background: linear-gradient(135deg, #003366 0%, #0a4d8f 100%);
}

.cs-choice-card:hover,
.cs-choice-card:focus {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
  border-color: #ffffff;
}

.cs-choice-icon {
  font-size: 2.4rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  margin-bottom: 6px;
}

.cs-choice-title {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: #ffffff;
}

.cs-choice-sub {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 10px;
}

.cs-choice-btn {
  display: inline-block;
  margin-top: 6px;
  padding: 10px 22px;
  background: #ffffff;
  color: #1e7d3d;
  font-weight: 700;
  border-radius: 999px;
  font-size: 0.95rem;
  transition: background 0.25s ease, color 0.25s ease;
}

.cs-choice-card--alt .cs-choice-btn {
  color: #003366;
}

.cs-choice-card:hover .cs-choice-btn {
  background: #fff8d6;
}

@media (max-width: 700px) {
  .cs-choice-card {
    flex: 1 1 100%;
    padding: 26px 22px;
  }
  .cs-choice-title {
    font-size: 1.3rem;
  }
}