/* Main Styles */
body, h1, h2, h3, h4, h5, h6, p, span, ul, li {
	margin: 0;
}

h1 {
    font-size: 3.5rem; /* 56px */
}	
h2 {
	font-size: 2.5rem; /* 40px */
}
h3 {
	font-size: 2rem; /* 32px */
}
h4 {
	font-size: 1.5rem; /* 24px */
}
h5 {
	font-size: 1.25rem; /* 20px */
}
h6 {
	font-size: 1rem; /* 16px */
}

/* Basic Header Layout */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* Ensures the header stays on top of other content */
}

.site-logo, .language-switcher {
    display: flex;
    align-items: center;
	padding: 15px 30px;
}

.site-logo img {
    max-width: 100%;
    height: auto;
    display: block;
    height: 50px; /* Default width for desktop */
}

.language-switcher {
    position: relative;
    width: auto; /* Adjust the width of the dropdown */
}

.language-switcher:hover .dropdown-options {
    display: block;
}

.dropdown-btn {
    background-color: transparent;
	color: #000000;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dropdown-options {
    display: none;
    position: absolute;
    top: 40px;
    left: 20px;
    right: 0;
    background-color: #f2f3f4;
	color: #2b2b2b;
    border: none;
	border-radius: 5px;
    z-index: 10;
	padding: 10px;
	width: 20px;
}

.dropdown-option {
    cursor: pointer;
    text-align: center;
	border-bottom: none;
}

.dropdown-option:hover {
    background-color: transparent;
}

.custom-dropdown.active .dropdown-options {
    display: block;
}

/* Body */


/* Footer */
footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent; /* Optional: add a background color */
	position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* Ensures the header stays on top of other content */
}

.footer-text, .footer-navigation {
    display: flex;
    align-items: center;
	padding: 15px 30px;
}

.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
}

.footer-menu ul {
	list-style-type: none; /* Removes the bullet points */
    padding-left: 0; /* Removes the indentation */

}

.menu-items {
    display: flex;
}

.menu-items a {
	color: #000000;
	text-decoration: none;
}

.menu-items a:hover {
	color: #9c9c9c;
    text-decoration: none;
}

/* Floating Advertisement Slider */
.floating-advertise-slider {
    position: fixed;
    bottom: 80px;   /* Ensure it is 20px from the bottom of the viewport */
    right: 30px;    /* Ensure it is 20px from the right side of the viewport */
    z-index: 9999;  /* Ensure the advertisement is on top of other elements */
    width: 300px;   /* Set a fixed width for the slider */
    height: 300px;  /* Set a fixed height for the slider */
    background-color: rgba(0, 0, 0, 0.7);  /* Optional: semi-transparent background */
    border-radius: 10px;  /* Optional: rounded corners */
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);  /* Optional: shadow for better visibility */
    overflow: hidden;  /* Hide content that overflows */
}

.floating-advertise-slider .advertise-slide {
    position: absolute;  /* Position slides absolutely within the container */
    top: 0;
    left: 100%;   /* Initially place slides off-screen to the right */
    width: 100%;
    opacity: 0;  /* Initially set the opacity to 0 (invisible) */
    visibility: hidden;  /* Hide the slide */
    transition: opacity 1s ease-in-out, left 1s ease-in-out;  /* Smooth fade-in/fade-out and move effect */
}

.floating-advertise-slider .advertise-slide.active {
    opacity: 1;  /* Make the slide fully visible */
    visibility: visible;  /* Make the slide visible */
    left: 0;  /* Bring the active slide into view from the right */
}

.floating-advertise-slider .advertise-slide.prev {
    opacity: 0;  /* Fade out the previous slide */
    visibility: hidden;  /* Hide the previous slide */
    left: -100%;  /* Move the previous slide out to the left */
}

.floating-advertise-slider .advertise-logo {
    max-width: 100%;
    height: 200px;
    display: block;
    margin-bottom: 10px;  /* Space between logo and heading */
}

.floating-advertise-slider .advertise-heading {
    font-size: 16px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 8px;
}

.floating-advertise-slider .advertise-description {
    font-size: 14px;
    color: #fff;
    line-height: 1.4;
}

/* Tablet (portrait and landscape) */
@media only screen and (max-width: 768px) {
  	section {
        padding: 15px; /* Adjust padding for tablet */
    }
	
	h1 {
        font-size: 2.5rem; /* 40px */
    }
    h2 {
        font-size: 2rem; /* 32px */
    }
    h3 {
        font-size: 1.75rem; /* 28px */
    }
    h4 {
        font-size: 1.25rem; /* 20px */
    }
    h5 {
        font-size: 1.125rem; /* 18px */
    }
    h6 {
        font-size: 1rem; /* 16px */
    }
	
	header {
        padding: 10px;
    }

    .site-logo img {
        width: 50px; /* Smaller logo for mobile */
    }

    .language-switcher select {
        font-size: 0.8rem; /* Smaller font for language switcher on mobile */
        padding: 3px;
    }
	
	footer {
        flex-direction: column; /* Stack the footer elements */
    }

    .footer-text, .footer-navigation {
        flex: none;
		text-align: center; /* Center the content */
        width: 100%; /* Make them full width on tablet */
        margin-bottom: 10px; /* Add margin for spacing */
    }

    .footer-menu {
        justify-content: center; /* Center the menu items on tablet */
    }

    .menu-items {
        justify-content: center; /* Center the menu items */
    }

    .menu-items li {
        margin-left: 15px; /* Adjust spacing between items */
        margin-right: 15px; /* Adjust spacing between items */
    }
}

/* Mobile (portrait) */
@media only screen and (max-width: 480px) {
	section {
        padding: 10px; /* Adjust padding for mobile */
    }
	
    h1 {
        font-size: 2rem; /* 32px */
    }
    h2 {
        font-size: 1.75rem; /* 28px */
    }
    h3 {
        font-size: 1.5rem; /* 24px */
    }
    h4 {
        font-size: 1.125rem; /* 18px */
    }
    h5 {
        font-size: 1rem; /* 16px */
    }
    h6 {
        font-size: 0.875rem; /* 14px */
    }
	
	header {
        padding: 10px 15px;
    }

    .site-logo img {
        width: 75px; /* Logo width for tablet */
    }

    .language-switcher select {
        font-size: 0.9rem; /* Adjust font size for tablet */
        padding: 4px;
    }
	
	footer {
        flex-direction: column; /* Stack the footer elements */
    }

    .footer-text, .footer-navigation {
        flex: none;
		text-align: center; /* Center the content */
        width: 100%; /* Make them full width on mobile */
        margin-bottom: 15px; /* Add more spacing between items */
    }

    .footer-menu {
        justify-content: center; /* Center the menu items on mobile */
    }

    .menu-items {
        justify-content: center; /* Center the menu items */
    }

    .menu-items li {
        margin-left: 10px; /* Reduce spacing between items */
        margin-right: 10px; /* Reduce spacing between items */
    }
}