/* --- Global Reset & Fonts --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #fff;
}

h1,
h2,
h3,
.logo,
.main-nav,
.btn-primary,
.sub-badge {
  font-family: "Rajdhani", sans-serif;
  font-weight: 900;
}
h1.heading {
  font-family: "RajdhaniPage", sans-serif;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.rajdhani-light {
  font-family: "Rajdhani", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.rajdhani-regular {
  font-family: "Rajdhani", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.rajdhani-medium {
  font-family: "Rajdhani", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.rajdhani-semibold {
  font-family: "Rajdhani", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.rajdhani-bold {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-style: normal;
}

/* --- Utilities --- */
.grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding-top: 50px;
}
.street-cargo .grid-2-col {
  padding-top: 100px;
}

/* --- Header Layout --- */
.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #ececec;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-size: 24px;
  font-weight: 800;
  color: #111;
  text-decoration: none;
  letter-spacing: 1px;
}

.logo span {
  color: #fed001; /* Accent color change if desired */
  font-weight: 400;
}

.main-nav ul {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 45px;
}

.main-nav a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}
.main-nav a:hover {
  color: #fed001;
}
.main-nav .btn-shop {
  background-color: #111;
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.main-nav .btn-shop:hover {
  background-color: #fed001;
  color: #fff;
}

/* --- Main Content & Heros --- */
.hero-section {
  padding: 0;
  background-color: #f3f1f1;
}

.performance-section {
  background-color: #f9f9f9;
}

.sub-badge {
  display: inline-block;
  background-color: #e0e0e0;
  color: #555;
  padding: 4px 10px;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 15px;
  border-radius: 2px;
}

.hero-content h1 {
  font-size: 42px;
  line-height: 1.2;
  color: #111;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-content p {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  max-width: 480px;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background-color: #fed001;
  color: #000000;
  padding: 12px 30px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: #febf01;
}

.hero-image-placeholder {
  min-height: 600px;
  background: url("/assets/images/simmons-tyre-bg.png") center/cover no-repeat;
}

/* Image Placeholders */
.placeholder-box {
  width: 100%;
  height: 400px;
  /* background-color: #eaeaea; */
  /* border: 2px dashed #cccccc; */
  display: flex;
  justify-content: center;
  align-items: center;
  color: #888;
  font-weight: 500;
  text-align: center;
  padding: 20px;
}

/* --- Footer --- */
.site-footer {
  background-color: #fecf00;
  color: #000;
  padding: 60px 0 30px 0;
}

.footer-flex {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-inquiry h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.btn-secondary {
  display: inline-block;
  border: 2px solid #fff;
  color: #fff;
  padding: 10px 25px;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background-color: #fff;
  color: #111;
}

.footer-bottom {
  border-top: 1px solid #222;
  padding-top: 20px;
  font-size: 12px;
  color: #aaa;
  letter-spacing: 0.5px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
  .grid-2-col {
    grid-template-columns: 1fr;
  }
  .reverse-desktop {
    direction: rtl; /* Simple flip for text below image on mobile */
  }
  .reverse-desktop * {
    direction: ltr;
  }
  .hero-content h1 {
    font-size: 32px;
  }
}
.social-icon,
.no-link a {
  text-decoration: none;
  color: #1e1e1e;
}

.f_links a {
  text-decoration: none;
  color: #1e1e1e;
  cursor: pointer;
  letter-spacing: 1.5px;
  padding: 0px 15px;
  margin-bottom: 15px;
  font-family: "Heebo", sans-serif;
  font-weight: 500;
  font-size: 14px;
}

.f_links:hover a:hover {
  color: #fffeb2;
}
.social-icon {
  color: #1e1e1e;
}
.social-icon:hover {
  color: #fffeb2;
}
.mob-social-icon a {
  text-decoration: none;
}
/* --- Global Reset & Fonts --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Heebo", sans-serif;
  color: #333;
font-weight: 300;
font-size: 14px;
letter-spacing: 0.05em;
  line-height: 1.8em;
  background-color: #fff;
  /* Smooth transitions for interactive elements */
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
.logo,
.main-nav,
.btn-primary,
.sub-badge {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
font-size: 60px;
letter-spacing: 0.15em;
color: #333333;

}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  /* padding: 0 24px; Slightly wider padding for comfortable breathing room on mobile */
}

/* --- Utilities & Responsive Grid --- */
/* Mobile-first layout: Stacks vertically by default */
.grid-2-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* --- Header Layout --- */
.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #ececec;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-flex {
  display: flex;
  flex-direction: column; /* Stack logo and nav on small mobile screens */
  gap: 16px;
  align-items: center;
}

.logo a {
  font-size: 24px;
  font-weight: 800;
  color: #111;
  text-decoration: none;
  letter-spacing: 1px;
}

.logo span {
  color: #fed001;
  font-weight: 400;
}

/* Scrollable horizontal nav on mobile so items don't break awkwardly */
.main-nav {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}

.main-nav ul {
  display: flex;
  list-style: none;
  align-items: center;
  justify-content: center;
  gap: 45px;
  white-space: nowrap; /* Keeps items inline on tiny screens */
}

.main-nav a {
  text-decoration: none;
  color: #333;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.main-nav a:hover {
  color: #fed001;
}

.main-nav .btn-shop {
  background-color: #111;
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  transition: background-color 0.3s;
}

/* --- Main Content & Heros --- */
/* .hero-section {
    padding: 60px 0;
margin: 0;
} */

.performance-section {
  background-color: #f9f9f9;
}

/* Flex order helper to ensure image stays on top or bottom properly on mobile */
.order-image {
  order: -1; /* Puts image above text on mobile stacks */
}

.sub-badge {
  display: inline-block;
  background-color: #e0e0e0;
  color: #555;
  padding: 4px 10px;
  font-size: 11px;
  letter-spacing: 1px;
  margin-bottom: 12px;
  border-radius: 2px;
}

/* Fluid typography: Shrinks naturally on mobile, scales smoothly to 42px on desktop */
.hero-content h1 {
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.2;
  color: #111;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.hero-content p {
  font-size: clamp(15px, 2vw, 16px);
  color: #666;
  margin-bottom: 24px;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background-color: #fed001;
  color: #000000;
  padding: 12px 28px;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  width: 100%; /* Full width button on mobile for easier thumb tapping */
  text-align: center;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: #febf01;
}

/* Image Placeholders with adaptive aspect ratios */
.placeholder-box {
  width: 100%;
  min-height: 250px;
  height: 45vw; /* Scales proportionately with screen width */
  max-height: 400px;
  background-color: #eaeaea;
  border: 2px dashed #cccccc;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #888;
  font-weight: 500;
  text-align: center;
  padding: 20px;
}

/* --- Footer --- */
/* .site-footer {
    background-color: #111;
    color: #fff;
    padding: 48px 0 24px 0;
    text-align: center;
} */

.footer-flex {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-inquiry h3 {
  font-size: clamp(20px, 4vw, 24px);
  margin-bottom: 16px;
}

.btn-secondary {
  display: inline-block;
  border: 2px solid #fff;
  color: #fff;
  padding: 10px 24px;
  text-decoration: none;
  font-size: 14px;
  width: 100%;
  max-width: 200px;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background-color: #fff;
  color: #111;
}

.footer-bottom {
  border-top: 1px solid #222;
  padding-top: 24px;
  font-size: 11px;
  color: #aaa;
  letter-spacing: 0.5px;
}

.copyright-text {
  font-family: "Heebo", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #1e1e1e;
}

/* ----------------------------------------------------------------------
   5. Media Queries for Larger Screen Sizes (Tablets / Laptops / Desktops)
   ---------------------------------------------------------------------- */

/* Small tablets to Medium screens (600px and up) */
@media (min-width: 600px) {
  .header-flex {
    flex-direction: row; /* Horizontal alignment for logo and nav */
    justify-content: space-between;
  }

  .main-nav {
    width: auto;
    overflow-x: visible;
    padding-bottom: 0;
  }

  .btn-primary {
    width: auto; /* Shrink button back to context size */
  }
}

/* Medium Tablets, Laptops and Desktops (768px and up) */
@media (min-width: 768px) {
  .grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Switch from vertical stacks to clean side-by-side columns */
    gap: 48px;
  }

  /* .hero-section {
        padding: 100px 0;
    } */

  /* Resets mobile element shifting and layouts correctly for desktop grid */
  .order-image {
    order: unset;
  }

  .site-footer {
    text-align: left;
  }

  .footer-flex {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }

  .footer-bottom {
    border-top: none;
    padding-top: 0;
  }

  .site-footer img {
    width: 250px;
    height: auto;
  }
}

/* Ultra Large Displays (Optional safeguard) */
@media (min-width: 1400px) {
  /* .hero-section {
        padding: 120px 0;
    } */
}

.simmons-primary-btn:hover,
.more-info-btn:hover {
  background-color: #fecf00;
  color: #e2e2e2e7;
}
.more-info-btn {
  font-family: "RobotoCondensed-Bold" !important;
  font-size: 15px;
  width: 120px;
  background-color: #131313;
  outline: none;
  border: none;
  padding-top: 5px;
  padding-bottom: 5px;
  margin-top: 10px;
  color: #e2e2e2e7;
}

.ty-pattern {
  float: left;
}

.ty-pattern .dropbtn {
  border: none;
  outline: none;
  letter-spacing: 0.5px;
  padding: 0 15px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
  color: #333;
  font-size: 13px;
  transition: color 0.3s;
  font-weight: 700;
}

.ty-pattern:hover .dropbtn {
  color: #fed001;
}

/* content hidden by default) */
.ty-pattern-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* Links inside the ty-pattern */
.ty-pattern-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a grey background color to ty-pattern links on hover */
.ty-pattern-content a:hover {
  background-color: #ddd;
}

/* Show the ty-pattern menu on hover */
.ty-pattern:hover .ty-pattern-content {
  display: block;
}
@media only screen and (max-width: 600px) {
  .ty-pattern {
    float: none;
  }
  .ty-pattern:hover .dropbtn {
    color: #e2e2e2e7;
  }
}

h1.heading {
  font-family: "RajdhaniPage", sans-serif !important;
}
