/* Added @font-face declarations for custom brand fonts */
@font-face {
  font-family: "Jawbreak Sans";
  src: url("../fonts/Jawbreak-Sans.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Jawbreak Serif";
  src: url("../fonts/Jawbreak-Serif.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Oswald";
  src: url("../fonts/Oswald-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Oswald";
  src: url("../fonts/Oswald-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --fire-red: #ed2024;
  --dark-gray: #3a3a3b;
  --bg-dark: #1a1a1a;
  --bg-darker: #0f0f0f;
  --bg-card: #252525;
  --text-primary: #f5f5f5;
  --text-secondary: #a0a0a0;
  --border-color: #525252;
  --radius: 0.625rem;
}

body {
  /* Changed body font from Jawbreak Sans to Jawbreak Serif for regular case text instead of all uppercase */
  font-family: "Oswald";
  background-image:linear-gradient(to bottom, var(--bg-dark), var(--bg-darker));
  color: var(--text-primary);
  line-height: 1.6;
  letter-spacing: 1px;
}

a{
  text-decoration: none;
  color: inherit;
  transition: .3s;
}

ul{
  padding-left:20px;
}

/*ul li {
  padding-bottom: 5px;
}*/

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hidden {
  display: none;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: linear-gradient(to right, #000, var(--bg-darker), #000);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-color);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-container {
  padding: 1rem;
  padding-left: 0;
  display: flex;
  align-items: center;
}

.logo {
  height: 2.5rem;
  width: auto;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s;
  padding: 1rem .5rem;
  letter-spacing: 2px;
}

.nav-link:hover {
  color: var(--fire-red);
}

/* Desktop Dropdown Menu Styles */
.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
}

.dropdown-arrow {
  transition: transform 0.3s;
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s;
  font-weight: 500;
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--fire-red);
}

.dropdown-item:first-child {
  border-radius: var(--radius) var(--radius) 0 0;
}

.dropdown-item:last-child {
  border-radius: 0 0 var(--radius) var(--radius);
}

.mobile-menu-btn {
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.3s;
}

.mobile-menu-btn:hover {
  color: var(--fire-red);
}

/* Mobile Menu */
.mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 30;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: var(--bg-card);
  border-left: 1px solid var(--border-color);
  z-index: 40;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem;
  padding-top: 6rem;
  flex: 1;
}

.mobile-nav-link {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s;
}

.mobile-nav-link:hover {
  color: var(--fire-red);
}

/* Mobile Dropdown Menu Styles */
.mobile-dropdown {
  display: flex;
  flex-direction: column;
}

.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s;
}

.mobile-dropdown-toggle:hover {
  color: var(--fire-red);
}

.mobile-dropdown-arrow {
  transition: transform 0.3s;
}

.mobile-dropdown.open .mobile-dropdown-arrow {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding-left: 1rem;
  margin-top: 0.75rem;
}

.mobile-dropdown.open .mobile-dropdown-menu {
  display: flex;
}

.mobile-dropdown-item {
  font-size: 1rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s;
  padding: 0.5rem 0;
}

.mobile-dropdown-item:hover {
  color: var(--fire-red);
}

.mobile-menu-footer {
  border-top: 1px solid var(--border-color);
  padding: 2rem;
}

.mobile-phone {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  display: block;
  margin-bottom: 1rem;
  transition: color 0.3s;
}

.mobile-phone:hover {
  color: var(--fire-red);
}

.mobile-location {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.mobile-hours {
  color: var(--fire-red);
  font-weight: 700;
  font-size: 1.125rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  transition: all 0.3s;
  border: 1px solid transparent;
  cursor: pointer;
}

.nav-links .btn{
  padding: .5rem 1.5rem;
}

.btn-primary {
  background: var(--fire-red);
  color: white;
}

.btn-primary:hover {
  background: #d11d20;
}

.btn-secondary {
  background: white;
  color: var(--dark-gray);
}

.btn-secondary:hover {
  background: #f0f0f0;
}

.btn-outline {
  background: transparent;
  border-color: var(--border-color);
  color: var(--text-primary);
}

.btn-outline:hover {
  background: var(--fire-red);
  border-color: var(--fire-red);
  color: white;
}

.btn-outline-white {
  background: transparent;
  border-color: white;
  color: white;
}

.btn-outline-white:hover {
  background: white;
  color: var(--fire-red);
}

.btn-lg {
  height: 3.5rem;
  padding: 0 2rem;
}

.btn-full {
  width: 100%;
}

/* Hero Section */
.hero {
  padding-top: 5rem;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom right, var(--bg-dark), var(--bg-dark), var(--bg-darker));
}

.hero .container {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--fire-red);
  text-transform: uppercase;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  font-family: "Oswald", sans-serif;
}

.hero-title-accent {
  display: block;
  color: var(--fire-red);
}

.hero-text {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 40rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-darker);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--fire-red);
  color: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
}

.hero-badge-number {
  font-size: 2.25rem;
  font-weight: 700;
}

.hero-badge-text {
  font-size: 0.875rem;
  font-weight: 500;
}

/* Trust Section */
.trust-section {
  padding: 4rem 0;
  background: linear-gradient(to bottom right, var(--fire-red), #a01418);
}

.trust-grid {
  display: grid;
  gap: 2rem;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.trust-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon svg {
  color: white;
}

.trust-title {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: white;
  font-family: "Oswald", sans-serif;
}

.trust-text {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

/* Inventory Section */
.inventory-section {
  padding: 6rem 0;
  background: linear-gradient(0deg, black, transparent);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--fire-red);
  text-transform: uppercase;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  font-family: "Oswald", sans-serif;
}

.section-text {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 42rem;
  margin: 0 auto;
}

.inventory-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

.card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
}

.card-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-darker);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: "Oswald", sans-serif;
}

.card-specs {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.section-cta {
  text-align: center;
}

/* About Section */
.about-section {
  padding: 6rem 0;
  background: rgba(255, 255, 255, 0.02);
}

.about-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-col-offset {
  padding-top: 2rem;
}

.about-image {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-darker);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(to bottom right, var(--fire-red), #a01418);
}

.cta-content {
  border-radius: calc(var(--radius) * 2);
  text-align: center;
  color: white;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: "Oswald", sans-serif;
}

.cta-text {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Footer */
.footer {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.08), var(--bg-dark));
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  height: 2.5rem;
  width: auto;
  margin-bottom: 1rem;
}

.footer-text {
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer-heading {
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: "Oswald", sans-serif;
}

.footer-links,
.footer-contact,
.footer-hours {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-left:6px;
}

.footer-links a,
.footer-contact a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--fire-red);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-contact svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.footer-hours {
  color: var(--text-secondary);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  text-align: center;
  color: var(--text-secondary);
}

.footer-credit {
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.footer-credit a {
  color: var(--fire-red);
  border-bottom: 1px solid white;
  font-weight: 500;
}

.footer-credit a:hover {
  color: white;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Oswald", sans-serif;
}

/* Media Queries */
@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }

  .container {
    padding: 0 2rem;
  }

  .hero-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .inventory-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .section-title {
    font-size: 3rem;
  }

  .cta-title {
    font-size: 3rem;
  }

}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }

  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /*.inventory-grid {
    grid-template-columns: repeat(2, 1fr);
  }*/

  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-col:first-of-type{
    grid-column: span 3;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/*DESKTOP STYLES*/

@media (min-width: 1100px) {

  .footer-grid{
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
  }

  .footer-col:first-of-type{
    grid-column: span 1;
    display: block;
  }

}

/*SMALL MOBILE STYLES*/

@media (max-width: 480px) {

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 1rem;
  }

  .footer-col:first-of-type{
    grid-column: span 2;
  }

}