* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: url(images/combined.png) no-repeat;
	background-size: 80%;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center;
	font-family: Calibri, sans-serif;
    margin: 0;
    padding: 0;
	font-size: 1.2em;
}

/* Main Navbar styles */
.navbar {
    height: 75px;
    font-family: "Poppins", sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
	position: -webkit-sticky; /* For Safari */
	position: sticky !important;
	top: 0;
	z-index: 1000; /* Ensure it's above other content */
	background-color: #fff; /* Optional: ensures it has a solid background */	
}

/* Center the content inside the navbar */
.navbar .logo {
    width: 200px;
    margin-top: 6px;
}

.navbar button {
    margin-top: -10px;
}

.navbar .logo img {
    height: 25%;
    width: 25%;
    margin-left: 1%;
	margin-top: -5px !important;
}

.navbar .logo a {
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-size: 30px;
    color: #b00404;
    font-weight: 900;
}

/* Hide the menu toggle by default */
.menu-toggle {
    display: block;
    background: none;
    border: none;
    outline: none; /* Prevents focus outline */
    font-size: 1.8em;
    cursor: pointer;
    color: #b00404;
    transition: transform 0.3s ease-in-out;
    padding: 5px; /* Small padding for better tap area */
}

/* Remove unwanted focus styles */
.menu-toggle:focus {
    outline: none;
}

/* Rotate the icon when active */
.menu-toggle.active {
    transform: rotate(180deg);
}

.navigation-links {
    list-style-type: none;
    display: flex;
    position: static;
}

.navigation-links li {
    position: relative;
    text-decoration: none;
}

.navigation-links a {
    padding: 15px;
    text-decoration: none;
    display: block;
    color: #b00404;
    font-size: 1.1em;
    font-weight: 500;
}

.navigation-links a:hover {
	text-decoration: none !important;	
    color: #b00404 !important;
	background-color: #f0e7e1;
    border-radius: none;
}

.dropdown.active .dropdown-menu {
    display: block;
}

.dropdown-menu {
    width: 100%;
    margin-top: -11% !important;
    display: none;
    position: relative;
    top: 100%;
    left: 0;
    background-color: #fff !important;
    list-style-type: none;
    padding: 10px 0;
    margin: 0;
    min-width: 200px;
    max-width: 500px;
    max-height: 500px;
    overflow-y: auto;
}

.dropdown-menu li {
    border-bottom: 1px solid #444;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu li a {
    padding: 10px 15px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* Mobile Styles */
@media (max-width: 1050px) {
    .navigation-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #fff;
        position: static;
        top: 100%;
        left: 0;
    }

    .navigation-links.active {
        display: flex;
    }

    .dropdown-menu {
		margin-top: 1px !important;
        display: none; /* Hidden by default */
        position: static !important;
        max-height: none !important;
        border: none;
        box-shadow: none;
        padding-left: 15px;
		overflow: hidden;
		max-height: 0;
		transition: max-height 0.4s ease;		
		
    }

    /* When dropdown active in mobile, show dropdown-menu block */
    .dropdown.active > .dropdown-menu {
        display: block;
    }

    .menu-toggle {
        display: block;
        color: #b00404;
    }
	
    /* Make dropdown toggle cursor pointer */
    .dropdown-toggle {
        cursor: pointer;
        user-select: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }	
	
}

/* Centered Search Bar */
.search-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%; /* Position search bar at the center horizontally */
    transform: translateX(-50%); /* Offset the search bar by half of its width to make it truly centered */
}

.search-input {
	height: 40px;
    width: 250px;
    padding: 8px;
    font-size: 16px;
    border: 1px solid;
    border-radius: 5px;
}

.search-button {
	margin-top: 1px !important;
    background-color: #b00404;
    color: white;
    padding: 8px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 10px;
    font-size: 16px;
	width: 37px; 
	height: 37px;
}

.search-button:hover {
    background-color: #e82727;
}

/* Other search-related styling */
.search-results {
    width: 90%;
    max-width: 800px;
    margin: auto;
    padding: 10px;
    display: none;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-height: 65vh;
    overflow-y: auto;
}

.view-all-results a {
	display: none;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
	opacity: 0;
}

.result-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.result-item img {
    width: 80px;  /* Image size */
    height: 80px;
    margin-right: 10px;
    object-fit: contain;
}

/* Style the results list itself */
#results-list {
    list-style-type: none; /* Remove bullet points */
    margin-left: 20px;
	margin-right: 20px;
    padding: 0;
}

/* Style each list item */
#results-list li {
    margin-bottom: 5px;
    padding: 10px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Hover effect for list items */
#results-list li:hover {
    background-color: none;
    transform: translateY(-2px);
}

/* Style the links within each list item */
#results-list li a {
    color: #b00404;
    font-size: 20px;
    text-decoration: none;
    font-weight: 2em;
    display: block;
    transition: color 0.3s ease;
}

#results-list li a:hover {
    color: #e82727;
}

/* Optional: Add additional styling for descriptions under each result */
#results-list li p {
    font-size: 15px;
    margin-top: 2px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .search-container {
        left: 50%; /* Adjust for smaller screen sizes */
        transform: translateX(-50%);
    }

    .search-input {
        width: 200px;
    }

    .search-button {
        width: 30px;
        height: 30px;
    }
}

.containers {
	display: block;
}

.header {
	margin-top: 2%;
	display: flex; 
	justify-content: center;
}

.containers .header img {
    width: 30%;
    height: 30%;
	margin: auto;
}

main {
    padding: 20px;
}

.content {
    margin-bottom: 20px;
	margin-top: 0px;
	margin-left: 10px;
	margin-right: 10px;
}

.content h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 35px;
    color: #b00404;
    font-weight: 800 !important; 	
	
}

.content h2 {
	font-size: 1.4em;
	font-weight: 20px;
	font-weight: 600;
	color: #b00404;	
}

.content h3 {
	font-size: 1.2em;
	font-style: italic;
	font-weight: 600;
	color: #b00404;			
}

.content h4 {
	font-size: 1em;
	font-style: italic;
	font-weight: 600;
}

.content p {
    margin-bottom: 15px;
}

.gallery {
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap onto new lines */
    justify-content: center;
    gap: 10px;
    padding: 20px;
}

.gallery-item {
	max-height: 220px;
    max-width: 400px;
    cursor: pointer;
    transition: transform 0.2s;
}

.gallery-item:hover {
    transform: scale(1.05);
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
}

.modal-content {
    max-width: 80vh;
    max-height: 99vh;
    margin: auto;
    display: block;
	background-color: rgba(0,0,0,0) !important;		
}

.close {
    position: absolute;
    top: 10px;
    right: 25px;
    color: #b00404 !important;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

.prev, .next {
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: #b00404;
    font-weight: bold;
    font-size: 24px;
    cursor: pointer;
	decoration: none;
    user-select: none;

}

.prev {
    left: 0;
    border-radius: 3px 0 0 3px;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* Media Queries for Responsive Design */
@media (max-width: 600px) {
    .gallery {
        flex-direction: column; /* Stack items vertically */
        align-items: center;
    }

    .gallery-item {
        max-width: 90%; /* Adjust max-width for smaller screens */
    }
}

.footer-59391 {
  border-top: 1px solid #efefef;
  background-color: #f0e7e1;
  font-family: "Poppins", sans-serif;
  padding: 2.5rem 0; 
  }
  .footer-59391 .site-logo a {
    font-size: 30px;
	text-decoration: none;
    color: #b00404;
    font-weight: 900; }
	.footer-59391 .site-logo img {
		height:10%;
		Width:10%;
	}
  .footer-59391 .nav-links li {
    display: inline-block; }
    .footer-59391 .nav-links li a {
      color: #777;
      padding: 10px; }
      .footer-59391 .nav-links li a:hover {
        color: #3e64ff; }
  .footer-59391 .nav-links.nav-left li:first-child {
    padding-left: 0; }
  .footer-59391 .nav-links.nav-right li:last-child {
    padding-right: 0; }
  .footer-59391 .copyright {
    border-top: 1px solid #efefef;
    padding-top: 50px;
    text-align: center;
    color: #777; }

		
/*-----start-responsive-design------*/
@media only screen and (max-width: 1366px) and (min-width: 1280px){
	.wrap{
		width:100%;
	}
	.grid p {
		margin: auto;
		font-size: 7em;
	}
.header {
	margin-top: 2%;
	display: flex; 
	justify-content: center;
}

.containers .header img {
    width: 30%;
    height: 30%;
	margin: auto;
}
}
@media only screen and (max-width: 1280px) and (min-width: 1024px) {
	.wrap{
		width:100%;
	}
	.grid p {
		margin: auto;
		font-size: 5em;
	}
.header {
	margin-top: 2%;
	display: flex; 
	justify-content: center;
}

.containers .header img {
    width: 32%;
    height: 32%;
	margin: auto;
}
}
@media only screen and (max-width: 1024px) and (min-width: 768px) {
	.wrap{
		width:100%;
	}
	.grid p {
		margin: auto;
		font-size: 4em;
	}	
.header {
	margin-top: 2%;
	display: flex; 
	justify-content: center;
}

.containers .header img {
    width: 40%;
    height: 40%;
	margin: auto;
}
}
@media only screen and (max-width: 768px) and (min-width: 480px) {
	.search-button {
		margin-top: 1px !important;
		background-color: #b00404;
		color: white;
		padding: 8px;
		border: none;
		border-radius: 5px;
		cursor: pointer;
		margin-left: 10px;
		font-size: 16px;
		width: 37px; 
		height: 37px;
	}	
	
	.navbar .logo a {
	display: none;
	}	
	
	.wrap{
		width:100%;
	}

	.grid p {
		width: 100%;
		margin: auto;
		font-size: 4em;
	}
.header {
	margin-top: 2%;
	display: flex; 
	justify-content: center;
}

.containers .header img {
    width: 50%;
    height: 50%;
	margin: auto;
}
}
@media only screen and (max-width: 480px) and (min-width: 320px) {
	.search-button {
		margin-top: 1px !important;
		background-color: #b00404;
		color: white;
		padding: 8px;
		border: none;
		border-radius: 5px;
		cursor: pointer;
		margin-left: 10px;
		font-size: 16px;
		width: 37px; 
		height: 37px;
	}	
	
	.navbar .logo a {
	display: none;
	}	
	
	.wrap{
		width:100%;
	}

	.grid {
		margin: auto;
	}

	.grid p {
		width: 100%;
		margin: auto;
		font-size: 4em;		
	}
.header {
	margin-top: 2%;
	display: flex; 
	justify-content: center;
}

.containers .header img {
    width: 80%;
    height: 80%;
	margin: auto;
}
}
@media only screen and (max-width: 320px) and (min-width: 240px) {
	.search-button {
		margin-top: 1px !important;
		background-color: #b00404;
		color: white;
		padding: 8px;
		border: none;
		border-radius: 5px;
		cursor: pointer;
		margin-left: 10px;
		font-size: 16px;
		width: 37px; 
		height: 37px;
	}	
	
	.navbar .logo a {
	display: none;
	}	
	
	.grid p {
		width: 100%;
		margin: auto;
		font-size: 3em;		
	}
	
	.wrap{
		width:100%;
	}
.header {
	margin-top: 2%;
	display: flex; 
	justify-content: center;
}

.containers .header img {
    width: 85%;
    height: 85%;
	margin: auto;
}	
}