
/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  overflow-x: hidden;
  background-color: #f8f9fa;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
}

/* Ensure Full-Width Layout */
.container-fluid, .container {
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

/* Fixed Header */
.navbar {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: #222;
  padding: 10px 0;
}

/* Responsive Footer (not fixed) */
.footer {
  background: #222;
  color: white;
  padding: 40px 0;
  font-size: 16px;
  width: 100%;
  position: relative;
}

/* Hero Section */
.hero-section {
  background: url('images/hero.jpg') center center / cover no-repeat;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  position: relative;
}

/* Responsive Hero */
@media (max-width: 768px) {
  .hero-section {
    background-position: top center;
    background-size: cover;
    min-height: 100vh;
    padding: 80px 15px;
  }
}

/* Section Styling */
section {
  width: 100%;
  margin: 0;
  padding: 80px 0;
  overflow-x: hidden;
}

/* Maintain main content growth */
main {
  flex: 1 0 auto;
}
