/* assets/custom.css */

/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: #f8f9fa;
}

/* Navbar Styling */
.navbar {
    font-size: 1rem;
    padding: 1rem;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
}

/* Universal Background for All Tabs */
.tab-content-container {
    background-image: url('/assets/image.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    padding: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Section Overlay Boxes */
.section-box {
    background-color: rgba(255, 255, 255, 0.85); /* Semi-transparent white */
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 800px;
    width: 100%;
}

/* Hero Section Styling */
#hero-section {
    position: relative;
    min-height: 400px;
    color: #ffffff;
}

#hero-section::before {
    content: "";
    background-image: url('/assets/image.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.7;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1;
}

/* Hero Content Styling */
#hero-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
}

/* Search Section Styling */
#search-section {
    margin-top: -100px;
}

/* Footer Styling */
.footer {
    text-align: center;
    padding: 1rem;
    background-color: #343a40;
    color: #ffffff;
    margin-top: 2rem;
}

/* Responsive Adjustments */
@media only screen and (max-width: 768px) {
    body {
        font-size: 0.9rem;
    }
    .navbar-brand {
        font-size: 1.2rem;
    }
    #search-section {
        margin-top: 0;
        padding: 1rem;
    }
}
