/* Global Styles */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: url('../images/backdash.jpg') no-repeat center center fixed;
    background-size: cover;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f9f9f9;
}

::-webkit-scrollbar-thumb {
    background-color: #e74c3c;
    border-radius: 10px;
    border: 3px solid #f9f9f9;
}

/* Header Styles */

header {
    background-color: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
}

.logo {
    display: inline-block;
    margin-right: 20px;
}

.logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav li {
    margin: 0 15px;
    position: relative;
}

nav a {
    color: #fff;
    text-decoration: none;
}

.profile-dropdown {
    display: none;
    position: absolute;
    background-color: #333;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 150px;
    z-index: 1;
}

.profile-dropdown li {
    text-align: center;
}

.profile-dropdown a {
    padding: 10px;
    display: block;
}

/* Main Styles */

main {
    padding: 20px;
}

.section-1 h2,
.section-1 h3 {
    text-align: center;
    color: #e74c3c;
}

.section-1 h3 {
    margin-bottom: 30px;
}

/* Dropdown Styles */

.combined-images {
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image-section {
    position: relative;
    width: 100%;
    margin-bottom: 0;
}

.image-section img {
    cursor: pointer;
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.dropdown-menu {
    background-color: #e74c3c;
    border: 1px solid #ddd;
    padding: 0;
    display: none;
    z-index: 1;
    width: 100%;
    transition: max-height 0.5s ease, padding 0.5s ease;
    max-height: 0;
    overflow: hidden;
}

.dropdown-menu.show {
    display: block;
    max-height: 500px;
    padding: 10px;
}

.dropdown-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown-menu li {
    margin-bottom: 10px;
}

.dropdown-menu li:last-child {
    margin-bottom: 0;
}

.dropdown-menu a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 10px;
    background-color: #e74c3c;
}

.dropdown-menu a:hover {
    background-color: #c0392b;
}

/* Responsive Styles */

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    nav ul {
        flex-direction: column;
    }

    nav li {
        margin-bottom: 10px;
    }

    .profile-dropdown {
        left: 0;
        transform: none;
    }
}
