@charset "UTF-8";
/* CSS Document */

      /* Base reset and styling */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Lora', Tahoma, Geneva, Verdana, sans-serif;
        }


		.lora-<uniquifier> {
  			font-family: "Lora", serif;
 			font-optical-sizing: auto;
 			font-weight: <weight>;
 			font-style: normal;
		}

        body {
            background-color: #555555 ;
            color: #333;
            line-height: 1.6;
        }

        /* 1. Core Sticky Header Layout */
        .header {
            position: -webkit-sticky; /* Safari support */
            position: sticky;
            top: 0;
            z-index: 1000;
            background: transparent;
            box-shadow: 0;
            transition: all 0.3s ease;
        }

        /* 2. Navigation Container */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 15px 20px;
        }

        .logo a {
            font-size: 24px;
            font-weight: 700;
            color: whitesmoke;
            text-decoration: none;
        }

        /* 3. Menu Items styling */
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 25px;
        }

        .nav-item a {
            text-decoration: none;
            color:#F4F4F4;
            font-weight: 500;
            font-size: 16px;
            transition: color 0.2s ease;
        }

        .nav-item a:hover {
            color: grey;}

        /* 4. Hamburger Mobile Icon */
        .hamburger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
        }

        .bar {
            width: 25px;
            height: 3px;
            background-color: #333;
            transition: 0.3s;
        }

        /* Placeholder layout content to enable scrolling */
        .hero {
            height: 60vh;
            background: none;
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .main-content {
            max-width: 100%;
            margin: 40px auto 0 auto;
            padding: 0 20px;
			background: #E6E3E3;}

        .main-content p {
            margin-bottom: 20px;
			padding: 0;
        }

		.main-content-div {
		padding: 10px 100px;
			margin: 20px;
		}

        /* 5. Mobile Responsive Configuration */
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .nav-menu {
                position: absolute;
                top: 100%;
                left: -100%;
                flex-direction: column;
                background-color: #fff;
                width: 100%;
                text-align: center;
                box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
                transition: 0.4s ease;
                padding: 20px 0;
                gap: 20px;
            }

            .nav-menu.active {
                left: 0;
            }
        }

/* Container to constrain the video to the viewport */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1; /* Pushes the video behind the text */
}

/* Force video to fill screen without losing aspect ratio */
.video-background video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Semi-transparent dark overlay to make text easier to read */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Adjust opacity here */
}

/* Foreground content layout */
.content {
    position: relative;
    z-index: 1;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}