/* styles.css */
/* Reset some default styles */
body, ul, li {
    margin: 0;
    padding: 0;
}

/* Global Styles */
body {
    font-family: Arial, sans-serif;
	font-weight:530;
}

/* Hamburger Icon Styles */
.hamburger {
    display: none;
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 2;
    cursor: pointer;
	line-height:10px;
}

.hamburger-label {
    display: block;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #333;
    margin: 4px 0;
    transition: background-color 0.3s ease-in-out;
}

/* Sidebar Navigation Styles */
.sidebar {
    width: 200px;
    height: calc(100% - 20px);
    background-color: #111;
    position: fixed;    
    left: 0;
    transition: left 0.3s ease-in-out;
	overflow-y: auto;
	
}

.sidebar ul {
    list-style: none;
    padding: 20px;
}

.sidebar li {
    padding: 10px 0;
}

.sidebar a {
    text-decoration: none;
    color: #fff;
}

/* Top Navigation Bar Styles */
.top-nav {
    background-color: #333;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.logo {
    font-size: 24px;
}

.menu {
    list-style: none;
    /*display: flex;*/
	display:none;
}

.menu li {
    margin-right: 20px;
}

.menu a {
    text-decoration: none;
    color: #fff;
}


/* Main Content Styles */
main {
    margin-left: 210px; /* Adjust for sidebar width */
	
    padding: 20px;
	text-align:justify;
	max-height: calc(100vh - 100px); /* Adjust the 50px as needed */
    overflow-y: auto; /* Enable vertical scrolling if content overflows */
}

main ul{
	margin-left: 80px;
}

.video-container {
	/*margin:20px 250px;*/
	margin:20px 15vw;
	width:60%;
	height:300px;
	max-width: 95%; /* Ensure the video container doesn't exceed the screen width */
}

.video-container iframe {
    position: relative;
    top: 0;
    left: 3vw;
    width: 90%;
    height: 100%;
}

.page-navigation {
    text-align: center;
    /*margin-top: 10px;*/
}

.previous-page,
.next-page {
    display: inline-block;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    /*margin: 0 10px;*/
}

.previous-page {
    float: left; /* Move "Previous" link to the left */
}

.next-page {
    float: right; /* Move "Next" link to the right */
}

.previous-page:hover,
.next-page:hover {
    background-color: #555;
}

/* Media Queries for Responsive Design */
@media screen and (max-width: 600px) {
    .hamburger {
        display: block;
    }
	#menu-toggle {
        display: none;
    }
	.sidebar{
		left:-100%;
	}
    .sidebar.active {
        left: 0;
		z-index:1;
    }

    .line {
        background-color: #fff;
    }
	
	main {
        margin-left: 0;
        padding: 20px;
    }
	.logo {
    font-size: 4vw;
	margin-left:15vw;
	}
	.video-container{
		height:40vh;
		max-width:99%;
		z-index:-1;
		
	}
	.video-container iframe {
    position: relative;
    top: 1px;
    left: 1px;
    width: 95%;
    height: 70%;
}
	.video-container.active {
        display: none;
    }
	
}
