/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
}

header {
    background-color: 	#4C0013;
    color: #fff;
    padding: 10px;
}

.top-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
}

.animated-link {
    color: yellow;
    text-decoration: none;
}

.bottom-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: white;
}

.logo {
    height: 80px;
}

.menu-icon {
    font-size: 1.5em;
    cursor: pointer;
    color: black;
}
.nav-menu {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
    margin-right: auto; /* Align menu to the right */
    color: #000;
    font-size: 15px;

}

.nav-menu li {
    position: relative;
    
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
}

.nav-menu a:hover {
    color: yellow;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 10px;
    background-color: 	#4C0013;
    padding: 10px;
    list-style: none;
    border: 1px solid #fff;
    width: 300px;
}

.dropdown:hover .dropdown-menu {
    display: block;
    
}

.dropdown-menu li {
    margin: 5px 0;
}

.dropdown-menu a {
    color: #fff;
    text-decoration: none;
}

.dropdown-menu a:hover {
    color: yellow;
}



/* Responsive Design */

/* Medium Screens (Tablets) */
@media (max-width: 768px) {
    .top-section,
    .bottom-section {
        flex-direction: column; /* Stack items vertically */
        align-items: flex-start; /* Align items to the left */
        padding: 10px; /* Adjust padding */
    }

    .nav-menu {
        flex-wrap: wrap; /* Wrap menu items */
        gap: 15px; /* Reduce spacing */
        justify-content: flex-start; /* Align menu to the left */
    }

    .logo {
        height: 60px; /* Reduce logo size */
    }

    .dropdown-menu {
        width: 180px; /* Adjust dropdown width for smaller screens */
    }

    .nav-menu a {
        font-size: 14px; /* Adjust font size for menu items */
    }
}

/* Small Screens (Mobile) */
@media (max-width: 480px) {
    .top-section,
    .bottom-section {
        padding: 10px; /* Adjust padding for smaller screens */
    }

    .nav-menu {
        flex-direction: column; /* Stack menu items vertically */
        gap: 10px; /* Adjust spacing */
    }

    .logo {
        height: 50px; /* Further reduce logo size */
    }

    .nav-menu a {
        font-size: 12px; /* Smaller font size for mobile */
    }

    .dropdown-menu {
        width: 150px; /* Adjust dropdown width for mobile */
    }
}
/* Menu Box Styles */
.menu-box {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100%;
    background-color: 	#4C0013;
    color: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    transition: right 0.3s ease;
    z-index: 1000;
}

.menu-box.open {
    right: 0;
}

.close-menu {
    background: none;
    border: none;
    color: #fff;
    font-size: 2em;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
}

.menu-section {
    padding: 20px;
}

.menu-section h2 {
    border-bottom: 2px solid yellow;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.menu-list {
    list-style: none;
    padding: 0;
}

.menu-list li {
    margin: 10px 0;
}

.sub-menu {
    list-style: none;
    padding-left: 15px;
}

.sub-menu li {
    margin: 5px 0;
}

.menu-list a {
    color: #fff;
    text-decoration: none;
}

.menu-list a:hover {
    color: yellow;
}



/* Responsive Design */

/* For Tablets and Medium Screens */
@media (max-width: 768px) {
    .menu-box {
        width: 250px; /* Adjust width for smaller screens */
    }

    .close-menu {
        font-size: 1.8em; /* Adjust close button size */
    }

    .menu-section {
        padding: 15px; /* Reduce padding */
    }

    .menu-section h2 {
        font-size: 1.3rem; /* Smaller section titles */
    }

    .menu-list a {
        font-size: 0.9rem; /* Adjust font size for links */
    }
}

/* For Mobile Phones and Small Screens */
@media (max-width: 480px) {
    .menu-box {
        width: 200px; /* Further reduce width for small screens */
    }

    .close-menu {
        font-size: 1.5em; /* Smaller close button */
    }

    .menu-section {
        padding: 10px; /* Reduce padding for compact layout */
    }

    .menu-section h2 {
        font-size: 1.2rem; /* Smaller section titles */
    }

    .menu-list a {
        font-size: 0.8rem; /* Smaller font size for links */
    }

    .sub-menu {
        padding-left: 10px; /* Adjust submenu indentation */
    }
}

/* Footer Styles */
footer {
    background-color:#ffc107;
    color: black;
    padding: 20px 10px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-left {
    flex: 1;
    min-width: 200px;
}

.footer-logo {
    width: 350px;
    margin-bottom: 10px;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icon {
    width: 32px;  /* Set the desired size */
    height: 32px; /* Ensure the icons have the same height */
    object-fit: contain; /* Ensure icons don't stretch or get distorted */
}

.social-icons a {
    display: inline-block;
}

/* Footer Sections */
.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h3 {
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: black;
    text-decoration: none;
    font-weight: bold;
}

.footer-section ul li a:hover {
    color: #4C0013;
}

.footer-section ul li i {
    margin-right: 8px;
}

/* Contact Icons */
.contact-icon {
    width: 20px;  /* Adjust icon size */
    height: 20px; /* Adjust icon size */
    margin-right: 10px;
    object-fit: contain;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-left {
        text-align: center;
        margin-bottom: 20px;  /* Ensure spacing between logo and social icons */
    }

    .footer-logo {
        width: 80px;  /* Adjust logo size on smaller screens */
    }

    .social-icons {
        justify-content: center;
        gap: 10px;
    }

    .social-icon {
        width: 30px;  /* Adjust social media icon size for smaller screens */
        height: 30px;
    }

    .footer-section {
        text-align: center;
        width: 100%;  /* Ensure sections take full width */
        margin-bottom: 20px;  /* Add some space between sections */
    }

    .footer-section ul li {
        margin-bottom: 10px;  /* Increase space between list items */
    }

    .contact-icon {
        width: 18px;  /* Reduce size of contact icons */
        height: 18px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        gap: 10px;
    }

    .footer-logo {
        width: 70px;  /* Adjust logo size further for smaller devices */
    }

    .social-icons {
        gap: 8px;
    }

    .social-icon {
        width: 28px;  /* Further reduce social icon size */
        height: 28px;
    }

    .footer-section ul li {
        margin-bottom: 12px;  /* Space out list items more for small screens */
    }

    .contact-icon {
        width: 16px;  /* Adjust contact icon size for very small screens */
        height: 16px;
    }
}




/* Header Styles */
header {
    position: relative; /* Ensure header has a stacking context */
    z-index: 1000; /* Set a high z-index to place it above the slider */
}

/* Dropdown Menu Styles */
.dropdown-menu {
    position: absolute; /* Ensure dropdown is positioned relative to its parent */
    z-index: 1100; /* Higher than the header and slider */
   
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Add shadow for better visibility */
}

/* Slider Section */
.slider-container {
    position: relative; /* Ensure the slider has its own stacking context */
    z-index: 1; /* Lower z-index than the header and dropdowns */
}

/* Address Text Styling */
.address-text {
    font-family: "Georgia", serif; /* Change font style */
    font-style: italic; /* Optional: Makes it italic */
    font-size: 18px; /* Adjust font size */
    color: black; /* Change text color */
}

/* Address Item: Flexbox for Alignment */
.address-item {
    display: flex;
    align-items: center; /* Center icon vertically */
    gap: 15px; /* Space between icon and text */
    text-align: left;
}

/* Icon Styling */
.contact-icon {
    width: 30px; /* Adjust size if needed */
    height: auto;
}

/* Address Content: Text in a Column */
.address-content {
    display: flex;
    flex-direction: column; /* Keeps text in a single column */
    justify-content: center; /* Centers text vertically */
}

/* 🔹 Responsive Adjustments */
@media (max-width: 768px) {
    .address-item {
        flex-direction: column; /* Stack icon and text on small screens */
        align-items: center; /* Center everything */
        text-align: center; /* Align text center for mobile */
    }

    .contact-icon {
        width: 40px; /* Slightly increase icon size for better visibility */
    }
    
    .address-content {
        align-items: center; /* Center text below icon */
    }
    
    .address-text {
        font-size: 16px; /* Slightly reduce font size for mobile */
    }
}
