/* Game Changer Auto Group - Main Styles */

.navbar-brand img {
  width: 200px; /* Default width for desktop view */
  height: auto;
}

.showcase {
  width: 100%;
  height: 100vh;
  /* Optimized background loading with fallback */
  background-color: #1a1a1a; /* Dark fallback color while image loads */
  background-image: url('../media/rentals/benzsl-optimized.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  margin: 0;
  padding: 0;
  position: relative;
  /* Prevent layout shift during image load */
  min-height: 100vh;
}

.showcase .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.showcase .text {
  text-align: center;
  color: whitesmoke;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.showcase .social {
  position: absolute;
  bottom: 10px; /* Default position for desktop view */
  display: flex;
  justify-content: center;
  width: 100%;
}

.showcase .social li {
  margin: 0 10px;
}

/* Mobile View */
@media (max-width: 768px) {
  .navbar-brand img {
    width: 100px;
    height: auto;
  }

  header.header {
    padding: 0;
  }

  .navbar {
    margin: 0;
  }

  .showcase {
    height: calc(100vh - 60px);
    min-height: calc(100vh - 60px);
  }

  .showcase .text {
    font-size: 12px;
  }

  .showcase .text h2 {
    font-size: 16px;
  }

  .showcase .text p {
    font-size: 10px;
  }

  .showcase .text .dark-btn {
    font-size: 12px;
    padding: 5px 10px;
  }

  .showcase .social {
    bottom: 40px;
  }
}