/* Global CSS Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Body Styles */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Menu Styles */
.menu {
    width: 100px;
    background-color: #333;
    color: #fff;
    position: fixed;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 20px;
    box-sizing: border-box;
    transition: width 0.3s ease;
}

/* Menu Links */
.menu a {
    display: block;
    width: 98%;
    color: #fff;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 18px;
    transition: color 0.3s, background-color 0.3s;
    padding: 10px;
    border-radius: 5px;
    box-sizing: border-box;
    white-space: nowrap; /* Prevents text from wrapping */
    overflow: hidden; /* Hides overflowing text */
    text-overflow: ellipsis; /* Adds ellipsis (...) when text overflows */
}
/* Hover Effect */
.menu a:hover {
    color: #000; /* Change text color on hover */
    background-color: #fff; /* Change background color on hover */
    transform: scale(1.00); /* Slightly enlarges the element on hover */
}

/* Header Styles */
.header {
    background-color: #007bff;
    color: #fff;
    padding: 20px;
    text-align: center;
    margin-left: 100px;
    width: calc(100% - 100px);
    box-sizing: border-box;
}

/* Content Wrapper Styles */
.content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-left: 100px;
    padding: 0px;
    width: calc(100% - 100px);
    flex: 1;
}

/* Main Content Styles */
.main {
    max-width: 800px;
    padding-left: 30px;
    padding-right: 40px;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: left;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Heading and Links Styles within Main */
.main h1 {
    color: #333;
    margin-top: 20px;
    margin-bottom: 5px;
    text-align: center;
}
.main h2 {
    color: #333;
    margin-top: 20px;
    margin-bottom: 5px;
}

.main p {
    margin-bottom: 20px;
    margin-top: 5px;
}

.main a {
    color: #007bff;
    text-decoration: none;
}

.main a:hover {
    text-decoration: underline;
}

/* Image Styles */
.main img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin: 20px 0;
}

/* Button Styling */
.btn-explore-gallery {
    padding: 10px 20px;
    font-size: 1em;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.btn-explore-gallery:hover {
    background-color: #0056b3;
}

/* Footer Styles */
.footer {
    background-color: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
	padding-left: 100px;
	 margin-top: auto; 
}

/* Footer Inner Styles */
.footer-inner {
    max-width: 100%; /* Allow the inner container to expand to full width */
    margin: 0 auto;
    padding: 0 10px; /* Add padding if needed */
}

/* Footer Left Styles */
.footer-left ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex; /* Use flexbox for layout */
    flex-wrap: wrap; /* Allow items to wrap to the next line */
    justify-content: center; /* Center items horizontally */
}

.footer-left li {
    margin: 5px; /* Adjust spacing between items */
}

dl {
    margin: 0;
    padding: 0;
}

dt {
    font-weight: bold;
    margin-top: 15px;
}

dd {
    margin: 0 0 15px 0;
    padding-left: 20px;
    border-left: 3px solid #ddd;
}

dt + dd {
    margin-top: 5px;
}

dt::before {
    content: "🔹 ";
}

dd {
    font-size: 1em;
    color: #666;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
    .footer-inner {
        padding: 0 5px; /* Reduce padding for smaller screens */
    }

    .footer-left li {
        margin: 5px 2px; /* Adjust spacing for smaller screens */
    }
}


/* Specific styles for the home page */
.home-page .content-wrapper {
    justify-content: flex-start;
    padding-top: 0px;
}

.home-page .main {
    margin-top: 20px;
    text-align: center;
}

.header svg {
    display: block;
    margin: 0 auto;
}


/* Adjust the menu for small screens */
@media (max-width: 600px) {
    .menu {
        width: 60px; /* Reduced width for mobile view */
    }
    .menu a {
        font-size: 0; /* Hide text */
        padding: 10px;
        text-align: center; /* Center the first letter */
    }
    .menu a::before {
        content: attr(data-letter); /* Show the first letter */
        font-size: 18px; /* Adjust font size as needed */
    }
    .header, .content-wrapper {
        margin-left: 60px; /* Adjust margin-left for mobile view */
        width: calc(100% - 60px); /* Adjust width for mobile view */
    }
	    .footer {
        padding-left: 60px; /* Reduce padding for smaller screens */
    }
}