body{
    background-image: url('/images/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 100vh;
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 3rem 1rem 2rem;
}

h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #a5166c;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    background-color: #f5aac8;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(255, 214, 232, 0.3);
    background-color: #ffe4f1;
}

.project-card h2 {
    font-size: 1.5rem;
    margin: 1rem;
    color: #ba3982;
}

.project-media img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.project-tags {
    font-size: 0.9rem;
    margin: 0 1rem;
    color: #000000;
    font-style: italic;
}

.project-desc {
    font-size: 1rem;
    margin: 0.5rem 1rem 1.5rem;
    color: #e02fb7;
}

.small-projects-grid {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}
  
.small-card {
    background-color: #b20bb5;
    padding: 0.5rem;
    border-radius: 10px;
    width: 150px;
    text-align: center;
    transition: transform 0.2s ease;
}

.small-card:hover {
    transform: scale(1.05);
}

.small-card img {
    width: 100%;
    border-radius: 6px;
}

.small-card h3 {
    font-size: 1rem;
    margin-top: 0.5rem;
    color: #f3f3f3;
}

.menu-bar u1{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;
}

.menu-bar li {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
}

.menu-bar a{
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

.menu-bar a:hover{
    color: #ff69b4;
}

.toolbar{
    position: absolute;
    top: 20px;
    left: 20px;
}

#menu-toggle{
    background-color: #ff69b4;
    border: none;
    color: white;
    font-size: 20px;
    border-radius: 5px;
    cursor: pointer;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: background-color 0.3s ease;
}

#menu-toggle:hover{
    background-color: #ff85c5;
}

#menu.hidden{
    display: none;
}

#menu{
    background: rgba(255,255,255,0.8);
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-top: 10px;
    padding: 10px 15px;
    position: absolute;
}

#side-menu {
    position: fixed;
    top: 0;
    left: -300px; 
    height: 100%; 
    width: 250px; 
    background: rgba(255, 216, 249, 0.9);
    box-shadow: 4px 0 6px rgba(0, 0, 0, 0.3);
    transition: left 0.3s ease; 
    z-index: 1000;
    overflow-y: auto;
    font-family: 'Tangerine', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
    text-align: center;
    padding: 20px;
}

#side-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

#side-menu ul li {
    margin: 15px 0;
}

#side-menu a {
    text-decoration: none;
    color: #333;
    font-size: 60;
    transition: color 0.3s ease;
}

#side-menu ul li a {
    text-decoration: none; 
    color: #333;
    font-size: 48px; 
    font-weight: 500;
    padding: 10px 20px; 
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease; 
}

#side-menu ul li a:hover {
    color: #ff69b4;
}

#side-menu.open {
    left: 0; 
}

#overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index:999;
    display:none;
}

#overlay.show{
    display: block;
}