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

.background {
  position: fixed;
  width: 100%;
  height: 100%;
  background-image: url("DSC_0370.JPG");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero {
  height: 100vh;
  background-image: url("DSC_0370.JPG");
  background-size: cover;
  background-position: center;

  position: relative;
}



body {

  margin: 0;

  background: url("DSC_0370.JPG") center/cover no-repeat;

}

html, body {
    height: 100%;
    font-family: Arial, sans-serif;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    position: relative;
}

.title-section {
    position: absolute;
    top: 10%;
    text-align: center;
}

.white-text {
    color: white;
}
.title-section h1 {
    font-size: 4rem;
    font-weight: bold;
    color: #007bff; /* Blue color similar to the text color in the reference */
    margin-bottom: 20px;
}

.video-section {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: -1;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .title-section h1 {
        font-size: 2.5rem;
    }
}


/* 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{
    background-color: rgba(255, 255, 255, 0.447);
    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: 50px;
}
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;
    background-color: white;
    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){
    
}