
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000000;
}
#head{
    text-align: center;
    color: white;
    font-family: Georgia, 'Times New Roman', Times, serif;
}
.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: '';
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #343a40;
    list-style: none;
    padding: 0;
    margin: 0;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    top: 100%;
    left: 0;
    width: 200px;
}

.dropdown-menu li {
    padding: 10px 15px;
}

.dropdown-menu a {
    color: white;
    text-decoration: none;
    display: block;
}

.dropdown-menu a:hover {
    background-color: #ffe600;
    color: #000000 !important;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.navbar {
    background-color: #131212;
    color: #FFDB58;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.navbar .logo {
    height: 60px;
    transition: transform 0.3s;
}

.navbar .logo:hover {
    transform: scale(1.1);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    transition: max-height 0.3s ease-out;
}

.nav-links a {
    color: #FFDB58;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
    font-weight: bold;
}

.nav-links a:hover {
    color: white;
}

.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-icon span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #FFDB58;
    border-radius: 3px;
    transition: all 0.3s;
}


.workshops {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 40px 10%;
}

.workshop-slot {
    /* background-color: rgb(0, 0, 0); */
    border-radius: 10px;
    margin: 20px;
    width: 20%;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.workshop-slot:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 50px rgba(224, 218, 218, 0.2);
}

.workshop-slot img {
    width: 150px;
    height: 150px;
    border: 3px solid #FFDB58 ;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    padding: 10px;
}

.workshop-slot h3 {
    margin: 10px;
    font-size: 24px;
    color: #ffffff;
}

.workshop-slot p {
    font-size: 16px;
    color:#FFDB58;
    padding: 0 20px 20px;
}


footer {
    background-color: #131111;
    padding: 20px 0;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-link {
    display: inline-block;
    width: 40px; 
    height: 40px; 
    overflow: hidden;
}
.mail{
    width: 40px;
    height: 60px !important;
}
.social-link img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

.social-link img:hover {
    transform: scale(1.1);
}


@media (max-width: 768px) {
    .navbar {
        display: flex; /* Display flex for alignment */
        flex-direction: row; /* Keep items in a row */
        justify-content: space-between; /* Space between logo and menu */
        align-items: center; /* Center items vertically */
        padding: 10px 20px; /* Adjust padding */
        position: relative; /* Relative positioning to keep elements in place */
    }

    .menu-icon {
        display: flex; /* Show menu icon */
        align-items: center;
        flex-direction: column; /* Stack icon bars vertically */
        cursor: pointer; /* Show pointer on hover */
        gap: 5px; /* Space between icon bars */
        /* position: absolute; /* Position in top right */
        /* top: 15px; Adjust top spacing */
        /* right: 20px; Adjust right spacing */ 
    }

    .nav-links {
        position: absolute; /* Position the menu */
        top: 60px; /* Position below the navbar */
        right: 0; /* Align to the right */
        background-color: #343a40; /* Set background color */
        width: 100%; /* Full width */
        display: none; /* Hide by default */
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center items */
        padding: 10px 0; /* Adjust padding */
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); /* Add shadow for dropdown effect */
        z-index: 1; /* Ensure it appears on top */
    }

    .nav-links.open {
        display: flex; /* Show the menu when open */
    }

    .nav-links a {
        padding: 15px 0; /* Adjust padding for spacing */
        width: 100%; /* Full width */
        text-align: center; /* Center align text */
        font-size: 18px; /* Adjust font size */
        color: #FFDB58; /* Text color */
        text-decoration: none; /* Remove underline */
        
    }

    .navbar .logo {
        margin-bottom: 0; /* Remove bottom margin */
        height: 50px; /* Adjust logo size */
    }

    /* Workshop Slots Layout for Mobile */
    .workshops {
        display: flex; /* Flexbox for alignment */
        flex-direction: column; /* Stack workshop slots vertically */
        padding: 20px 5%; /* Adjust padding */
        align-items: center; /* Center items */
    }

    .workshop-slot {
        width: 100%; /* Full width for each slot */
        margin: 10px 0; /* Add margin for spacing */
        max-width: 400px; /* Set a max-width to avoid stretching */
        box-shadow: 0 4px 8px rgba(255, 253, 253, 0.1); /* Add shadow for styling */
        padding: 15px; /* Add padding */
        background-color: #000000; /* White background */
        border-radius: 8px; /* Rounded corners */
    }
}