/* basic reset */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #111;
  background: #fff;
  line-height: 1.5;
}

/* topbar */
.topbar { background: green; } /* bootstrap success */
.topbar .contact-list a { text-decoration: none; color: #fff; }
.topbar .contact-list a:hover { text-decoration: underline; }

/* logo / header */
.logo-header {
  max-height: 80px;
  width: auto;
}

.company-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: #008000;
}

/* navbar */
.navbar { padding: 0.4rem 0; }
.navbar .nav-link { padding: .5rem 1rem; color: #fff; }
.navbar .nav-link:hover, .navbar .nav-link.active { color: #00cc66; }

/* HERO */
.hero {
  background-image: url('moto1.jpg');
  background-size: cover;
  background-position: center;
  min-height: 260px;
  position: relative;
  display: flex;
  align-items: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}
.hero-content { position: relative; z-index: 2; }
.hero .display-5 { color: #fff; }
.hero p.lead { color: #e6f7ef; }

/* Gallery cards */
.gallery-card { overflow: hidden; border-radius: 8px; }
.gallery-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .35s ease, box-shadow .35s ease;
}
.gallery-card:hover img { transform: scale(1.05); box-shadow: 0 8px 30px rgba(0,0,0,0.25); }
.gallery-card .card-body { background: transparent; }

/* Responsive card heights */
@media (max-width: 576px) {
  .gallery-card img { height: 180px; }
}
@media (min-width: 1200px) {
  .gallery-card img { height: 240px; }
}

.footer-section {
    background-color: green;
    color: #fff;
    padding: 50px 20px 30px;
    font-family: 'Segoe UI', sans-serif;
    text-align: center;
  }
  
  .footer-content p {
    font-size: 1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    color: #ddd;
  }
  
  .seperator-in-footer {
    display: block;
    width: 80px;
    height: 3px;
    background-color: #00b894;
    margin: 30px auto;
  }
  
  .social-icon ul {
    padding-left: 0;
    margin: 0 auto;
    display: inline-flex;
    list-style: none;
    gap: 15px;
  }
  
  .social-icon ul li a {
    font-size: 20px;
    color: #fff;
    background: #333;
    padding: 10px;
    border-radius: 50%;
    transition: 0.3s ease;
  }
  
  .social-icon ul li a:hover {
    background: #00b894;
    color: #fff;
  }
  
  .footer-section .copyright {
    font-size: 0.95rem;
    color: #ccc;
    margin-top: 20px;
  }
  
  .footer-section .copyright a {
    color: #00b894;
    text-decoration: none;
  }
  
  .footer-section .copyright a:hover {
    text-decoration: underline;
  }
  
  /* Responsive Footer */
  @media (max-width: 768px) {
    .footer-content p {
      font-size: 0.95rem;
      padding: 0 10px;
    }
  
    .social-icon ul {
      flex-wrap: wrap;
      justify-content: center;
    }
  
    .social-icon ul li a {
      font-size: 18px;
      padding: 8px;
    }
  }
  

/* small helpers */
.text-white-50 { color: rgba(255,255,255,0.85); }
.border-white-25 { border-color: rgba(255,255,255,0.25) !important; }
