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

body {
    font-family: 'Lora', serif; /* Applying the Lora font */
    line-height: 1.6;
    background-color: #ffffff; /* Background color */
    color: #000000; /* Text color */
    padding-top: 100px; /* Offset for fixed header */
    margin: 0;
}

html, body {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Top Bar Styling */
.top-bar {
    background-color: #000; /* Black background for contrast */
    color: #fff; /* White text color */
    padding: 10px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000; /* Ensure it stays above other elements */
    display: flex;
    align-items: center;
    justify-content: space-between; /* Distribute items across the width */
    font-family: 'Lora', serif;
    transition: transform 0.3s ease; /* Smooth transition */
}

/* Container for top bar content */
.top-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Distribute items across the width */
    width: 100%;
}

/* Welcome text styling */
.welcome-text {
    font-size: 1rem; /* Adjust as needed */
    margin-right: 20px; /* Space between welcome text and other items */
}

/* Contact information styling */
.contact-info {
    display: flex;
    align-items: center;
    gap: 40px; /* Space between address and phone numbers */
    margin-right: -400px;
}

/* Address styling */
.address {
    font-size: 0.9rem;
}

/* Phone number styling */
.phone-numbers {
    font-size: 0.9rem;
}

/* Map Icon Styling */
.map-icon {
    display: none; /* Hide by default */
}

.map-icon a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.map-icon a i {
    margin-right: 15px; /* Space between icon and text */
    font-size: 1.2rem; /* Adjust icon size */
}

/* Social Links Styling */
.social-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.social-links a i {
    margin-right: 5px; /* Space between icon and text */
    font-size: 1.2rem; /* Adjust icon size */
}

/* Mobile Styles */
@media (max-width: 1270px) {
    .contact-info {
        display: none; /* Hide contact info on mobile */
    }

    .map-icon {
        display: flex; /* Show map icon on mobile */
        margin-left: auto; /* Push map icon to the rightmost position */
        font-size: 0.8rem; /* Adjust font size */
        margin-right: 20; /* Reset margin-right */
    }

    .top-bar {
        font-size: 0.8rem; /* Smaller font size */
        padding: 8px 15px; /* Adjust padding if needed */
        justify-content: space-between; /* Ensure space is distributed */
    }

    .social-links {
        gap: 10px; /* Reduced gap between icons */
    }

    .social-links a {
        font-size: 0.9rem; /* Smaller icon and text size */
    }

    .social-links a i {
        font-size: 1rem; /* Adjust icon size */
    }
}

/* Add transitions for smooth hiding/showing */
.top-bar, header {
    transition: transform 0.7s ease-in-out; /* Adjust timing and easing as needed */
}

/* Adjusting the header position to account for the top bar */
header {
    position: fixed;
    width: 100%;
    top: 45px; /* Adjust this value based on the height of the top bar */
    z-index: 1000; /* Below the top bar */
    background-color: #f4f4f4; /* Matching the background color */
    padding: 15px 0;
    transition: transform 0.8s ease; /* Smooth transition */
}


/* Header */
header {
    position: fixed;
    left: 0;
    width: 100%;
    height: 100px; /* Set header height */
    background-color: #ffffff;
    color: #000000; /* Text color */
    display: flex;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Shadow for depth */
}

.logo-container {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.logo {
    width: 170px; /* Adjusted size */
    height: auto;
}

.menu-toggle {
    display: none; /* Hide menu toggle on larger screens */
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 27px;
    background: none;
    border: none;
    color: #000000;
    cursor: pointer;
}

nav {
    margin-left: 120px;
    flex: 1;
}

nav ul.nav-list {
    list-style: none;
    display: flex;
    justify-content: flex-end; /* Align items to the right */
    padding: 0;
    font-size: 0.85rem; /* Font size */
    gap: 15px; /* Space between items */
    flex-wrap: nowrap; /* Ensure items stay on one line */
}

nav ul.nav-list li {
    margin: 0 10px; /* Margin between items */
}

nav ul.nav-list li a {
    color: #000000;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 10px; /* Padding */
    font-family: 'Lora', serif;
}

nav ul.nav-list li a:hover, nav ul.nav-list li a.active {
    border-radius: 4px;
    color: #fefefe;
    background-color: #000000; /* Background on hover */
}

/* Mobile Styles */
@media (max-width: 1250px) {
    .menu-toggle {
        display: block; /* Show menu toggle on smaller screens */
    }

    nav {
        margin-left: 0;
    }

    nav ul.nav-list {
        display: none; /* Hide nav list on smaller screens */
        position: absolute;
        top: 100px;
        right: 0;
        width: 30%; /* Adjusted width for better usability */
        background-color: #ffffff;
        flex-direction: column;
        align-items: center;
        padding: 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    nav ul.nav-list.show {
        display: flex; /* Show nav list when 'show' class is added */
    }

    nav ul.nav-list li {
        margin: 0;
        width: 100%;
    }

    nav ul.nav-list li a {
        display: block;
        padding: 15px;
        text-align: center;
        border-bottom: 1px solid #a4313e;
    }

    nav ul.nav-list li a:last-child {
        border-bottom: none;
    }
}
/* Exciting News Section */
#exciting-news {
    /*padding: 20px 0;*/
    background-color: #ffffff; /* Clean white background */
    color: #000000; /* Primary text color to match Exciting News section */
}

#exciting-news .content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center; /* Left-aligned text for formal appearance */
}

#exciting-news .content-wrapper ul {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left; /* Left-aligned text for formal appearance */
}

#exciting-news h1 {
    margin-top: 45px;
    font-family: 'Lora', serif;
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    color: #000000; /* Main heading color matching Exciting News section */
    border-bottom: 2px solid #000000;
    display: inline-block;
}

.news-item {
    margin-bottom: 30px;
}

.news-item h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #a4313e; /* Subheading color to maintain consistency */
}

.news-item ul {
    list-style-type: disc;
    padding-left: 20px; /* Indent list */
    font-size: 1rem;
    color: #a4313e; /* List item color */
}

.news-item ul li {
    margin-bottom: 10px;
    color: #000000; /* List item color matching Exciting News section */
}

.news-item ul li::before {
    content: "• ";
    color: #a4313e; /* Custom bullet color */
    font-weight: bold;
    margin-right: 10px;
}

.news-item ul ul {
    list-style-type: circle;
    margin-top: 10px;
    margin-left: 20px;
    font-size: 0.9rem;
    color: #a4313e; /* Sub-list color matching Exciting News section */
}

.news-item ul ul li {
    margin-bottom: 5px;
}

.custom-indent {
    margin-left: 50px; /* Moves the entire nested list more to the right */
    padding-left: 50px; /* Additional padding for further indentation */
}

.news-item ul ul.custom-indent {
    list-style-type: circle;
    font-size: 0.9rem;
    color: #a4313e; /* Sub-list color */
}


.news-image {
    text-align: center;
    margin-top: 30px;
}

.news-image img {
    max-width: 75%;
    height: auto;
    border-radius: 8px; /* Optional: Rounded corners */
}


/* Responsive Design for news and Regulations Section */
@media (max-width: 768px) {

    
    #exciting-news {
        padding: 40px 10px;
    }

    #exciting-news h1 {
        font-size: 2rem;
    }

    #exciting-news-item ul li {
        padding-left: 100px;
    }
    
    #exciting-news .content-wrapper ul {
        padding-left: 20px;
        padding-right: 15px;
    }
}

/* Footer */
footer {
    background-color: #333;
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
    font-family: 'Lora', serif;
    margin-top: auto;
}

footer p {
    margin: 10px 0;
}

footer a {
    color: #a4313e;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
