/* Custom styles for Losberg Scaffolding Website */

body {
  background-image: url('https://losberg.neocities.org/background.png');
  background-repeat: repeat;
  background-size: auto;
  font-family: 'Inter', sans-serif;
  background-color: #f7fafc; /* Tailwind's gray-100 */
  color: #1a202c; /* Tailwind's gray-800 */
}

/* Header with repeating tile */
/* Header Background Pattern */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-image: url('https://losberg.neocities.org/background.png');
  background-repeat: repeat;
  background-size: 150px 150px;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Smaller pattern on mobile */
@media (max-width: 768px) {
  header {
    background-size: 80px 80px;
  }
}

/* Prevent content from being hidden under the fixed header */
body {
  padding-top: 100px; /* adjust based on actual header height */
}

/* Hero Section */
.hero-section {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://losberg.neocities.org/Opening.jpeg');
  background-size: cover;
  background-position: center;
  color: white;
  margin-top: -100px; /* Pull hero up under the header */
  padding-top: 200px; /* Creates breathing room */
  padding-bottom: 8rem;
  text-align: center;
}
/* Section Titles */
.section-title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Cards */
.service-card,
.project-card {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
}
.service-card:hover,
.project-card:hover {
  transform: scale(1.05);
}

/* Buttons */
.cta-button {
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 0.375rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: background-color 0.3s ease;
}


/* Navigation */
.nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #4a5568; /* gray-700 */
  transition: color 0.3s ease;
}
.nav-link:hover {
  color: #000;
}

/* Mobile Menu Icon */
#mobile-menu-button path {
  stroke: #000;
}

/* Header Logo */
#logoImage {
  height: 100px !important;
  width: auto !important;
  display: block !important;
}

/* Footer Logo */
#footerLogoImage {
  height: 50px;
  width: auto;
  margin-top: 2px;
}

/* Footer Section */
footer {
  background-color: #1a202c; /* gray-900 */
  color: #a0aec0; /* gray-400 */
  font-size: 0.875rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
#mobile-menu {
  position: fixed;
  top: 100px;
  left: 0;
  width: 100vw;
  z-index: 1100; /* higher than header if needed */
  background: #fff;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}

/* If your header gets shorter on mobile, adjust the padding! */
@media (max-width: 768px) {
  #mobile-menu {
    padding-top: 80px; /* adjust if your mobile header is smaller */
  }
}

footer a:hover {
  color: #fff;
}