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

body, html {
    height: 100%;
    width: 100%;
    overflow: hidden;
    font-family: Arial, sans-serif;
    background-color:#fff;
}

/* Main content with background image */
.main-content {
    height: 100vh;
    width: 100vw;
    background-image: url('bg_image.jpg'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    isolation: isolate; /* Added for cut-out effect */
}

/* Menu button */
.menu-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.menu-btn:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

/* Sidebar */
.sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(17, 17, 17, 0.95);
    overflow-x: hidden;
    transition: 0.3s;
    padding-top: 60px;
    z-index: 1000;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5);
}

.sidebar.open {
    width: 280px;
}

/* Close button */
.close-btn {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 36px;
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.close-btn:hover {
    color: #f1f1f1;
}

/* Sidebar navigation */
.sidebar-nav {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
}

.sidebar-nav a {
    padding: 15px 20px;
    text-decoration: none;
    font-size: 20px;
    color: #f1f1f1;
    display: block;
    transition: all 0.3s;
    border-radius: 5px;
    margin-bottom: 10px;
}

.sidebar-nav a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    padding-left: 30px;
}

/* Content area */
.content {
    padding: 100px 50px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

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

.content p {
    font-size: 24px;
}

/* Responsive design */
@media screen and (max-width: 768px) {
    .sidebar.open {
        width: 100%;
    }
    
    .content {
        padding: 80px 30px;
    }
    
    .content h1 {
        font-size: 36px;
    }
    
    .content p {
        font-size: 18px;
    }
}

/* JW Text styles */
.jw-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    pointer-events: none;

}

.jw-text {
    position: absolute;
    border-radius: 15px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    pointer-events: none;
    font-size: 30vh; /* Takes up 30% of the page height */
    font-weight: bold;
    color: black;
    display: inline-block;
    line-height: 1;
    padding: 20px;
    background-color: white;
    mix-blend-mode: screen; /* Makes black text transparent relative to the background behind .jw-container */
}

