/* General body styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #080808;
}

/* Header and footer styles */
header, footer {
    background-color: #3014cf;
    color: rgb(45, 19, 190);
    text-align: center;
    padding: 10px 0;
}
 
/* Scrolling background styles */
.scrolling-background {
    background-image: url('/assets/images/vlogott79.png'); /* Replace with your image */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 50vh; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative; /* Parent container for positioning child elements */
    overflow: auto; /* Allow scrolling if content exceeds the viewport */
    color: white;
    font-size: 24px;
    text-shadow: 2px 2px 4px rgb(253, 252, 252);
}
/* Optional: Add a semi-transparent overlay */




/* Image Placeholder Over the Scrolling Background */
.home-line3{
    width: 100%;
    height: 100%;
    background-image: url('/assets/images/body-banner-bg.jpg'); /* Background image for the placeholder */
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: auto;
    color: #080808;
}



/* Placeholder styles */
.image-placeholder1 {
    width: 100%;
    height: 300px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #020202;
    font-size: 18px;
    border: 1px solid #fff;
    margin-bottom: 20px;
}
 /* General reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
            font-family: Arial, sans-serif;
            background-color: #FFf;

            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
        }
/* Scrolling background effect */
        footer {
            background-color: #FFf;
            color: white;
            text-align: center;
            padding: 10px 0;
        }
        
        header{
            background-color: #3014cf;
            color: white;
            text-align: center;
            padding: 10px 0;
        }

        main {
            padding: 20px;
        }

        .image-placeholder1 {
            width: 100%;
            height: 200px;
            background-color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2146ac;
            font-size: 18px;
            border: 1px solid #ccc;
            margin-bottom: 20px;
        }
/* Navigation bar styles */
nav {
    display: flex;
    justify-content: space-between; /* Space between elements */
    align-items: center;
    background-color: #180779;
    color: white;
    padding: 10px 20px;
}

/* Ensure search container and nav buttons span evenly */
.search-container, .nav-buttons {
    flex: 0; /* Each takes up equal space */
    display: flex;
    align-items: center;
}

/* Center search container content */
.search-container {
    justify-content: flex-start; /* Align search bar to the left */
}

.search-container input[type="text"] {
    flex: 1; /* Input spans available space */
    padding: 5px;
    font-size: 16px;
    border: none;
    border-radius: 3px;
    margin-right: 5px;
}

/* Search button styles */
.search-container button {
    background-color:#1449bc; /* Default background color */
    color: white; /* Default text color */
    border: none;
    padding: 6px 12px;
    cursor: pointer;
    border-radius: 3px;
    transition: background-color 0.3s ease; /* Smooth transition for hover effect */
}

/* Hover effect for search button */
.search-container button:hover {
    background-color: #007BFF; /* Change to blue on hover */
    color: white; /* Ensure text remains visible */
}

/* Navigation buttons styles */
.nav-buttons {
    justify-content: space-evenly; /* Even spacing between buttons */
    gap: 10px; /* Optional: Adds spacing between buttons */
}

.nav-buttons button {
    flex: 1; /* Each button takes equal width */
    background-color: #1449bc; /* Default background color */
    color: white; /* Default text color */
    border: none;
    padding: 6px 12px;
    cursor: pointer;
    border-radius: 3px;
    text-align: center;
    font-size: 16px;
    transition: background-color 0.3s ease; /* Smooth transition for hover effect */
}

/* Hover effect for navigation buttons */
.nav-buttons button:hover {
    background-color: #007BFF; /* Change to blue on hover */
    color: white; /* Ensure text remains visible */
}
