/* ----------------- GENERAL --------------------- */
.navbar, body, .navigation a, .content p, .btn {
    font-family: 'Netflix Sans', 'Helvetica Neue', 'Segoe UI', 'Roboto', 'Ubuntu', sans-serif; /* This sets Helvetica Neue as the primary font with fallbacks */
}

/* ----------------- NAV BAR --------------------- */

.navbar {
    display: flex;
    align-items: center; /* Centers the items vertically within the navbar */
    justify-content: space-between; /* Aligns the logo to the left */
    background-color: transparent; /* Typical Netflix background color */
    padding: 0 20px; /* Padding on the left and right for some spacing */
    height: 68px; /* Adjust the height as needed */
}

/* ----------------- NAV LOGO --------------------- */
.logo img {
    height: 40px; /* Adjust based on your specific logo size */
}


/* ----------------- NAV MENU --------------------- */
.navigation {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0 40px ;
}

.navigation li {
    padding: 0 15px; /* Space between menu items */
}

.navigation a {
    color: white;
    text-decoration: none;
    font-size: 16px; /* Adjust the font size as needed */
    line-height: 68px;
    width:fit-content; /* Aligns text vertically in the navbar */
}

.navigation a:hover {
    color: #e5e5e5; /* Netflix red on hover for a visual effect */
}

/* ----------------- LEFT NAV LEFT GROUP--------------------- */
.left-nav {
    display: flex;
    align-items: center; /* Aligns items vertically within the left-nav container */
}



/* ----------------- NAV MENU RIGHT GROUP- SECONDARY MENUS/OPTIONS --------------------- */
.right-nav {
    display: flex;
    align-items: center; /* Ensures alignment with other navbar items */
    gap: 20px;
    position: relative; /* Positioning context for notification count */
}

.right-nav a{
    color: white;
    text-decoration: none;
}

.notification-count {
    background-color: red;
    color: white;
    padding: 2px 6px;
    border-radius: 50%;
    position: absolute; /* Adjust position to be absolutely relative to icon-bell */
    top: -10px; /* Adjust top position to lift it above the nav bar */
    right: -10px; /* Adjust right position to align correctly */
    font-size: 12px;
    z-index: 3;
}

.profile-pic {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.icon-search, .icon-bell {
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.icon-bell {
    position: relative;
}

 .icon-search svg, .icon-bell svg {
    fill: white;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 10PX;
    width:100px;
    background-color: #141414; /* Background color for dropdown menu */
    list-style: none;
    padding: 10px;
    margin: 0;
    border-radius: 5px;
    z-index: 1;
}

.dropdown-menu li {
    padding: 5px 0;
}

.dropdown-menu li a {
    color: white;
    text-decoration: none;
}

.separator {
    border-top: 1px solid white;
}

/* Show dropdown menu on hover */
.profile:hover .dropdown-menu {
    display: block;
}


/* ----------------- VIDEO BACKGROUND --------------------- */
.video-background {
    position: fixed; /* or 'absolute' */
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* Or the height you desire */
    overflow: hidden;
    z-index: -1; /* Stays behind all content */
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
}

.content {
    position: absolute;
    top: 50%; /* Centers vertically */
    left: 50%; /* Centers horizontally */
    transform: translate(-50%, -50%);
    z-index: 1; /* Ensures content is visible above the video */
    color: white; /* Ensures text is visible on typical dark video backgrounds */
    text-align: left;
    width: 100%; /* Ensures full width within the video background */
    padding-left: 150px;
}


/* ----------------- BUTTON IN HERO --------------------- */
.buttons {
    display: flex;
    justify-content: left;
    gap: 20px;
    margin-top: 20px; /* Spacing above the button row */
}

.btn {
    padding: 10px 40px;
    border: none;
    font-size: 20px;
    cursor: pointer;
    border-radius: 10px; /* Rounded corners */
    display: flex;
    align-items: center;
    gap: 10px; /* Space between icon and text */
}

.play {
    background-color: rgb(255, 255, 255);
    color: black;
}

.more-info {
    background-color: grey;
    color: white;
}

.btn svg {
    fill: currentColor; /* Icons take the color of the text */
}


/* ----------------- Title Image size --------------------- */
.title-img {
    width: 300px; /* Adjust the width as needed */
    height: auto; /* Keeps the aspect ratio of the image */
}

.content p {
    width: 30%; /* Adjust the width as needed */
    text-align: left;
}
