:root {
    --primary-color: #06144e;
    --text-color: #333;
    --background-color: #f5f5f5;
}



.name-designer {
				color: #ec840c;
	}
	
	
a{
	color: #ec840c;
	}

.text-circle {
	color: rgb(94, 94, 94);
				font-size: 14px;
			}
.facebook-icon{
	height: 70%;
	width: 70%;
		}

#hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
     height: 100vh;
					width: 100vh;
					overflow-x: hidden;
        }
        
.hero-heading {
     text-align: center;
     color: aliceblue;
     font-size: 60px;
     margin-top: 20%;
        }

.hero-subheading{
    text-align: center;
    color: aliceblue; 
}




.filter-text{
    margin-left: 25%;
}

#searchBar {
    margin-bottom: 20px;
    margin-left: 25%;
}

#searchInput {
    width: 35%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#categories {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-left: 25%;
}

.category-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.category-btn:hover {
    background-color: #e46116;
}


#resourceList{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-top: 50px; /* add 50px padding to the top of the resource list */
    margin-bottom: 0%;
    overflow-x: hidden;
}

.resource-item:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.resource-item {

    background-color: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 5%;
}


.resource-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.resource-item a:hover {
    text-decoration: none;
    color: #e46116;
    

}


/* Combined media queries for better maintainability */
@media (max-width: 768px) {
body {
    padding: 0px;
    padding-bottom: 2px;
    width: 100%;
    max-height: 100%;
    max-width: 100%; 
	margin-bottom: 0;
	min-height:100vh;
							
    }

#categories {
    flex-direction: column;
    }

.hero-heading {
    text-align: center;
    color: aliceblue;
    font-size: 60px;
    margin-top: 50%;
           }
   

.resource-item {
    background-color: #fff;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    overflow-x: hidden;
    }							
								


* {
    box-sizing: border-box;
    }
#resourceList{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding-top: 50px; /* add 50px padding to the top of the resource list */
    margin-bottom: 0;
    overflow-x: hidden;														
    }

#searchInput {
    width: 80%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
}


#searchBar {
    margin-bottom: 20px;
    margin-left: 20%;
	overflow-x: hidden;
}
}

/* Additional styles for smaller screens (max-width: 600px) */
@media (max-width: 600px) {
body {
    padding: 0px;
    padding-bottom: 2px;
    width: 100%;
    max-height: 100%;
    max-width: 100%; 
    margin-bottom: 0;
    min-height:100vh;
                                
    }
.hero-heading {
    text-align: center;
    color: aliceblue;
    font-size: 60px;
    margin-top: 50%;
    }
}




