* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
.home-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 88vh;
  width: 100%;
  position: relative;
  overflow: hidden;
  color: white;
}
.home-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.home-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  pointer-events: none;
  z-index: 1;
}
.home-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.home-container h1 {
  font-size: 9rem;
  font-weight: 900;
  text-shadow: 1px 1px 2px black, 0 0 1em black;
}
.home-container h2 {
  font-size: 2rem;
  text-shadow: 12px 12px 44px black;
}
.order-now {
  height: 7vh;
  width: 27vh;
  border: none;
  border-radius: 5px;
  font-weight: 700;
  font-size: 1.2rem;
  background-color: rgba(0, 0, 0, 0.404);
  border: 1px solid white;
  color: white;
  margin-top: 1vh;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.order-now:hover {
  background-color: #7D0A0A;
}
.top-sales {
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 6vh;
}
.top-container {
  display: grid;
  gap: 4vh;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 2vh;
}
.best-tiles-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.top-tiles {
  height: 30vh;
  width: 35vh;
  box-shadow: 1px 1px 5px black;
  margin-bottom: 2vh;
}
.top-tiles img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-position: center;
  display: block;
}
.about-container {
  height: auto;
  width: 100%;
  background-color: white;
  color: black;
  padding: 90px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3vh;
}
.map-container {
  height: 50vh;
  width: 50%;
  box-shadow: 1px 1px 3px black;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.about-content {
  height: 50vh;
  width: 50%;
  box-shadow: 1px 1px 3px black;
  padding: 4vh;
  color: #8b0000;
}
.top-sales h3 {
  font-size: 2rem;
  font-weight: bold;
  color: #000000; /* Dark red */
}
.about-content h3 {
  font-size: 1.6rem;
}
.content {
  margin-top: 3vh;
}
.content p {
  font-size: 17px;
}
.content span {
  font-weight: bold;
}

.feature-highlights {
  gap: 20px;
  justify-content: center;
  padding: 40px 20px;
  background-color: #fff;
  display: flex;
}

.feature-card {
  padding: 20px;
  height: 35vh;
  max-width: 450px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
  border: 1px solid #b22222;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-title {
  font-weight: bold;
  font-size: 21px;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #8b0000; /* Dark red */
}

.feature-description {
  color: #333;
  line-height: 1.6;
  font-size: 19px;
}

.feature-description strong {
  margin-top: 10px;
  color: #8b0000;
  font-weight: bold;
  display: block;
}
.contacts-container {
  margin-top: 4vh;
  height: auto;
  width: 100%;
  color: white;
}
.col-wrapper {
  display: flex;
  gap: 12vh;
}
.col {
  width: 50%;
  height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5vh;
}
.row {
  display: flex;
  align-items: center;
  gap: 3vh;
}
.row p {
  font-size: 2rem;
}
.bx {
  font-size: 3rem;
}
.row a {
  color: white;
}
.cart {
  color: #000;
}
.main-section{
  height: auto;
}

@media (max-width: 768px) {
  .main-section {
    width: 100%;
  }
  .home-container{
    height: 100svh;
  }
  .home-container h1 {
    font-size: 3rem;
  }
  .home-container h2 {
    font-size: 1rem;
  }
  .top-container {
    gap: 2vh;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 0;
  }
  .top-tiles {
    margin-bottom: 2px;
  }
  .about-container {
    padding: 10px 10px;
    flex-direction: column;
    gap: 3vh;
  }
  .feature-card{
    width: 100%;
    height: auto;
  }
  .map-container {
    height: 50vh;
    width: 100%;
  }
  .about-content {
    height: auto;
    width: 100%;
    padding: 1vh;
  }
  .about-content h3 {
    font-size: 1.1rem;
  }
  .content p {
    font-size: 17px;
  }
  .about-logo-container h1 {
    font-size: 2rem;
  }
  .content-container p {
    font-size: 1.2rem;
  }
  .card-wrap {
    margin-top: 3vh;
    flex-direction: column;
  }
  .card {
    height: 35vh;
    width: 100%;
    border-radius: 4vh;
  }
  .card h1 {
    font-size: 2rem;
    line-height: 2;
  }
  .card h2 {
    font-size: 2rem;
    line-height: 2;
  }
  .location-container iframe{
    height: 40vh;
  }
  .contacts-container {
    margin-top: 2vh;
    height: auto;
    padding: 2vh;
  }
  .col-wrapper {
    flex-direction: column;
    gap: 3vh;
  }
  .col {
    width: 100%;
    height: auto;
    gap: 2vh;
    padding-bottom: 1vh;
  }
  .col img {
    height: 20vh;
  }
  .row p {
    font-size: 1.5rem;
  }
  .bx {
    font-size: 1.5rem;
  }
  #contacts-logo {
    width: min-content;
  }
  .discount-banner{
    font-size: .7rem;
  }
  .feature-highlights {
    align-items: center;
    flex-direction: column;
  }
}

/* Tablet/iPad (portrait and landscape) */
@media (min-width: 769px) and (max-width: 1024px) {
  .main-section {
    width: 100%;
  }
  .home-container{
    height: 90vh;
  }
  .home-container h1 {
    font-size: 5rem;
  }
  .home-container h2 {
    font-size: 1.6rem;
  }
  .order-now {
    width: 24vh;
  }
  .top-container {
    gap: 3vh;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 2vh;
  }
  .top-tiles {
    height: 28vh;
    width: 32vh;
  }
  .about-container {
    padding: 30px 16px;
    flex-direction: column;
    gap: 3vh;
  }
  .map-container {
    height: 45vh;
    width: 100%;
  }
  .about-content {
    height: auto;
    width: 100%;
    padding: 2vh;
  }
  .about-content h3 {
    font-size: 1.3rem;
  }
  .feature-highlights {
    flex-wrap: wrap;
    gap: 16px;
  }
  .feature-card{
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  .row p {
    font-size: 1.6rem;
  }
  .bx {
    font-size: 2rem;
  }
  .contacts-container {
    padding: 2vh;
  }
  .order-now {
    height: 5vh;
    width: 24vh;
  }
}

/* Tablet portrait: slightly fewer columns for readability */
@media (min-width: 769px) and (max-width: 1024px) and (orientation: portrait) {
  .top-container {
    grid-template-columns: repeat(2, 1fr);
  }
}