/* home.css */

/* Ensure the page takes the full height */
html, body {
    height: 100%;
    margin: 0;
}

.navbar {
    padding: 0rem 2rem; /* Increase padding for a larger appearance */
  }

  .navbar-nav .nav-link {
    font-size: 1.25rem; /* Increase font size of links */
    margin: 0 1rem; /* Add spacing between links */
  }

  .navbar-brand {
    font-size: 1.5rem; /* Increase font size of the brand */
  }

  .btn-outline-orange {
    color: #d76303;
    border-color: #de6603;
    padding: 0.75rem 1.5rem; /* Make the button larger */
    font-size: 1.1rem; /* Increase button text size */
  }

  .btn-outline-orange:hover {
    background-color: #fd7e14;
    color: white;
  }


  @media (max-width: 767px) {
    /* Adjust the logo for small screens */
    .navbar-brand img {
        height: 80px; /* Smaller logo size on mobile */
    }

    .navbar-toggler {
        border-color: #de6603; /* Button border color */
    }

    /* Adjust navbar items when collapsed */
    .navbar-collapse {
        text-align: center;
        margin-top: 10px;
    }

    .navbar-nav {
        width: 100%;
        justify-content: center;
    }

    .navbar-nav .nav-link {
        font-size: 1rem; /* Font size for navbar items */
        margin: 10px 0; /* Space between links */
    }

    .ml-auto {
        display: block;
        margin-top: 10px; /* Add spacing for buttons on mobile */
    }

    .btn-outline-orange {
        font-size: 1rem; /* Adjust button size */
        padding: 0.75rem 1.5rem; /* Adjust padding */
        margin: 5px 0;
    }
}

/* Flex container to ensure the footer is pushed to the bottom */
.page-wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

/* Main content takes available space */
.content {
    flex: 1;
}

/* Footer Styles */
.content-footer {
    background-color: #c94d00;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Responsive padding */
.container {
    padding: 15px;
}


@media (max-width: 767px) {
    .content {
        padding: 10px; /* Add padding for smaller screens */
    }

    .content h1 {
        font-size: 1.8rem; /* Adjust font size for mobile */
    }

    .content p {
        font-size: 1rem; /* Adjust paragraph font size */
        line-height: 1.6; /* Adjust line height */
        margin: 0 15px; /* Add some padding to avoid text touching the edges */
    }

    .btn-lg {
        font-size: 1rem; /* Adjust button text size */
        padding: 0.75rem 1.5rem; /* Adjust button padding */
    }
}

/* Mobile responsiveness */
@media (max-width: 767px) {
    .content-footer {
        font-size: 0.875rem;
        padding: 10px;
    }
}


/* styles for the banner */
.banner-section {
    background-image: url('/assets/images/background.png');
    background-size: cover;
    background-position: center;
    padding: 60px 0; /* Adjust padding to fit the content inside */
    color: white;
    text-align: center;
}

.banner-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.banner-description {
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

/* Mobile responsiveness */
@media (max-width: 767px) {
    .banner-title {
        font-size: 1.8rem;
    }

    .banner-description {
        font-size: 1rem;
    }
}




