@font-face {
  font-family: 'Rocket Thunder';
  src: url('assets/fonts/rocket-thunder.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
.nav-links a, 
.mobile-nav .nav-link {
  font-family: 'Rocket Thunder', sans-serif;
}
.about-box {
  background: rgba(255, 255, 255, 0.027); /* semi-transparent rectangle */
  border-radius: 8px;
  max-width: 800px;
}
.about-us h2 {
  font-weight: 700;
  font-family: 'Rocket Thunder', sans-serif; /* optional if using custom font */
}
.about-us p {
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.6;
}
/* Initial navbar height */
.custom-nav {
  transition: all 0.3s ease;
  padding: 15px 0;
}

/* Shrunk navbar */
.custom-nav.shrink {
  padding: 5px 0; /* reduce padding */
}

/* Shrink logo */
.nav-logo img {
  height: 160px;
  transition: all 0.3s ease;
}

.custom-nav.shrink .nav-logo img {
  height: 100px; /* shrink logo on scroll */
}
/* Inventory button customization */
.about-us-section .inventory-btn {
  font-family: 'Rocket Thunder', sans-serif;
  font-size: 2rem;       /* bigger font */
  padding: 1rem 3rem;    /* bigger button */
  display: inline-flex;   /* ensure icon aligns */
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.about-us-section .inventory-btn .inventory-arrow {
  font-size: 1.5rem;      /* arrow size */
  transition: transform 0.3s ease;
}

.about-us-section .inventory-btn:hover {
  transform: translateY(-3px);
}

.about-us-section .inventory-btn:hover .inventory-arrow {
  transform: translateX(5px); /* arrow slides on hover */
}
.about-us-section .inventory-btn {
  font-family: 'Rocket Thunder', sans-serif;
  font-size: 2rem;       /* bigger font */
  padding: 1rem 3rem;    /* bigger button */
  display: inline-flex;  /* align text and arrow */
  align-items: center;
  justify-content: center;
  background-color: #FFE08F;  /* new button color */
  color: #e0ac00;                 /* black text for contrast */
  border: none;                /* remove default border */
  transition: all 0.3s ease;
}

.about-us-section .inventory-btn .inventory-arrow {
  font-size: 1.5rem;      /* arrow size */
  transition: transform 0.3s ease;
}

.about-us-section .inventory-btn:hover {
  transform: translateY(-3px);
  background-color: #ffd966; /* slightly darker on hover */
}

.about-us-section .inventory-btn:hover .inventory-arrow {
  transform: translateX(5px); /* arrow slides on hover */
}





/* Keep same sizing/grid as inventory */
.sold-inventory-section .inventory-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.sold-card .inventory-slider.square {
  position: relative;
  aspect-ratio: 1/1; /* same as inventory */
  overflow: hidden;
}

.sold-card .inventory-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.sold-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 2;
}

.sold-stamp {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-12deg);
  font-family: 'Oswald', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: #f5e7cd;
  border: 4px solid #f6f0e5;;
  padding: 10px 25px;
  letter-spacing: 4px;
  background: rgba(0,0,0,0.15);
  text-shadow: 0 0 8px rgba(0,0,0,0.7);
  z-index: 3;
}

.sold-card .inventory-info {
  padding: 18px;
  text-align: center;
}

.sold-card .inventory-info ul li {
  font-size: .9rem;
  margin-bottom: 6px;
}

@media(max-width:768px){
  .sold-inventory-section .inventory-grid{
    grid-template-columns: 1fr;
  }
}

.sold-inventory-section {
  padding-top: 150px; /* extra space above the section */
  padding-bottom: 100px; /* keep some space below */
}

.sold-inventory-section .inventory-title {
  margin-bottom: 60px; /* space below the header */
}
/* SOLD INVENTORY SECTION GRID */
.sold-inventory-section .inventory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 per row */
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Responsive for smaller screens */
@media (max-width: 992px) {
  .sold-inventory-section .inventory-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row on tablets */
  }
}

@media (max-width: 576px) {
  .sold-inventory-section .inventory-grid {
    grid-template-columns: 1fr; /* 1 per row on mobile */
  }
}
/* CURRENT INVENTORY SECTION GRID */
.inventory-section .inventory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 per row */
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Responsive for tablets */
@media (max-width: 992px) {
  .inventory-section .inventory-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row */
  }
}

/* Responsive for mobile */
@media (max-width: 576px) {
  .inventory-section .inventory-grid {
    grid-template-columns: 1fr; /* 1 per row */
  }
}/* Center last row if it has fewer than 3 items */
.inventory-section .inventory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.inventory-section .inventory-grid::after {
  content: "";
  flex: auto;
}

/* Flex approach to center last row */
.inventory-section .inventory-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center; /* centers last row */
}

.inventory-section .inventory-card {
  flex: 1 1 calc(33.333% - 30px); /* 3 per row minus gap */
  max-width: 380px; /* optional: controls card width */
}

/* Responsive for tablets */
@media (max-width: 992px) {
  .inventory-section .inventory-card {
    flex: 1 1 calc(50% - 30px); /* 2 per row */
    max-width: none;
  }
}

/* Responsive for mobile */
@media (max-width: 576px) {
  .inventory-section .inventory-card {
    flex: 1 1 100%; /* 1 per row */
  }
}/* Slight tan background for all inventory cards */
.inventory-card {
  background-color: #f5f0e6; /* soft tan */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

/* Hover effect to pop slightly */
.inventory-card:hover {
  transform: translateY(-5px);
}

/* Price text slightly bigger */
.inventory-price {
  font-size: 1.3rem; /* bigger than before */
  font-weight: 600;
  color: #333;
  margin-top: 10px;
}

/* Optional: Sold cards too */
.sold-card {
  background-color: #f5f0e6; /* same tan for consistency */
}
.sold-inventory-section .inventory-title {
  font-size: 2.5rem; /* bigger header */
  margin-bottom: 40px; /* extra space below */
  text-align: center;
  font-weight: 700;
}/* Center the inventory info text under the images */
.inventory-info {
  text-align: center; /* centers all text inside */
}

.inventory-info ul {
  padding: 0;
  list-style: none;
  margin: 0 0 10px 0;
}

.inventory-info li {
  margin-bottom: 5px;
}

.inventory-price {
  font-size: 1.2rem; /* make price a little bigger */
  font-weight: bold;
  margin-top: 5px;
}
/* Recently Sold Section Background */
.sold-inventory-section {
  background-color: #f9f4ec; /* light crema/tan */
  padding: 60px 20px; /* optional: more spacing around the section */
  border-radius: 10px; /* optional: soft rounded edges */
}
.nav-right .instagram-link {
  font-size: 2rem;
  color: #fff;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.nav-right .instagram-link:hover {
  color: #e4405e00; /* Instagram pink/red */
}
.nav-logo img {
  height: 235px;
  margin-left: 35px; /* move logo slightly to the right */
}.builds-section {
  padding: 70px 20px;
  background-color: #f9f4ec; /* crema */
}

.builds-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 50px;
  font-family: 'Oswald', sans-serif;
}

.builds-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.build-card {
  background-color: #f6f0e5; /* light tan */
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.build-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.build-card h3 {
  margin: 15px 0 5px;
  font-size: 1.4rem;
}

.build-card p {
  margin-bottom: 15px;
  font-size: 1rem;
  color: #555;
}

/* Mobile */
@media (max-width: 768px) {
  .builds-grid {
    grid-template-columns: 1fr;
  }
}.build-gallery-section {
  padding: 90px 20px;
  background-color: #f9f4ec; /* crema */
}

.build-gallery-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 50px;
}

.build-gallery-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.build-gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.build-gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}
/* BUILDS IN PROGRESS — MOBILE REFINEMENTS */
@media (max-width: 768px) {

  .builds-section {
    padding: 60px 15px;
  }

  .builds-title {
    font-size: 2.4rem;
    margin-bottom: 35px;
  }

  .build-card {
    padding: 16px;
    border-radius: 8px;
  }

  /* Image sizing */
  .build-gallery img,
  .build-slider img {
    height: 220px;
    object-fit: cover;
    border-radius: 6px;
  }

  /* Slider arrows smaller */
  .build-slider .slider-btn {
    font-size: 1.5rem;
    padding: 4px 8px;
  }

  /* Text cleanup */
  .build-info h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }

  .build-info li {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  /* Stack images nicely */
  .build-gallery {
    gap: 12px;
  }
}
.inventory-price
/* INVENTORY PRICE — ORBITRON */
.inventory-price {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  .navbar-nav .nav-link {
    font-family: 'Rocket Thunder', sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    padding: 12px 0;
    letter-spacing: 1.5px;
  }
}


/* GLOBAL HEADERS — ORBITRON */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', sans-serif !important;
  letter-spacing: 1px;
}
/* About section – mobile header sizing */
@media (max-width: 768px) {
  #about-us-section h2 {
    font-size: 2rem;       /* adjust if you want smaller/bigger */
    line-height: 1.25;
  }
}

@media (max-width: 480px) {
  #about-us-section h2 {
    font-size: 1.7rem;
  }
}
/* Features section – mobile text scaling */
@media (max-width: 768px) {
  .features-section h2 {
    font-size: 2rem;
    line-height: 1.25;
  }

  .features-section h3 {
    font-size: 1.1rem;
  }

  .features-section p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .features-section h2 {
    font-size: 1.6rem;
  }

  .features-section h3 {
    font-size: 1rem;
  }

  .features-section p {
    font-size: 0.9rem;
  }
}
/* =========================
   GLOBAL MOBILE HEADER FIX
   ========================= */
@media (max-width: 768px) {

  /* MAIN SECTION HEADERS */
  h1,
  h2 {
    font-size: 2rem !important;
    line-height: 1.25;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
  }

  /* SUB HEADERS */
  h3 {
    font-size: 1.15rem !important;
    line-height: 1.35;
    margin-bottom: 0.5rem;
  }

  /* OPTIONAL: tighten paragraphs slightly */
  p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

/* EXTRA SMALL PHONES */
@media (max-width: 480px) {
  h1,}
  h2 {
    font-size: 1.75rem !important;
  }

  h3 {
    font-size: 1.05r}
