/* Make the boat customizer more visible and ensure it works properly */
.customizer-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.customizer-content {
  display: flex;
  flex-direction: row;
  flex: 1;
  gap: 2rem;
  height: 80vh;
  overflow: hidden;
}

.customizer-options {
  width: 40%;
  max-height: 80vh;
  overflow-y: auto;
  padding-right: 1rem;
}

.customizer-preview {
  width: 60%;
  height: 80vh;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(to bottom, #0c4a6e, #0ea5e9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Make the 3D boat model more visible */
#boat-3d-model {
  width: 80%;
  height: 60%;
  position: relative;
  margin: 0 auto;
  transform-style: preserve-3d;
  transition: transform 1s ease;
}

.boat-component {
  position: absolute;
  transition: all 0.5s ease;
}

.boat-body {
  width: 80%;
  height: 30%;
  background-color: #ffffff;
  border-radius: 20px;
  bottom: 20%;
  left: 10%;
  transform: translateZ(0);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.boat-roof {
  width: 70%;
  height: 10%;
  top: 40%;
  left: 15%;
  transform: translateZ(20px);
  display: none;
}

.boat-roof.thatch {
  background-color: #d4a76a;
  border-radius: 5px 5px 0 0;
}

.boat-roof.metal {
  background-color: #a1a1aa;
  border-radius: 10px 10px 0 0;
}

.boat-roof.canvas {
  background-color: #94a3b8;
  border-radius: 15px 15px 0 0;
}

.boat-interior {
  width: 60%;
  height: 20%;
  bottom: 30%;
  left: 20%;
  transform: translateZ(10px);
  display: none;
}

.boat-interior.standard {
  background-color: #94a3b8;
}

.boat-interior.premium {
  background-color: #7c3aed;
}

.boat-interior.luxury {
  background-color: #c2410c;
}

.boat-grill {
  width: 15%;
  height: 10%;
  bottom: 35%;
  right: 25%;
  transform: translateZ(15px);
  display: none;
}

.boat-grill.basic {
  background-color: #71717a;
  border-radius: 5px;
}

.boat-grill.premium {
  background-color: #525252;
  border-radius: 8px;
}

.boat-grill.deluxe {
  background-color: #404040;
  border-radius: 10px;
}

/* Add a label to make it clear this is the 3D boat model */
.boat-3d-container::before {
  content: "3D Boat Model - Click options on the left to customize";
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  text-align: center;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  z-index: 10;
}

/* Make the business plan section more visible */
.business-plan-content {
  max-height: 70vh;
  overflow-y: auto;
}

/* Add a clear indicator for the business plan section */
#slide-business-plan::before {
  content: "Business Plan Section";
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  text-align: center;
  color: var(--primary);
  font-weight: bold;
  font-size: 1.2rem;
  z-index: 10;
}

/* Add navigation instructions */
.navigation-instructions {
  position: fixed;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  z-index: 100;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Responsive fixes */
@media (max-width: 768px) {
  .customizer-content {
    flex-direction: column;
    height: auto;
  }

  .customizer-options,
  .customizer-preview {
    width: 100%;
    height: 50vh;
  }

  .customizer-preview {
    margin-bottom: 20px;
  }

  .boat-3d-container::before {
    font-size: 1rem;
  }
}
