
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.container h1 {
  font-family: 'Oswald';
  font-size: 50px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.banner {
    background-color: black;
    color: white;
    text-align: center;
    padding: 50px 0;
    text-transform: uppercase;
}

.banner h1 {
    font-family: Oswald;
    font-size: 65px;
}

a {
    text-decoration: none;
}

.image-section {
  position: relative;
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  margin: 0;
  padding: 0;
}


.image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
}

.image-banner {
  font-family: 'Oswald';
  text-transform: capitalize;
  position: absolute;
  bottom: 0;
  left: 1.35%;
  width: 75%;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 15px 20px;
  font-size: 30px;
  font-weight: bold;
  text-align: left;
}

.info-table {
  text-transform: uppercase;
  width: 70%;
  border-collapse: collapse;
}

.info-table td {
  border: 1px solid #d3d3d3;
  padding: 10x;
  vertical-align: top;
}

.info-block {
  text-align: center;
}

.title {
  color: red;
  font-weight: bold;
  margin: 0;
}

.info {
  color: black;
  margin-top: 5px;
}

.features-tabs {
  background-color: #f8f8f8;
  padding: 20px;
}

.tab-buttons {
  display: flex;
}

.tab-button {
  padding: 10px;
  background-color: #ddd;
  border: none;
  cursor: pointer;
  margin-right: 5px;
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  margin: 20px auto;
  margin-right: 10px;
}

.tab-button.active {
  background-color: red;
  color: white;
}

.tab-content {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.tab-content-item {
  display: none;
  tex-align: left;
  padding-left: 20px;
  margin-left: 0;
  margin-top: 20px;
}

.tab-content-item ul {
    text-align: left;
    padding-left: 20px;
    margin-left: 0;
    display: block;
}

.tab-content-item.active {
  display: block;
}

.specs-button {
   font-family: Oswald;
   text-transform: uppercase;
   background-color: red;
   color: white;
   border: none;
   padding: 10px 20px;
   font-size: 25px;
   text-align: center;
   transition: background-color 0.3s ease;
   margin-top: 30px;
   margin-bottom: 20px;
   text-decoration: none;
}

.specs-button a {
    color: white;
    text-decoration: none;
}

.specs-button a:hover {
   text-decoration: underline;
}

.details-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 800px;
  margin: 20px auto;
}

.walkaround-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  max-width: 100%;
}


.walkaround-section iframe {
  width: 100%;
  height: 600px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/*button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  margin: 20px auto;
}*/

.section-header {
    font-size: 30px;
}

.section-header-container a {
    text-decoration: none;
    font-weight: bold;
    background-color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 5px;
    color: white;
    font-weight: bold;
    display: inline-block;
    font-size: 18px;
}

@media (max-width: 600px) {
  .banner h1 {
    font-size: 40px;
  }

  .container {
    padding: 10px;
  }

  .container h1 {
    font-size: 35px;
  }

  .image-section {
    height: 30vh;
  }

  .image-section img {
    width: 100%;
    height: auto;
  }

  .image-banner {
    font-size: 25px;
    left: 2.5%;
  }

  .info-table {
    width: 100%;
    font-size: 14px;
  }

  .info-block {
    display: block;
    margin-bottom: 10px;
  }

  .features-tabs .tab-buttons {
    flex-wrap: wrap;
    justify-content: center;
  }

  .tab-button {
    font-size: 14px;
    padding: 8px 10px;
    margin: 5px;
  }

  .tab-content-item ul {
    padding-left: 20px;
    font-size: 14px;
  }

    .tab-content-item p {
        font-size: 14px;
    }

  .specs-button {
    width: 100%;
    font-size: 16px;
    padding: 10px;
  }

  iframe {
    height: 300px;
  }

  .section-header {
    font-size: 20px;
  }

  .section-header-container a {
    font-size: 15px;
    padding: 8px 15px;
  }
}


.details-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--primary-color);
    font-weight: bold;
    text-decoration: none;
}

.details-link:hover {
    text-decoration: underline;
}

.reviews {
    padding: 20px;
    margin: 20px auto;
    max-width: 1200px;
    text-align: left;
}

.reviews h2 {
    margin-bottom: 10px;
    text-align: left;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.review-card {
    background: white;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
    text-align: left;
}

.review-card:hover {
    transform: scale(1.03);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.review-header img {
    width: 30px;
    height: auto;
}

.stars {
    margin-top: 10px;
    color: #f4b400;
    font-size: 20px;
}

.details-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--primary-color);
    font-weight: bold;
    text-decoration: none;
}

.details-link:hover {
    text-decoration: underline;
}



.section-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.section-header-container a:hover {
    background-color: darkred;
}


@media (min-width: 601px) and (max-width: 900px) {
    .banner h1 {
        font-size: 50px;
    }

    .container {
        padding: 10px;
    }

    .container h1 {
        font-size: 45px;
    }

    .image-section {
        height: 30vh;
    }

    .image-section img {
        width: 100%;
        height: auto;
    }

    .image-banner {
        font-size: 25px;
        left: 2.0%;
    }

    .info-table {
        width: 100%;
        font-size: 15px;
    }

    .info-block {
        display: block;
        margin-bottom: 10px;
    }

    .features-tabs .tab-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }

    .tab-button {
        font-size: 16px;
        padding: 8px 10px;
        margin: 5px;
    }

    .tab-content-item ul {
        padding-left: 20px;
        font-size: 16px;
    }

    .tab-content-item p {
        font-size: 16px;
    }

    .specs-button {
        width: 100%;
        font-size: 18px;
        padding: 10px;
    }

    iframe {
        height: 400px;
    }

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

    .section-header-container a {
        font-size: 18px;
        padding: 8px 15px;
    }
}


@media (min-width: 901px) and (max-width: 991px) {
    .banner h1 {
        font-size: 60px;
    }

    .container {
        padding: 10px;
    }

    .container h1 {
        font-size: 50px;
    }

    .image-section {
        height: 50vh;
    }

    .image-section img {
        width: 100%;
        height: auto;
    }

    .image-banner {
        font-size: 30px;
        left: 2.0%;
    }

    .info-table {
        width: 100%;
        font-size: 20px;
    }

    .info-block {
        display: block;
        margin-bottom: 10px;
    }

    .features-tabs .tab-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }

    .tab-button {
        font-size: 20px;
        padding: 8px 10px;
        margin: 5px;
    }

    .tab-content-item ul {
        padding-left: 20px;
        font-size: 20px;
    }

    .tab-content-item p {
        font-size: 20px;
    }

    .specs-button {
        width: 100%;
        font-size: 18px;
        padding: 10px;
    }

    iframe {
        height: 500px;
    }

    .section-header {
        font-size: 30px;
    }

    .section-header-container a {
        font-size: 20px;
        padding: 8px 15px;
    }
}

