* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  background-image: url("/images/tiretread.png");
  color: #0b2545;
  display: flex;
  flex-direction: column;
  background-size: cover;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

body::before {
  content: "";
  position: fixed;      
  inset: 0;            
  background: rgba(255, 255, 255, 0.87);  
  z-index: -1;          
}

main {
  flex: 1;
}

h1, h2, h3, h4, .call-btn, .nav-link {
  font-family: 'Poppins', sans-serif;
}

h2 {
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 2rem;
}


/* Front page read more boxes - container with the boxes */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 2rem;
}

/* Other pages text containers */
.container.text {
  background: white;
  margin-top: 70px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  margin-bottom: 2rem;
}

.container.text h1 {
  text-align: center;
  text-transform: uppercase;
  font-size: 1.8rem;
  padding-bottom: 2rem;
}
.container.text p {
padding-bottom: 1rem;
margin-right: 2rem;
margin-left: 2rem;
}


/* Header */
.topbar {
  background: #ffffff;
  border-bottom: 1px solid #e5e9f0;
  position: relative;
  padding: 0.5rem 0;
  display: flex;
  align-items: center;     
  justify-content: center;
}

/* Navigation Container Box  */
.container.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.logo {
  max-width: clamp(120px, 20vw, 180px);
  height: auto;
  position: relative;
  top: 4rem; 
  z-index: 10;
  filter: drop-shadow(0 5px 4px rgba(0, 0, 0, 0.4));
}


/* Nav-link Buttons alignment  */
nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  align-items: center;}

  
/* Big Blue Call Button  */
.call-btn {
  background: #0b5ed7;
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  background-image: linear-gradient(to bottom right, #0b5ed7, #023888);
  box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.5);
}

/* Big Blue Call Button hover color  */
.call-btn:hover {
background: #fabc13;
background-image: linear-gradient(to bottom right, #fabc13, #ee8802);
}


/* Nav-Link Button text  */
.nav-link {
  margin: 0 0.75rem;
  text-decoration: none;
  color: #0b2545;
  font-weight: 1000;
  font-size: 1.3rem;
}

/* Nav-Link Button hover color  */
.nav-link:hover {
  color:#fabc13;
}

/* Nav-Link Current Page  */
nav a.nav-link.active {
  text-decoration: underline !important;
}


.hero {
  position: relative;
  min-height: 520px;
  color: #fff;
  background-size: cover;
  background-repeat: no-repeat;
  background:
  linear-gradient(
    to bottom right,
     rgba(2, 41, 168, 0.521),
     rgba(42, 74, 255, 0.027)
  ), 
     url("/images/hero-background.png");
  background-position: center bottom;
  overflow: hidden;
  padding-top: 50px;
  box-shadow: 5px 5px 12px rgba(0, 6, 41, 0.747);    
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero h1 span {
  color: #ffd43b;
}

.hero p {
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.hero-buttons .btn {
  display: inline-block;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  padding: 0.7rem 1.1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.5);
  font-size: 17px;
}

.hero-buttons .icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

.callnow { 
  background: #0b5ed7; color: #fff; 
  background-image: linear-gradient(to bottom right, #0b5ed7, #023888);
}

.bookonline{ 
  background: #ffd43b; color: #000; 
  background-image: linear-gradient(to bottom right, #ffd43b, #e48b07);
}

.whatsapp { 
  background: #25d366; color: #fff; 
  background-image: linear-gradient(to bottom right, #25d366, 	#085f28);
}


.hero-image {
  position: relative;        
  margin-top: 1rem;         
  text-align: center;
}

.hero-image img {
  width: clamp(300px, 80%, 680px);
  height: auto;
  display: block;
  margin: 1rem auto 0 auto;
}

.hero-image::after {
  content: "";
  position: absolute;       
  left: 50%;
  bottom: 6px;
  width: 70%;
  height: 20px;
  background: radial-gradient(
    ellipse at center,
    rgba(0,0,0,0.35) 0%,
    rgba(0,0,0,0.15) 40%,
    rgba(0,0,0,0) 70%
  );
  transform: translateX(-50%);
  filter: blur(6px);
  z-index: -1;
}

.services {
  padding: 3rem 0;
  text-align: center;
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.subtitle {
  color: #1e2225;
  margin-bottom: 2rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}


/* Front page read more containers */
.card {
  background: #fff;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  text-align: left;
}

.card p {
  margin-bottom: 1rem;
}

.card h3 {
  margin-bottom: 0.5rem;
}

.card a {
  display: inline-block;
  margin-top: auto;
  color: #0b5ed7;
  text-decoration: none;
  font-weight: 600;
}

.card a:hover {
  color: #fabc13;
}

.footer {
  background: #023888;
  color: #fff;
  text-align: center;
  padding: 1rem;
}

.footer a {
  color: white;
  padding: 0.3rem;
}

.footer p {
  padding: 0.3rem;
}
  
/* On mobile call now big green button */
.mobilecall-btn {
  position: fixed;
  width: 100%;
  background: #0b5ed7;
  color: #fff;
  text-align: center;
  padding: 16px;
  font-size: 2rem;
  text-decoration: none;
  z-index: 1000;
  border-radius: 50%;
  height: 80px;
  width: 80px;
  bottom: 20px;
  right: 20px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
  line-height: 50px;
  background-image: radial-gradient(#28a745, #01691a);
}

/* LIsts */
ul {
    margin-left: 3rem;
    margin-bottom: 1rem;
}

.call-icon {
  width: 18px;
  height: 18px;
  color: #fff; 
}

/* Filter for SVGs to make white */
.filter-white-icon {
  width: 18px;
  height: 18px;
  filter: invert(100%) sepia(98%) saturate(0%) hue-rotate(344deg) brightness(102%) contrast(103%);
}

.icon {
  width: 18px;
  height: 18px;
}



  /* Only Mobile */
@media (max-width: 768px) {

  
  .container.nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
  }

  .nav-menu.is-open {
    display: flex;
  }

  .logo {
    display: none;
  }

  nav {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    display: none;
  
  }

  .nav-link {
    font-size: 1.3rem; 
    text-align: center;
  }

  .mobile-hamburger {
    display: block;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    margin-left: auto;
  }


  .call-btn {
   display: none;
  }


  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image img {
    width: 90%;
    margin: 1.5rem auto 0 auto;
  }

  .hero {
    margin-top: 20px; 
  }
}


/* Only desktop */
@media (min-width: 768px) {
  .mobilecall-btn {
    display: none;
  }
  .mobile-hamburger {
  display: none;
  }
}


/* Remove later when booking is done*/
.bookonline {
  display: none !important; 
}

