/* Add this to your existing CSS or in the relevant file */
.title-section {
    position: absolute;
    top: 10%;
    text-align: center;
}

h1 {
  color: rgb(251, 254, 251);
  text-align: center;
}

.title-section h1 {
    font-size: 4rem;
    font-weight: bold;
    color: #007bff; /* Blue color similar to the text color in the reference */
    margin-bottom: 20px;
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #00040bab;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Add this below the existing CSS or adjust existing rules */
nav {
    position: absolute;
    top: 5%;
    right: 5%;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px; /* Space between menu items */
}

nav ul li {
    font-size: 1.2rem; /* Adjust size relative to the title */
    font-weight: bold;
}

nav ul li a {
    text-decoration: none;
    color: #007bff; /* Blue color matching the title */
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #0056b3; /* Darker blue for hover effect */
}

/* For mobile responsiveness */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    nav ul li {
        font-size: 1rem; /* Slightly smaller font for smaller screens */
    }
}


*{
 margin: 0;
 padding: 0;   
}
body{
   min-height: 100vh;
  /* background-image: url(Mari.jpeg)
  background-size: cover
  background-repeat: no-repeat
  background-position: center*/
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
nav{
    box-shadow: 3px 3px 5px rgba;(0, 0, 0, 0,1);  
}
nav ul{
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
nav li{
    height: 50;
}
nav a{
    height: 100%;
    padding: 0 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: black;
}
nav a:hover{
    background-color: #f0f0f0;
}
nav li:first-child{
    margin-right: auto;
}
.sidebar{
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 999;
    backdrop-filter: blur(10px);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start; 
}
.sidebar li{
    width: 100%;
}
.sidebar a{
    width: 100%;
}
@media(max-width: 800px){
    
}

/*nav ul {
    display: flex;
    justify-content: flex-end;
    list-style-type: none;
    padding: 10px;
    margin: 0;
}

nav ul li {
    margin-left: 90px;
}

nav ul li a {
    text-decoration: none;
    color: #f5f6f8;
    font-weight: bold;
    font-size: 1.1rem;
}*/


.video-item {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    background: #05010d68;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.video-item h3 {
    margin-top: 10px;
    font-size: 1.2rem;
    color: #bab7b7;
}

video {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .video-item {
        margin-bottom: 20px;
    }
}



.media-item video,
.media-item img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  background-size: contain;
  display: block;
  margin-bottom: 10px;
}

