/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Main Page Styling */
body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f4f1ec;
  color: #222;
  line-height: 1.6;
}

/* Navigation */
header {
  background-color: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  padding: 18px 60px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.logo {
  color: #333;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 6px;
  text-transform: uppercase;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 36px;
  justify-content: center;
}

.nav-links a {
  color: #333;
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 6px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #333;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  min-height: 82vh;
  background-image: linear-gradient(
      rgba(0, 0, 0, 0.28),
      rgba(0, 0, 0, 0.28)
    ),
    url("images/hero-bike.jpg");
  background-size: cover;
  background-position: center;

  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 40px;
}

.hero-text {
  color: white;
  max-width: 1000px;
}

.hero-text h1 {
  font-size: 58px;
  line-height: 1.1;
  margin-bottom: 28px;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.45);
}

.hero-text p {
  font-size: 24px;
  font-style: italic;
  font-weight: 700;
  margin-bottom: 80px;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.45);
}

.hero-text h2 {
  font-size: 38px;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.45);
}

.hero-button {
  display: inline-block;
  background-color: #c98b45;
  color: white;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.hero-button:hover {
  background-color: #a86d2d;
}

/* Feature Cards */

.feature-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  padding: 70px 80px;
  background-color: #f7f7f7;
}

.feature-card {
  position: relative;
  height: 430px;
  overflow: hidden;
  border-radius: 4px;
  text-decoration: none;
  color: white;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.feature-card:hover img {
  transform: scale(1.08);
}

.card-text {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.15),
    rgba(0, 0, 0, 0.55)
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
}

.card-text h2 {
  font-size: 42px;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.card-text p {
  font-size: 18px;
  max-width: 480px;
}

/* Intro Section */
.intro {
  text-align: center;
  padding: 50px 80px 70px;
  max-width: 900px;
  margin: 0 auto;
}

.intro h2 {
  font-size: 36px;
  margin-bottom: 18px;
  color: #1f2a24;
}

.intro p {
  font-size: 18px;
  color: #444;
}

/* Footer */
footer {
  background-color: #1f2a24;
  color: white;
  text-align: center;
  padding: 22px;
}

/* Responsive Layout for Smaller Screens */
@media screen and (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 18px;
  }

  .nav-links {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }

  .hero {
    padding: 50px 30px;
    min-height: 60vh;
  }

  .hero-text h1 {
    font-size: 38px;
  }

  .hero-text p {
    font-size: 18px;
  }

  .feature-section {
    grid-template-columns: 1fr;
    padding: 40px 30px;
  }

  .feature-card img {
    height: 260px;
  }

  .intro {
    padding: 40px 30px 60px;
  }

  .intro h2 {
    font-size: 30px;
  }
}
.logo {
  color: white;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/*.logo-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}*/

.nav-socials {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
}

.nav-socials a {
  color: #333;
  text-decoration: none;
  border: 2px solid #333;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: bold;
  transition: all 0.3s ease;
}

.nav-socials a:hover {
  background-color: #333;
  color: white;
  transform: translateY(-3px);
}