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

body {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: #333;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Top Info Solid Blue Clean */
.top-bar {
  background: #3399ff;
  height: 130px;
  color: white;
  font-size: 1.1em;
  padding: 20px 0;
  overflow: hidden;
}

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

/* Navigation Bar */
.nav-bar {
  background: #3399ff;
  padding: 12px 0;
  text-align: center;
}

.nav-bar a {
  color: white;
  margin: 0 15px;
  font-weight: 600;
}

.nav-bar a:hover {
  color: #ffcc00;
}

/* Hero Section */
.hero-corrected {
  background: url('hero-background.jpg') no-repeat center center;
  background-size: cover;
  height: 45vh;
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.5);
  padding: 20px 40px;
  border-radius: 10px;
}

.hero-corrected h1 {
  color: white;
  font-size: 2.5em;
  margin-bottom: 15px;
}

.call-button {
  background: #ffcc00;
  padding: 12px 30px;
  color: black;
  font-weight: bold;
  border-radius: 5px;
  font-size: 1.2em;
  display: inline-block;
}

.call-button:hover {
  background: #e6b800;
}

/* Sections */
section {
  padding: 60px 20px;
  text-align: center;
}

.about h2, .services h2, .contact h2 {
  color: #0074D9;
  margin-bottom: 20px;
}

.services ul {
  list-style: none;
  padding: 0;
}

.services li {
  font-size: 1.1em;
  margin: 12px 0;
}

/* Footer */
.site-footer {
  background: #000;
  color: white;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9em;
}

/* Mobile nav bar fixes */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    nav ul li {
        margin: 10px 0;
    }
    nav a {
        font-size: 1.2rem;
    }
}
@media only screen and (max-width: 768px) {
  .mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #3399ff;
    padding: 10px 15px;
    position: relative;
  }

  .mobile-header .menu-icon,
  .mobile-header .call-icon {
    width: 30px;
    height: 30px;
  }

  .mobile-header .shop-name {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-weight: bold;
    color: white;
    font-size: 18px;
    z-index: 1;
  }
}

@media only screen and (min-width: 769px) {
  .mobile-header {
    display: none !important;
  }
}